diff options
Diffstat (limited to 'azalea-protocol/src/packets/handshake')
| -rwxr-xr-x | azalea-protocol/src/packets/handshake/client_intention_packet.rs | 2 | ||||
| -rwxr-xr-x | azalea-protocol/src/packets/handshake/mod.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/azalea-protocol/src/packets/handshake/client_intention_packet.rs b/azalea-protocol/src/packets/handshake/client_intention_packet.rs index ef47bba3..1900d476 100755 --- a/azalea-protocol/src/packets/handshake/client_intention_packet.rs +++ b/azalea-protocol/src/packets/handshake/client_intention_packet.rs @@ -1,6 +1,6 @@ use crate::packets::ConnectionProtocol; use azalea_buf::McBuf; -use packet_macros::ServerboundHandshakePacket; +use azalea_protocol_macros::ServerboundHandshakePacket; use std::hash::Hash; #[derive(Hash, Clone, Debug, McBuf, ServerboundHandshakePacket)] diff --git a/azalea-protocol/src/packets/handshake/mod.rs b/azalea-protocol/src/packets/handshake/mod.rs index 8fd12529..f2e8810e 100755 --- a/azalea-protocol/src/packets/handshake/mod.rs +++ b/azalea-protocol/src/packets/handshake/mod.rs @@ -1,6 +1,6 @@ pub mod client_intention_packet; -use packet_macros::declare_state_packets; +use azalea_protocol_macros::declare_state_packets; declare_state_packets!( HandshakePacket, |
