Comparison should be squared

This commit is contained in:
fullwall 2021-01-20 17:49:43 +08:00
parent 58443ee726
commit 8c0fa7cd17
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ public class LookClose extends Trait implements Toggleable, CommandConfigurable
if (location.getWorld() != NPC_LOCATION.getWorld())
continue;
double dist = location.distanceSquared(NPC_LOCATION);
if (dist > range || CitizensAPI.getNPCRegistry().getNPC(entity) != null || isInvisible(player))
if (dist > range * range || CitizensAPI.getNPCRegistry().getNPC(entity) != null || isInvisible(player))
continue;
nearby.add(player);
}