diff options
Diffstat (limited to 'azalea-client/src/plugins/packet/config')
| -rw-r--r-- | azalea-client/src/plugins/packet/config/mod.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/azalea-client/src/plugins/packet/config/mod.rs b/azalea-client/src/plugins/packet/config/mod.rs index afe02159..3116e245 100644 --- a/azalea-client/src/plugins/packet/config/mod.rs +++ b/azalea-client/src/plugins/packet/config/mod.rs @@ -56,6 +56,8 @@ pub fn process_packet(ecs: &mut World, player: Entity, packet: &ClientboundConfi select_known_packs, custom_report_details, server_links, + clear_dialog, + show_dialog, ] ); } @@ -220,4 +222,11 @@ impl ConfigPacketHandler<'_> { pub fn custom_report_details(&mut self, p: &ClientboundCustomReportDetails) { debug!("Got custom report details packet {p:?}"); } + + pub fn clear_dialog(&mut self, p: &ClientboundClearDialog) { + debug!("Got clear dialog packet {p:?}"); + } + pub fn show_dialog(&mut self, p: &ClientboundShowDialog) { + debug!("Got show dialog packet {p:?}"); + } } |
