aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-05-07 21:44:11 -0500
committermat <github@matdoes.dev>2022-05-07 21:44:11 -0500
commitf62a681474df698d87deb43c71238b83a26f0f1f (patch)
tree68b26f053faf818cf6780688f41d7840cdcc7494 /azalea-client/src
parent98eee6d908a5651c55131b80dc3c153a6708052e (diff)
downloadazalea-drasl-f62a681474df698d87deb43c71238b83a26f0f1f.tar.xz
remove entities 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 8713ccda..5c2ee9b8 100755
--- a/azalea-client/src/connect.rs
+++ b/azalea-client/src/connect.rs
@@ -304,6 +304,9 @@ impl Client {
.write(ServerboundKeepAlivePacket { id: p.id }.get())
.await;
}
+ GamePacket::ClientboundRemoveEntitiesPacket(p) => {
+ println!("Got remove entities packet {:?}", p);
+ }
_ => panic!("Unexpected packet {:?}", packet),
}
println!();