aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-05-08 18:44:40 -0500
committermat <github@matdoes.dev>2022-05-08 18:44:40 -0500
commitd783a0295b11c32f1b5425cab2461f9297f7f8fa (patch)
tree28f337e3beb2fd97c85883abfef244a4c6a7f771 /azalea-client/src
parent7c742347a7e16ac28fcc88e3bab30e68695763e4 (diff)
downloadazalea-drasl-d783a0295b11c32f1b5425cab2461f9297f7f8fa.tar.xz
animate packet
Diffstat (limited to 'azalea-client/src')
-rwxr-xr-xazalea-client/src/connect.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/azalea-client/src/connect.rs b/azalea-client/src/connect.rs
index 4ce755de..6e6398fa 100755
--- a/azalea-client/src/connect.rs
+++ b/azalea-client/src/connect.rs
@@ -322,6 +322,9 @@ impl Client {
GamePacket::ClientboundBlockUpdatePacket(p) => {
println!("Got block update packet {:?}", p);
}
+ GamePacket::ClientboundAnimatePacket(p) => {
+ println!("Got animate packet {:?}", p);
+ }
_ => panic!("Unexpected packet {:?}", packet),
}
}