diff options
| author | mat <github@matdoes.dev> | 2022-05-07 19:46:06 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-05-07 19:46:06 -0500 |
| commit | e53ef8b0ddd46b3a85e597e7da57139960304e35 (patch) | |
| tree | 272a3dfb42113dc53e51b5d21052e033bae92fd7 /azalea-client | |
| parent | 0b84e1cbb826f1a502ffc81efc000369a3c5bb85 (diff) | |
| download | azalea-drasl-e53ef8b0ddd46b3a85e597e7da57139960304e35.tar.xz | |
update advancements packet
Diffstat (limited to 'azalea-client')
| -rwxr-xr-x | azalea-client/src/connect.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/azalea-client/src/connect.rs b/azalea-client/src/connect.rs index cd6891c0..a73e0146 100755 --- a/azalea-client/src/connect.rs +++ b/azalea-client/src/connect.rs @@ -244,10 +244,10 @@ impl Client { println!("Got add entity packet {:?}", p); } GamePacket::ClientboundSetEntityDataPacket(p) => { - println!("Got set entity data packet {:?}", p); + // println!("Got set entity data packet {:?}", p); } GamePacket::ClientboundUpdateAttributesPacket(p) => { - println!("Got update attributes packet {:?}", p); + // println!("Got update attributes packet {:?}", p); } GamePacket::ClientboundEntityVelocityPacket(p) => { println!("Got entity velocity packet {:?}", p); @@ -279,6 +279,9 @@ impl Client { GamePacket::ClientboundTeleportEntityPacket(p) => { println!("Got teleport entity packet {:?}", p); } + GamePacket::ClientboundUpdateAdvancementsPacket(p) => { + println!("Got update advancements packet {:?}", p); + } _ => panic!("Unexpected packet {:?}", packet), } println!(); |
