aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/plugins/packet/config
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-client/src/plugins/packet/config')
-rw-r--r--azalea-client/src/plugins/packet/config/mod.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/azalea-client/src/plugins/packet/config/mod.rs b/azalea-client/src/plugins/packet/config/mod.rs
index e8bb017d..629f9f71 100644
--- a/azalea-client/src/plugins/packet/config/mod.rs
+++ b/azalea-client/src/plugins/packet/config/mod.rs
@@ -57,6 +57,7 @@ pub fn process_packet(ecs: &mut World, player: Entity, packet: &ClientboundConfi
server_links,
clear_dialog,
show_dialog,
+ code_of_conduct,
]
);
}
@@ -231,4 +232,7 @@ impl ConfigPacketHandler<'_> {
pub fn show_dialog(&mut self, p: &ClientboundShowDialog) {
debug!("Got show dialog packet {p:?}");
}
+ pub fn code_of_conduct(&mut self, p: &ClientboundCodeOfConduct) {
+ debug!("Got code of conduct packet {p:?}");
+ }
}