no longer push statues through halfvines

This commit is contained in:
Zeno Rogue 2021-05-22 01:58:03 +02:00
parent 698104b29c
commit 7cc075d96f
1 changed files with 1 additions and 0 deletions

View File

@ -408,6 +408,7 @@ bool sharkpassable(cell *w, cell *c) {
EX bool canPushStatueOn(cell *c, flagtype flags) {
return passable(c, NULL, P_MONSTER | flags) && !snakelevel(c) &&
!isWorm(c->monst) && !isReptile(c->wall) && !peace::on &&
!cellHalfvine(c) &&
!among(c->wall, waBoat, waFireTrap, waArrowTrap);
}