Warp Gates are now untouchable

This commit is contained in:
Zeno Rogue 2020-03-08 00:01:40 +01:00
parent cef474469a
commit 2dca5c2d43
1 changed files with 1 additions and 1 deletions

View File

@ -365,7 +365,7 @@ EX bool hornStuns(cell *c) {
/** changing this wall for whatever reason may cause the game to crash */
EX bool do_not_touch_this_wall(cell *c) {
return among(c->wall, waMirrorWall, waBarrier, waRoundTable);
return among(c->wall, waMirrorWall, waBarrier, waRoundTable, waWarpGate);
}
EX bool is_paired(eMonster m) {