diff options
| author | mat <git@matdoes.dev> | 2026-01-10 21:11:03 -0630 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2026-01-10 21:11:03 -0630 |
| commit | af4f5271e22b3f3aa906140ef5a6d24586403ba0 (patch) | |
| tree | d6ae6a7e13e33ffceeef0fc860ccce1c08228e37 /azalea-client | |
| parent | 502eb17ddc4eb0c7b9ea0620adeb48f2d3977207 (diff) | |
| download | azalea-drasl-af4f5271e22b3f3aa906140ef5a6d24586403ba0.tar.xz | |
replace a println with debug
Diffstat (limited to 'azalea-client')
| -rw-r--r-- | azalea-client/src/plugins/packet/game/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-client/src/plugins/packet/game/mod.rs b/azalea-client/src/plugins/packet/game/mod.rs index edb755c9..e97850fb 100644 --- a/azalea-client/src/plugins/packet/game/mod.rs +++ b/azalea-client/src/plugins/packet/game/mod.rs @@ -1261,7 +1261,7 @@ impl GamePacketHandler<'_> { pub fn delete_chat(&mut self, _p: &ClientboundDeleteChat) {} pub fn explode(&mut self, p: &ClientboundExplode) { - println!("Got explode packet {p:?}"); + debug!("Got explode packet {p:?}"); as_system::<Commands>(self.ecs, |mut knockback_events| { if let Some(knockback) = p.player_knockback { |
