diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/features/Sign.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/features/Sign.java index 82c9eb6d7..8caf59525 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/features/Sign.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/features/Sign.java @@ -103,17 +103,18 @@ public class Sign { if (index < TIPS.length) { GameScene.show( new WndMessage( TIPS[index] ) ); - if (index >= 21) - - Level.set( pos, Terrain.EMBERS ); - GameScene.updateMap( pos ); - GameScene.discoverTile( pos, Terrain.SIGN ); + if (index >= 21) { + + Level.set( pos, Terrain.EMBERS ); + GameScene.updateMap( pos ); + GameScene.discoverTile( pos, Terrain.SIGN ); + + GLog.w( TXT_BURN ); + + CellEmitter.get( pos ).burst( ElmoParticle.FACTORY, 6 ); + Sample.INSTANCE.play( Assets.SND_BURNING ); + } - GLog.w( TXT_BURN ); - - CellEmitter.get( pos ).burst( ElmoParticle.FACTORY, 6 ); - Sample.INSTANCE.play( Assets.SND_BURNING ); - } } }