From b16944173535fb0ae813904fb06b118a24716e7c Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 13 Feb 2018 20:22:16 +0100 Subject: [PATCH] rock snakes cover items --- game.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/game.cpp b/game.cpp index 10cc6968..64dae792 100644 --- a/game.cpp +++ b/game.cpp @@ -1674,6 +1674,7 @@ bool earthWall(cell *c) { } bool snakepile(cell *c, eMonster m) { + if(c->item && c->wall != waRed3) c->item = itNone; if(c->wall == waRed1 || c->wall == waOpenGate) c->wall = waRed2; else if(c->wall == waRed2) c->wall = waRed3; else if(doesFall(c)) return false;