From 2dca5c2d4347a6506ab113ff1a848d8f679dcce3 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 8 Mar 2020 00:01:40 +0100 Subject: [PATCH] Warp Gates are now untouchable --- flags.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flags.cpp b/flags.cpp index eb1f6427..7bd00d5d 100644 --- a/flags.cpp +++ b/flags.cpp @@ -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) {