diff options
Diffstat (limited to 'azalea-client/src')
| -rwxr-xr-x | azalea-client/src/connect.rs | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/azalea-client/src/connect.rs b/azalea-client/src/connect.rs index 0fc7273b..f04eb25d 100755 --- a/azalea-client/src/connect.rs +++ b/azalea-client/src/connect.rs @@ -250,7 +250,7 @@ impl Client { // println!("Got update attributes packet {:?}", p); } GamePacket::ClientboundEntityVelocityPacket(p) => { - println!("Got entity velocity packet {:?}", p); + // println!("Got entity velocity packet {:?}", p); } GamePacket::ClientboundSetEntityLinkPacket(p) => { println!("Got set entity link packet {:?}", p); @@ -283,10 +283,16 @@ impl Client { println!("Got update advancements packet {:?}", p); } GamePacket::ClientboundRotateHeadPacket(p) => { - println!("Got rotate head packet {:?}", p); + // println!("Got rotate head packet {:?}", p); } - GamePacket::ClientboundMoveEntityPacket(p) => { - println!("Got move entity packet {:?}", p); + GamePacket::ClientboundMoveEntityPosPacket(p) => { + // println!("Got move entity pos packet {:?}", p); + } + GamePacket::ClientboundMoveEntityPosRotPacket(p) => { + // println!("Got move entity pos rot packet {:?}", p); + } + GamePacket::ClientboundMoveEntityRotPacket(p) => { + println!("Got move entity rot packet {:?}", p); } _ => panic!("Unexpected packet {:?}", packet), } |
