diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/LloydsBeacon.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/LloydsBeacon.java index 6ff5f668e..de810e7ab 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/LloydsBeacon.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/LloydsBeacon.java @@ -134,7 +134,6 @@ public class LloydsBeacon extends Item { } else if (action == AC_RETURN) { if (returnDepth == Dungeon.depth) { - reset(); WandOfBlink.appear( hero, returnPos ); Dungeon.level.press( returnPos, hero ); Dungeon.observe(); @@ -149,7 +148,6 @@ public class LloydsBeacon extends Item { InterlevelScene.mode = InterlevelScene.Mode.RETURN; InterlevelScene.returnDepth = returnDepth; InterlevelScene.returnPos = returnPos; - reset(); Game.switchScene( InterlevelScene.class ); }