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 e76156caf..32a69443f 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java @@ -364,7 +364,7 @@ public abstract class RegularLevel extends Level { protected int randomDropCell() { while (true) { Room room = randomRoom( StandardRoom.class ); - if (room != null) { + if (room != null && room != roomEntrance) { int pos = pointToCell(room.random()); if (passable[pos]) { return pos;