diff options
Diffstat (limited to 'azalea-client/src')
| -rwxr-xr-x | azalea-client/src/connect.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/azalea-client/src/connect.rs b/azalea-client/src/connect.rs index b6915fe8..c09d7d9e 100755 --- a/azalea-client/src/connect.rs +++ b/azalea-client/src/connect.rs @@ -200,7 +200,7 @@ impl Client { println!("Got update tags packet"); } GamePacket::ClientboundDisconnectPacket(p) => { - println!("Got login disconnect packet {:?}", p); + println!("Got disconnect packet {:?}", p); } GamePacket::ClientboundUpdateRecipesPacket(p) => { println!("Got update recipes packet"); @@ -230,6 +230,9 @@ impl Client { GamePacket::ClientboundAddMobPacket(p) => { println!("Got add mob packet {:?}", p); } + GamePacket::ClientboundAddEntityPacket(p) => { + println!("Got add entity packet {:?}", p); + } _ => panic!("Unexpected packet {:?}", packet), } println!(); |
