aboutsummaryrefslogtreecommitdiff
path: root/azalea-client
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-05-07 18:47:16 -0500
committermat <github@matdoes.dev>2022-05-07 18:47:16 -0500
commit0b84e1cbb826f1a502ffc81efc000369a3c5bb85 (patch)
tree3457bd76cb2b52f9df8382a436a8716c3a251615 /azalea-client
parent1a15d36e6b9bb33340f1422b6b282dd13e9b4840 (diff)
downloadazalea-drasl-0b84e1cbb826f1a502ffc81efc000369a3c5bb85.tar.xz
add a couple more packets
Diffstat (limited to 'azalea-client')
-rwxr-xr-xazalea-client/src/connect.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/azalea-client/src/connect.rs b/azalea-client/src/connect.rs
index b9f6af98..cd6891c0 100755
--- a/azalea-client/src/connect.rs
+++ b/azalea-client/src/connect.rs
@@ -273,6 +273,12 @@ impl Client {
GamePacket::ClientboundSetHealthPacket(p) => {
println!("Got set health packet {:?}", p);
}
+ GamePacket::ClientboundSetExperiencePacket(p) => {
+ println!("Got set experience packet {:?}", p);
+ }
+ GamePacket::ClientboundTeleportEntityPacket(p) => {
+ println!("Got teleport entity packet {:?}", p);
+ }
_ => panic!("Unexpected packet {:?}", packet),
}
println!();