mirror of
https://github.com/Minestom/Minestom.git
synced 2025-03-12 14:49:11 +01:00
Entity Position Sync fix (#72)
This commit is contained in:
parent
8a9439643c
commit
2c4fbf4964
@ -1343,7 +1343,8 @@ public class Entity implements Viewable, Tickable, Schedulable, Snapshotable, Ev
|
||||
lastSyncedPosition, onGround), this);
|
||||
} else if (viewChange) {
|
||||
PacketUtils.prepareViewablePacket(chunk, new EntityHeadLookPacket(getEntityId(), position.yaw()), this);
|
||||
PacketUtils.prepareViewablePacket(chunk, new EntityRotationPacket(getEntityId(), position.yaw(), position.pitch(), onGround), this);
|
||||
PacketUtils.prepareViewablePacket(chunk, EntityPositionAndRotationPacket.getPacket(getEntityId(), position,
|
||||
lastSyncedPosition, isOnGround()), this);
|
||||
}
|
||||
this.lastSyncedPosition = position;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user