From 1ffafccf4289e297cf12cee553504edcab6cac0c Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 26 Nov 2025 10:41:58 -0500 Subject: [PATCH] v3.3.0: fixed returning beacon not working on same floor after changes --- .../shatteredpixeldungeon/items/spells/BeaconOfReturning.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/BeaconOfReturning.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/BeaconOfReturning.java index 761216543..87c6215de 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/BeaconOfReturning.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/BeaconOfReturning.java @@ -184,7 +184,7 @@ public class BeaconOfReturning extends Spell { } } - if (ScrollOfTeleportation.teleportToLocation(hero, returnPos)){ + if (ScrollOfTeleportation.teleportToLocation(hero, tracker.returnPos)){ hero.spendAndNext( 1f ); } else { return;