aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-client/src')
-rw-r--r--azalea-client/src/movement.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/azalea-client/src/movement.rs b/azalea-client/src/movement.rs
index fb4a5968..85cf6bdd 100644
--- a/azalea-client/src/movement.rs
+++ b/azalea-client/src/movement.rs
@@ -144,9 +144,10 @@ impl Client {
let mut entity = player
.entity_mut(&mut dimension_lock)
.ok_or(MovePlayerError::PlayerNotInWorld)?;
- println!(
+ log::trace!(
"move entity bounding box: {} {:?}",
- entity.id, entity.bounding_box
+ entity.id,
+ entity.bounding_box
);
entity.move_colliding(&MoverType::Own, movement)?;