diff options
| author | mat <github@matdoes.dev> | 2022-05-14 20:43:25 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-05-14 20:43:25 -0500 |
| commit | c16e958d0be671a17edf060aee9850faccbcfe14 (patch) | |
| tree | ff4996b89d6f34c7c452d1b2950e53d512bce3c1 /azalea-client | |
| parent | 9fc71ab2d1e669fb3533f3012921b1e8dbacd257 (diff) | |
| download | azalea-drasl-c16e958d0be671a17edf060aee9850faccbcfe14.tar.xz | |
ClientboundLevelParticlesPacket works
Diffstat (limited to 'azalea-client')
| -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 d7788593..b8b6e372 100755 --- a/azalea-client/src/connect.rs +++ b/azalea-client/src/connect.rs @@ -381,6 +381,9 @@ impl Client { GamePacket::ClientboundGameEventPacket(p) => { println!("Got game event packet {:?}", p); } + GamePacket::ClientboundLevelParticlesPacket(p) => { + println!("Got level particles packet {:?}", p); + } _ => panic!("Unexpected packet {:?}", packet), } } |
