diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java index 0763bcb1c..5b26131e8 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java @@ -710,8 +710,8 @@ public abstract class Level implements Bundlable { map[pos] == Terrain.EMPTY || map[pos] == Terrain.EMBERS || map[pos] == Terrain.EMPTY_DECO) { - map[pos] = Terrain.GRASS; - flamable[pos] = true; + set(pos, Terrain.GRASS, this); + GameScene.updateMap(pos); } plant = seed.couch( pos, this );