mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-24 18:07:39 +01:00
SPIGOT-2785: Wrong effect ID for wither sounds
This commit is contained in:
parent
a951a88398
commit
2dd38f2dc4
@ -40,9 +40,9 @@
|
|||||||
+ double deltaLength = Math.sqrt(distanceSquared);
|
+ double deltaLength = Math.sqrt(distanceSquared);
|
||||||
+ double relativeX = player.locX + (deltaX / deltaLength) * viewDistance;
|
+ double relativeX = player.locX + (deltaX / deltaLength) * viewDistance;
|
||||||
+ double relativeZ = player.locZ + (deltaZ / deltaLength) * viewDistance;
|
+ double relativeZ = player.locZ + (deltaZ / deltaLength) * viewDistance;
|
||||||
+ player.playerConnection.sendPacket(new PacketPlayOutWorldEvent(1013, new BlockPosition((int) relativeX, (int) this.locY, (int) relativeZ), 0, true));
|
+ player.playerConnection.sendPacket(new PacketPlayOutWorldEvent(1023, new BlockPosition((int) relativeX, (int) this.locY, (int) relativeZ), 0, true));
|
||||||
+ } else {
|
+ } else {
|
||||||
+ player.playerConnection.sendPacket(new PacketPlayOutWorldEvent(1013, new BlockPosition((int) this.locX, (int) this.locY, (int) this.locZ), 0, true));
|
+ player.playerConnection.sendPacket(new PacketPlayOutWorldEvent(1023, new BlockPosition((int) this.locX, (int) this.locY, (int) this.locZ), 0, true));
|
||||||
+ }
|
+ }
|
||||||
+ }
|
+ }
|
||||||
+ // CraftBukkit end
|
+ // CraftBukkit end
|
||||||
|
Loading…
Reference in New Issue
Block a user