1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-04-11 21:33:16 +00:00

fire no longer permanent in Land of Power in smallbounded

This commit is contained in:
Zeno Rogue 2018-04-12 21:28:29 +02:00
parent a5187864e6
commit f9222a1c04

@ -539,7 +539,7 @@ bool isIcyWall(cell *c) {
}
bool eternalFire(cell *c) {
return c->land == laDryForest || c->land == laPower || c->land == laMinefield ||
return c->land == laDryForest || (c->land == laPower && !smallbounded) || c->land == laMinefield ||
c->land == laEFire || c->land == laElementalWall;
}