fix wrong imports

This commit is contained in:
mat 2022-07-21 21:10:20 -05:00
parent c0ca03204f
commit 3aa856b413
2 changed files with 3 additions and 2 deletions

View file

@ -1,4 +1,5 @@
use azalea_buf::McBuf;
use azalea_chat::component::Component;
use packet_macros::GamePacket;
#[derive(Clone, Debug, McBuf, GamePacket)]

View file

@ -1,8 +1,8 @@
use crate::packets::game::clientbound_player_chat_packet::LastSeenUpdate;
use crate::packets::game::clientbound_player_chat_packet::LastSeenMessagesUpdate;
use azalea_buf::McBuf;
use packet_macros::GamePacket;
#[derive(Clone, Debug, McBuf, GamePacket)]
pub struct ServerboundChatAckPacket {
pub last_seen_messages: LastSeenUpdate,
pub last_seen_messages: LastSeenMessagesUpdate,
}