1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-01-26 12:43:33 +00:00

Fix getting rid of Great Walls by killing Ghosts with OotStone

This commit is contained in:
Joseph C. Sible
2025-10-01 02:06:06 -04:00
parent 8b7e82b460
commit 924cdc12c6
2 changed files with 5 additions and 5 deletions

View File

@@ -189,13 +189,13 @@ EX bool petrify(cell *c, eWall walltype, eMonster m) {
if(c->land == laWestWall) return false;
if(do_not_touch_this_wall(c)) return false;
if(isWateryOrBoat(c) && c->land == laWhirlpool) {
c->wall = waSea;
return false;
}
if(c->wall == waRoundTable) return false;
if(walltype == waGargoyle && cellUnstableOrChasm(c))
walltype = waGargoyleFloor;
else if(walltype == waGargoyle && isWatery(c))