1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-23 01:47:39 +00:00
This commit is contained in:
Zeno Rogue
2018-06-12 22:40:06 +02:00
parent 520e5e5dbb
commit 50eaba3efd
4 changed files with 10 additions and 13 deletions

View File

@@ -1422,12 +1422,14 @@ bool monstersnear(cell *c, cell *nocount, eMonster who, cell *pushto, cell *come
comefrom->wall = w;
c->wall = waBigStatue;
}
if(who == moPlayer && c->wall == waThumperOn) {
else if(who == moPlayer && c->wall == waThumperOn) {
c->wall = waNone;
b = monstersnear2();
c->wall = waThumperOn;
}
b = monstersnear2();
else {
b = monstersnear2();
}
stalemate::moves.pop_back();
return b;
}