diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/Trap.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/Trap.java index 5ba9ebe83..394026d0f 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/Trap.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/Trap.java @@ -50,7 +50,7 @@ public abstract class Trap implements Bundlable { public Trap reveal() { visible = true; - if (sprite != null) { + if (sprite != null && sprite.visible == false) { sprite.visible = true; sprite.alpha( 0 ); sprite.parent.add( new AlphaTweener( sprite, 1, 0.6f));