diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/LloydsBeacon.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/LloydsBeacon.java index 8fead314e..477a37788 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/LloydsBeacon.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/LloydsBeacon.java @@ -204,6 +204,7 @@ public class LloydsBeacon extends Artifact { if (Actor.findChar(target) == curUser){ ScrollOfTeleportation.teleportHero(curUser); + Sample.INSTANCE.play(Assets.SND_TELEPORT); curUser.spendAndNext(1f); } else { final Ballistica bolt = new Ballistica( curUser.pos, target, Ballistica.MAGIC_BOLT ); @@ -211,8 +212,10 @@ public class LloydsBeacon extends Artifact { if (ch == curUser){ ScrollOfTeleportation.teleportHero(curUser); + Sample.INSTANCE.play(Assets.SND_TELEPORT); curUser.spendAndNext( 1f ); } else { + Sample.INSTANCE.play( Assets.SND_ZAP ); curUser.sprite.zap(bolt.collisionPos); curUser.busy();