1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-23 21:07:17 +00:00

no more petrification on Round Table

This commit is contained in:
Zeno Rogue 2018-07-30 09:34:48 +02:00
parent f635c27e07
commit 39e131d985

View File

@ -1451,6 +1451,8 @@ bool petrify(cell *c, eWall walltype, eMonster m) {
return false;
}
if(c->wall == waRoundTable) return false;
if(walltype == waGargoyle && cellUnstableOrChasm(c))
walltype = waGargoyleFloor;
else if(walltype == waGargoyle && isWatery(c))