v2.1.1: fixed challenge having a range of 4 tiles, not 5

This commit is contained in:
Evan Debenham
2023-06-05 23:59:33 -04:00
parent 4e6a8ce0ab
commit 52f33c4413

View File

@@ -138,7 +138,7 @@ public class Challenge extends ArmorAbility {
return;
}
if (Dungeon.level.distance(blinkpos, targetCh.pos) >= 5){
if (Dungeon.level.distance(blinkpos, targetCh.pos) > 5){
GLog.w(Messages.get(this, "distant_target"));
return;
}