diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/Trap.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/Trap.java index 59ebf6f8b..ef79202e3 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/Trap.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/Trap.java @@ -81,7 +81,10 @@ public abstract class Trap implements Bundlable { protected void disarm(){ Dungeon.level.disarmTrap(pos); active = false; - if (sprite != null) sprite.reset( this ); + if (sprite != null) { + sprite.visible = true; + sprite.reset( this ); + } } private static final String POS = "pos";