diff options
| author | mat <github@matdoes.dev> | 2022-04-26 15:33:41 +0000 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-04-26 15:33:41 +0000 |
| commit | e5fcfa119309877ab515b921f8ada5f1b1ec4c30 (patch) | |
| tree | c5084a2f7840979feaf7483e7b598cbc888c509f /azalea-client/src | |
| parent | f9528a9f9a9e73b1d657af7c78d743067307d843 (diff) | |
| download | azalea-drasl-e5fcfa119309877ab515b921f8ada5f1b1ec4c30.tar.xz | |
default implementation for read and write Vec<T>
Diffstat (limited to 'azalea-client/src')
| -rwxr-xr-x | 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 44eff33f..f441f2f3 100755 --- a/azalea-client/src/connect.rs +++ b/azalea-client/src/connect.rs @@ -114,6 +114,9 @@ pub async fn join_server(address: &ServerAddress) -> Result<(), String> { GamePacket::ClientboundDisconnectPacket(p) => { println!("Got login disconnect packet {:?}", p); } + GamePacket::ClientboundUpdateRecipesPacket(p) => { + println!("Got update recipes packet {:?}", p); + } }, Err(e) => { panic!("Error: {:?}", e); |
