diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java index 091f8e313..0ba572cc1 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java @@ -611,6 +611,14 @@ public abstract class Level implements Bundlable { if (plant != null) { plant.wither(); } + + if (map[pos] == Terrain.HIGH_GRASS || + map[pos] == Terrain.EMPTY || + map[pos] == Terrain.EMBERS || + map[pos] == Terrain.EMPTY_DECO) { + set(pos, Terrain.GRASS); + GameScene.updateMap( pos ); + } plant = seed.couch( pos ); plants.put( pos, plant );