1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-05-11 01:22:07 +00:00

Ivy can now grow through single-tile wide chasms

This commit is contained in:
Zeno Rogue
2026-04-17 20:10:55 +02:00
parent 394534f250
commit ce39b2e96d
5 changed files with 16 additions and 6 deletions
+1 -1
View File
@@ -214,7 +214,7 @@ EX bool isFlying(eMonster m) {
}
EX bool survivesChasm(eMonster m) {
return isFlying(m);
return isFlying(m) || isAnyIvy(m);
}
EX bool ignoresPlates(eMonster m) {