v1.0.1: fixed remote beacon not actually being buffed as intended

This commit is contained in:
Evan Debenham 2021-08-19 15:45:06 -04:00
parent 1b2a80965e
commit 984e273db8

View File

@ -186,7 +186,7 @@ public class WarpBeacon extends ArmorAbility {
return; 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") ); GLog.w( Messages.get(WarpBeacon.class, "too_far") );
return; return;
} }