diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java index 668c09fc1..3a693c427 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java @@ -210,7 +210,7 @@ public abstract class RegularLevel extends Level { r.width() > 3 && r.height() > 3 && Random.Int( specialRooms * specialRooms + 2 ) == 0) { - if (pitRoomNeeded) { + if (pitRoomNeeded && !pitMade) { r.type = Type.PIT; pitMade = true;