diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java index 6430edf96..7b4226028 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java @@ -172,7 +172,7 @@ public abstract class RegularLevel extends Level { protected void placeSign(){ while (true) { int pos = roomEntrance.random(); - if (pos != entrance || traps.get(pos) == null) { + if (pos != entrance && traps.get(pos) == null) { map[pos] = Terrain.SIGN; break; }