diff options
| author | mat <github@matdoes.dev> | 2022-04-26 22:53:47 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-04-26 22:53:47 -0500 |
| commit | 4f9f2468f0fc80b19baac6904c05c9cc9a9cb61a (patch) | |
| tree | a93051bfba443269622e51650ca8fa3b80d89f2e /azalea-client/src | |
| parent | f859dbbba06278f52517b0096b92ff3a6932ee28 (diff) | |
| download | azalea-drasl-4f9f2468f0fc80b19baac6904c05c9cc9a9cb61a.tar.xz | |
add recipe packet
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 77303930..d8b47321 100755 --- a/azalea-client/src/connect.rs +++ b/azalea-client/src/connect.rs @@ -120,6 +120,9 @@ pub async fn join_server(address: &ServerAddress) -> Result<(), String> { GamePacket::ClientboundEntityEventPacket(p) => { println!("Got entity event packet {:?}", p); } + GamePacket::ClientboundRecipePacket(p) => { + println!("Got recipe packet {:?}", p); + } }, Err(e) => { panic!("Error: {:?}", e); |
