From 984e273db8f5babe33e68b0a71b670c780f36f9f Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 19 Aug 2021 15:45:06 -0400 Subject: [PATCH] v1.0.1: fixed remote beacon not actually being buffed as intended --- .../actors/hero/abilities/mage/WarpBeacon.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/abilities/mage/WarpBeacon.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/abilities/mage/WarpBeacon.java index bdc051628..730f5b5fd 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/abilities/mage/WarpBeacon.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/abilities/mage/WarpBeacon.java @@ -186,7 +186,7 @@ public class WarpBeacon extends ArmorAbility { return; } - if (Dungeon.level.distance(hero.pos, target) > 3*hero.pointsInTalent(Talent.REMOTE_BEACON)){ + if (Dungeon.level.distance(hero.pos, target) > 4*hero.pointsInTalent(Talent.REMOTE_BEACON)){ GLog.w( Messages.get(WarpBeacon.class, "too_far") ); return; }