aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/plugins/packet/config
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-06-17 06:49:07 -1200
committermat <git@matdoes.dev>2025-06-17 06:49:07 -1200
commitffbe7a3e426e66c21c7156780728f96f8277c68a (patch)
tree5358ab47c013cc848dd7d24781676062fc87da4e /azalea-client/src/plugins/packet/config
parent319d144995e0ca635806941cbb5d6ceaf0fcf515 (diff)
downloadazalea-drasl-ffbe7a3e426e66c21c7156780728f96f8277c68a.tar.xz
1.21.6 (#215)
Diffstat (limited to 'azalea-client/src/plugins/packet/config')
-rw-r--r--azalea-client/src/plugins/packet/config/mod.rs9
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:?}");
+ }
}