diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java index b6b6f23a1..021f3f811 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java @@ -302,13 +302,16 @@ public abstract class RegularLevel extends Level { case 4: type = Heap.Type.CHEST; break; - case 5: default: + case 5: if (Dungeon.depth > 1 && findMob(cell) == null){ mobs.add(Mimic.spawnAt(cell, toDrop)); continue; } type = Heap.Type.CHEST; break; + default: + type = Heap.Type.HEAP; + break; } if ((toDrop instanceof Artifact && Random.Int(2) == 0) ||