diff options
| author | mat <git@matdoes.dev> | 2025-05-06 14:20:57 -1300 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-05-06 14:20:57 -1300 |
| commit | e9452032bfc95cb7ad4a8798b13648e164536cf1 (patch) | |
| tree | d62694761560085d979886d0822b8dfd942d3db2 /azalea-client/src/plugins/packet | |
| parent | d58a1c4fa0bd0c695e670ec52874f11cce64cd01 (diff) | |
| download | azalea-drasl-e9452032bfc95cb7ad4a8798b13648e164536cf1.tar.xz | |
fix various issues with mining
Diffstat (limited to 'azalea-client/src/plugins/packet')
| -rw-r--r-- | azalea-client/src/plugins/packet/game/events.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea-client/src/plugins/packet/game/events.rs b/azalea-client/src/plugins/packet/game/events.rs index 68bfb4b3..707d2cd9 100644 --- a/azalea-client/src/plugins/packet/game/events.rs +++ b/azalea-client/src/plugins/packet/game/events.rs @@ -9,7 +9,7 @@ use azalea_protocol::packets::{ use azalea_world::Instance; use bevy_ecs::prelude::*; use parking_lot::RwLock; -use tracing::error; +use tracing::{error, trace}; use uuid::Uuid; use crate::{PlayerInfo, client::InGameState, connection::RawConnection}; @@ -60,6 +60,7 @@ pub fn handle_outgoing_packets_observer( mut query: Query<(&mut RawConnection, Option<&InGameState>)>, ) { let event = trigger.event(); + trace!("Sending game packet: {:?}", event.packet); if let Ok((mut raw_connection, in_game_state)) = query.get_mut(event.sent_by) { if in_game_state.is_none() { |
