diff options
| author | mat <github@matdoes.dev> | 2022-05-07 12:22:57 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-05-07 12:22:57 -0500 |
| commit | f0a277788c30392b630d4a8e8b09e9cd3e54c14f (patch) | |
| tree | 7689dc322b5919be8cb1aa3e898ea2049ce67f4a /azalea-client/src | |
| parent | b9c31efc0161457771861e6858a4a4da0b6a2727 (diff) | |
| download | azalea-drasl-f0a277788c30392b630d4a8e8b09e9cd3e54c14f.tar.xz | |
add set time packet and update readme
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 6edb3d13..15d6df4c 100755 --- a/azalea-client/src/connect.rs +++ b/azalea-client/src/connect.rs @@ -261,6 +261,9 @@ impl Client { GamePacket::ClientboundInitializeBorderPacket(p) => { println!("Got initialize border packet {:?}", p); } + GamePacket::ClientboundSetTimePacket(p) => { + println!("Got set time packet {:?}", p); + } _ => panic!("Unexpected packet {:?}", packet), } println!(); |
