Whoops, need this commit too.

This commit is contained in:
sk89q 2011-06-09 23:56:42 -07:00
parent bf4a4a767c
commit e5c6b329d5

View File

@ -665,7 +665,7 @@ public class CraftWorld implements World {
Packet61 packet = new Packet61(packetData, location.getBlockX(), location.getBlockY(), location.getBlockZ(), data);
int distance;
for (Player player : getPlayers()) {
distance = (int) player.getLocation().distanceTo(location);
distance = (int) player.getLocation().distance(location);
if (distance <= radius) {
((CraftPlayer) player).getHandle().netServerHandler.sendPacket(packet);
}