aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-06-09 17:15:07 +0900
committermat <git@matdoes.dev>2025-06-09 17:15:07 +0900
commit4a4de819616d620d15680e71fb32390e28ab07cd (patch)
tree9bd1159dec3527b07651d0d9c78f96c95d115e7b /azalea-protocol/src/packets/game
parent45d73712746fbfd365e8a68a75dfad6ae2e0d174 (diff)
downloadazalea-drasl-4a4de819616d620d15680e71fb32390e28ab07cd.tar.xz
handle relative teleports correctly and fix entity chunk indexing warnings
Diffstat (limited to 'azalea-protocol/src/packets/game')
-rw-r--r--azalea-protocol/src/packets/game/c_teleport_entity.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/c_teleport_entity.rs b/azalea-protocol/src/packets/game/c_teleport_entity.rs
index 92b8f1eb..e19ded58 100644
--- a/azalea-protocol/src/packets/game/c_teleport_entity.rs
+++ b/azalea-protocol/src/packets/game/c_teleport_entity.rs
@@ -9,6 +9,6 @@ pub struct ClientboundTeleportEntity {
#[var]
pub id: MinecraftEntityId,
pub change: PositionMoveRotation,
- pub relatives: RelativeMovements,
+ pub relative: RelativeMovements,
pub on_ground: bool,
}