aboutsummaryrefslogtreecommitdiff
path: root/azalea-client
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-04-18 22:38:53 -0500
committermat <github@matdoes.dev>2022-04-18 22:38:53 -0500
commit751098b636c9aee54b9ca7a465fdaa769f10be4d (patch)
tree9ed0cd253dd95e6af3b2eefea86ad507dff4e19e /azalea-client
parent78e692efc3fffc939f1b5af02e3cf32ca5302265 (diff)
downloadazalea-drasl-751098b636c9aee54b9ca7a465fdaa769f10be4d.tar.xz
start working on declare commands packet
Diffstat (limited to 'azalea-client')
-rw-r--r--azalea-client/src/connect.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/azalea-client/src/connect.rs b/azalea-client/src/connect.rs
index 7b1da525..bc45a121 100644
--- a/azalea-client/src/connect.rs
+++ b/azalea-client/src/connect.rs
@@ -73,6 +73,9 @@ pub async fn join_server(address: &ServerAddress) -> Result<(), String> {
GamePacket::ClientboundChangeDifficultyPacket(p) => {
println!("Got difficulty packet {:?}", p);
}
+ GamePacket::ClientboundDeclareCommandsPacket(p) => {
+ println!("Got declare commands packet {:?}", p);
+ }
},
Err(e) => {
println!("Error: {:?}", e);