diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/rooms/quest/BlacksmithRoom.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/rooms/quest/BlacksmithRoom.java index 5872a65b1..0642be70f 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/rooms/quest/BlacksmithRoom.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/rooms/quest/BlacksmithRoom.java @@ -105,6 +105,15 @@ public class BlacksmithRoom extends StandardRoom { } } + @Override + public boolean canPlaceCharacter(Point p, Level l) { + if (l.map[l.pointToCell(p)] == Terrain.EXIT){ + return false; + } else { + return super.canPlaceCharacter(p, l); + } + } + public static class QuestEntrance extends CustomTilemap { {