aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-04-19 21:29:07 -0500
committermat <github@matdoes.dev>2022-04-19 21:29:07 -0500
commit65dd2eacc2eb8c76ae8f496c8473537e380dbc17 (patch)
tree113e879b9bea299f797f16370ef105586c1232b3 /azalea-client/src
parentdf318dba73750ce38afea675854a8ce6ccbc65e5 (diff)
parentcafa4dd76fecc9e331f35145e10539e1f5ac85f6 (diff)
downloadazalea-drasl-65dd2eacc2eb8c76ae8f496c8473537e380dbc17.tar.xz
Merge branch 'declare-commands-packet'
Diffstat (limited to 'azalea-client/src')
-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);