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
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}