From f9222a1c048751a0de749beefaadff1106aad882 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 12 Apr 2018 21:28:29 +0200 Subject: [PATCH] fire no longer permanent in Land of Power in smallbounded --- flags.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flags.cpp b/flags.cpp index 1a247534..bbf89e98 100644 --- a/flags.cpp +++ b/flags.cpp @@ -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; }