diff options
| author | mat <github@matdoes.dev> | 2022-04-30 01:43:00 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-04-30 01:43:00 -0500 |
| commit | 4d7bf6c50eda970ac4998f10f5e46006dffb6ca2 (patch) | |
| tree | 8b677c96440dfae63132303df3fa9bf37d3bcf65 /azalea-client/src/connect.rs | |
| parent | c8c356685d9050d166226fb01353faba5fc00f4a (diff) | |
| download | azalea-drasl-4d7bf6c50eda970ac4998f10f5e46006dffb6ca2.tar.xz | |
significantly optimize reading Vec<u8>
unfortunately, this introduces the requirement of using rust nightly
Diffstat (limited to 'azalea-client/src/connect.rs')
| -rwxr-xr-x | azalea-client/src/connect.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-client/src/connect.rs b/azalea-client/src/connect.rs index bf8692bd..2aa25f2d 100755 --- a/azalea-client/src/connect.rs +++ b/azalea-client/src/connect.rs @@ -215,7 +215,7 @@ impl Client { println!("Got chunk cache center packet {:?}", p); } GamePacket::ClientboundLevelChunkWithLightPacket(p) => { - println!("Got chunk with light packet"); + println!("Got chunk with light packet {} {}", p.x, p.z); } GamePacket::ClientboundLightUpdatePacket(p) => { println!("Got light update packet {:?}", p); |
