From b7b8c22afa7738528882602d56d301af9197fe38 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 4 Sep 2020 23:33:03 -0400 Subject: [PATCH] v0.9.0: fixed visual errors when regrowth is used in the city boss level --- .../shatteredpixeldungeon/levels/NewCityBossLevel.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/NewCityBossLevel.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/NewCityBossLevel.java index 27841a157..23bc986f5 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/NewCityBossLevel.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/NewCityBossLevel.java @@ -406,7 +406,9 @@ public class NewCityBossLevel extends Level { data[i] = 15*8 + 5; //ground tiles - } else if (map[i] == Terrain.EMPTY || map[i] == Terrain.EMPTY_DECO){ + } else if (map[i] == Terrain.EMPTY || map[i] == Terrain.EMPTY_DECO + || map[i] == Terrain.EMBERS || map[i] == Terrain.GRASS + || map[i] == Terrain.HIGH_GRASS || map[i] == Terrain.FURROWED_GRASS){ //final ground stiching with city tiles if (i/tileW == 21){