OSDN Git Service

プレイヤーのテレポートに受動テレポートモードを与えた. 主に自分の意志
[hengband/hengband.git] / src / wizard2.c
index de0de5e..9392e1d 100644 (file)
@@ -108,7 +108,7 @@ static bool wiz_dimension_door(void)
 
        if (!tgt_pt(&x, &y)) return FALSE;
 
-       teleport_player_to(y, x, FALSE);
+       teleport_player_to(y, x, FALSE, FALSE);
 
        return (TRUE);
 }
@@ -339,7 +339,7 @@ static void do_cmd_wiz_bamf(void)
        if (!target_who) return;
 
        /* Teleport to the target */
-       teleport_player_to(target_row, target_col, FALSE);
+       teleport_player_to(target_row, target_col, FALSE, FALSE);
 }
 
 
@@ -1934,7 +1934,7 @@ void do_cmd_debug(void)
 
        /* Phase Door */
        case 'p':
-               teleport_player(10);
+               teleport_player(10, FALSE);
                break;
 
 #if 0
@@ -1978,7 +1978,7 @@ void do_cmd_debug(void)
 
        /* Teleport */
        case 't':
-               teleport_player(100);
+               teleport_player(100, FALSE);
                break;
 
        /* Very Good Objects */