mirror of
https://github.com/Minestom/Minestom.git
synced 2025-01-04 23:47:59 +01:00
Fix yaw/pitch order in SpawnEntityPacket (#1436)
This commit is contained in:
parent
17ef1c2f57
commit
7eb9d3fdd7
@ -29,8 +29,8 @@ public record SpawnEntityPacket(int entityId, @NotNull UUID uuid, int type,
|
||||
writer.writeDouble(position.y());
|
||||
writer.writeDouble(position.z());
|
||||
|
||||
writer.writeByte((byte) (position.yaw() * 256 / 360));
|
||||
writer.writeByte((byte) (position.pitch() * 256 / 360));
|
||||
writer.writeByte((byte) (position.yaw() * 256 / 360));
|
||||
writer.writeByte((byte) (headRot * 256 / 360));
|
||||
|
||||
writer.writeVarInt(data);
|
||||
|
Loading…
Reference in New Issue
Block a user