1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-31 05:52:59 +00:00

crossbow:: graves and Round Table are non-blocking, thruVine is blocking

This commit is contained in:
Zeno Rogue
2023-10-28 23:33:38 +02:00
parent b3b1611f33
commit a163c80ba1
5 changed files with 9 additions and 7 deletions

View File

@@ -204,8 +204,7 @@ EX bool passable(cell *w, cell *from, flagtype flags) {
if(F(P_BULLET)) {
if(isFire(w) || w->wall == waBonfireOff || cellHalfvine(w) ||
w->wall == waMagma ||
w->wall == waAncientGrave || w->wall == waFreshGrave || w->wall == waRoundTable)
w->wall == waMagma || isNonblock(w->wall))
return true;
}