mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-27 21:19:00 +01:00
Made World.playEffect a bit more efficient. Thanks mintplant for the PR.
This commit is contained in:
parent
9c1534336c
commit
6d49b11338
@ -650,8 +650,10 @@ public class CraftWorld implements World {
|
||||
int packetData = effect.getId();
|
||||
Packet61WorldEvent packet = new Packet61WorldEvent(packetData, location.getBlockX(), location.getBlockY(), location.getBlockZ(), data);
|
||||
int distance;
|
||||
radius *= radius;
|
||||
|
||||
for (Player player : getPlayers()) {
|
||||
distance = (int) player.getLocation().distance(location);
|
||||
distance = (int) player.getLocation().distanceSquared(location);
|
||||
if (distance <= radius) {
|
||||
((CraftPlayer) player).getHandle().netServerHandler.sendPacket(packet);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user