1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-27 06:27:17 +00:00

Warp Gates are now untouchable

This commit is contained in:
Zeno Rogue 2020-03-08 00:01:40 +01:00
parent cef474469a
commit 2dca5c2d43

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) {