From 7ae8bfab5095b8d6fe71f32a0b1cda8a47ccff94 Mon Sep 17 00:00:00 2001 From: mat Date: Thu, 27 Oct 2022 20:58:11 -0500 Subject: fix removed packets still being defined --- .../src/packets/game/clientbound_entity_velocity_packet.rs | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 azalea-protocol/src/packets/game/clientbound_entity_velocity_packet.rs (limited to 'azalea-protocol/src/packets/game/clientbound_entity_velocity_packet.rs') diff --git a/azalea-protocol/src/packets/game/clientbound_entity_velocity_packet.rs b/azalea-protocol/src/packets/game/clientbound_entity_velocity_packet.rs deleted file mode 100644 index 148e0363..00000000 --- a/azalea-protocol/src/packets/game/clientbound_entity_velocity_packet.rs +++ /dev/null @@ -1,11 +0,0 @@ -use azalea_buf::McBuf; -use azalea_protocol_macros::ClientboundGamePacket; - -#[derive(Clone, Debug, McBuf, ClientboundGamePacket)] -pub struct ClientboundEntityVelocityPacket { - #[var] - pub entity_id: u32, - pub x_vel: i16, - pub y_vel: i16, - pub z_vel: i16, -} -- cgit v1.2.3