aboutsummaryrefslogtreecommitdiff
path: root/azalea-client
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-client')
-rwxr-xr-xazalea-client/README.md2
-rwxr-xr-xazalea-client/src/connect.rs5
2 files changed, 5 insertions, 2 deletions
diff --git a/azalea-client/README.md b/azalea-client/README.md
index 9b51356e..296cab07 100755
--- a/azalea-client/README.md
+++ b/azalea-client/README.md
@@ -1,3 +1,3 @@
# Azalea Client
-A library that can mimic everything a normal Minecraft client can do. If you want to make a bot with higher-level functions, you should use `azalea` instead.
+A library that can mimic everything a normal Minecraft client can do. If you want to make a bot with higher-level functions, you should use the `azalea` crate instead.
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!();