aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-06-23 21:31:19 -0500
committermat <github@matdoes.dev>2022-06-23 21:31:19 -0500
commit2cdbdcaa27c812e569c7c1a13d83182446e7f18b (patch)
treec4f2970d847ec411bf6e859bc1521e93bc8b3c81 /azalea-protocol/src
parent37c6618c16319a7f40fd2e165190407472598e84 (diff)
downloadazalea-drasl-2cdbdcaa27c812e569c7c1a13d83182446e7f18b.tar.xz
move_entity_with_delta
Diffstat (limited to 'azalea-protocol/src')
-rw-r--r--azalea-protocol/src/packets/game/clientbound_move_entity_pos_packet.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/azalea-protocol/src/packets/game/clientbound_move_entity_pos_packet.rs b/azalea-protocol/src/packets/game/clientbound_move_entity_pos_packet.rs
index 3dc789a9..63428dd8 100644
--- a/azalea-protocol/src/packets/game/clientbound_move_entity_pos_packet.rs
+++ b/azalea-protocol/src/packets/game/clientbound_move_entity_pos_packet.rs
@@ -1,11 +1,11 @@
-use azalea_core::{EntityPos, PositionDelta};
-use packet_macros::GamePacket;
use azalea_buf::McBuf;
+use azalea_core::PositionDelta;
+use packet_macros::GamePacket;
#[derive(Clone, Debug, McBuf, GamePacket)]
pub struct ClientboundMoveEntityPosPacket {
#[var]
- pub entity_id: i32,
+ pub entity_id: u32,
pub delta: PositionDelta,
pub on_ground: bool,
}