diff options
| author | mat <github@matdoes.dev> | 2022-05-07 21:44:11 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-05-07 21:44:11 -0500 |
| commit | f62a681474df698d87deb43c71238b83a26f0f1f (patch) | |
| tree | 68b26f053faf818cf6780688f41d7840cdcc7494 /azalea-client/src | |
| parent | 98eee6d908a5651c55131b80dc3c153a6708052e (diff) | |
| download | azalea-drasl-f62a681474df698d87deb43c71238b83a26f0f1f.tar.xz | |
remove entities packet
Diffstat (limited to 'azalea-client/src')
| -rwxr-xr-x | azalea-client/src/connect.rs | 3 |
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!(); |
