OSDN Git Service

ミミックnestの許可シンボルに'&', '(', '/', '[', '\'を追加. '`'は以前
authornothere <nothere@0568b783-4c39-0410-ac80-bf13821ea2a2>
Sun, 23 Nov 2003 18:54:35 +0000 (18:54 +0000)
committernothere <nothere@0568b783-4c39-0410-ac80-bf13821ea2a2>
Sun, 23 Nov 2003 18:54:35 +0000 (18:54 +0000)
に消されているので追加しない. 問題がある場合は調整を要する.

src/rooms.c

index b2c27bf..8188c82 100644 (file)
@@ -1473,9 +1473,9 @@ static bool vault_aux_mimic(int r_idx)
 
        /* Validate the monster */
        if (!vault_monster_okay(r_idx)) return (FALSE);
-  
+
        /* Require mimic */
-       if (!my_strchr("!|$?=", r_ptr->d_char)) return (FALSE);
+       if (!my_strchr("!$&(/=?[\\|", r_ptr->d_char)) return (FALSE);
 
        /* Okay */
        return (TRUE);