mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-10-22 01:17:39 +00:00
fire no longer permanent in Land of Power in smallbounded
This commit is contained in:
@@ -539,7 +539,7 @@ bool isIcyWall(cell *c) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool eternalFire(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;
|
c->land == laEFire || c->land == laElementalWall;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user