mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-24 19:46:21 +01:00
Whoops, need this commit too.
This commit is contained in:
parent
bf4a4a767c
commit
e5c6b329d5
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user