aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-client/src')
-rwxr-xr-xazalea-client/src/connect.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/azalea-client/src/connect.rs b/azalea-client/src/connect.rs
index 5c2ee9b8..aed40131 100755
--- a/azalea-client/src/connect.rs
+++ b/azalea-client/src/connect.rs
@@ -307,6 +307,12 @@ impl Client {
GamePacket::ClientboundRemoveEntitiesPacket(p) => {
println!("Got remove entities packet {:?}", p);
}
+ GamePacket::ClientboundChatPacket(p) => {
+ println!("Got chat packet {:?}", p);
+ }
+ GamePacket::ClientboundSoundPacket(p) => {
+ println!("Got sound packet {:?}", p);
+ }
_ => panic!("Unexpected packet {:?}", packet),
}
println!();