From 350f9f105e433f25ea86713b5c0e9da7422f0034 Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Tue, 8 Nov 2022 20:34:39 +0000 Subject: [PATCH] don't log light updates --- azalea-client/src/client.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azalea-client/src/client.rs b/azalea-client/src/client.rs index c3eda3e7..b35b4fc6 100644 --- a/azalea-client/src/client.rs +++ b/azalea-client/src/client.rs @@ -584,8 +584,8 @@ impl Client { .replace_with_packet_data(&pos, &mut Cursor::new(&p.chunk_data.data)) .unwrap(); } - ClientboundGamePacket::LightUpdate(p) => { - debug!("Got light update packet {:?}", p); + ClientboundGamePacket::LightUpdate(_p) => { + // debug!("Got light update packet {:?}", p); } ClientboundGamePacket::AddEntity(p) => { debug!("Got add entity packet {:?}", p);