diff options
| author | mat <github@matdoes.dev> | 2022-04-18 22:38:53 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-04-18 22:38:53 -0500 |
| commit | 751098b636c9aee54b9ca7a465fdaa769f10be4d (patch) | |
| tree | 9ed0cd253dd95e6af3b2eefea86ad507dff4e19e /azalea-client/src | |
| parent | 78e692efc3fffc939f1b5af02e3cf32ca5302265 (diff) | |
| download | azalea-drasl-751098b636c9aee54b9ca7a465fdaa769f10be4d.tar.xz | |
start working on declare commands packet
Diffstat (limited to 'azalea-client/src')
| -rw-r--r-- | azalea-client/src/connect.rs | 3 |
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); |
