From d5a281bf15a1aad07b0f108d86461eafffa590a0 Mon Sep 17 00:00:00 2001 From: mat Date: Mon, 19 Aug 2024 19:44:15 +0000 Subject: remove debug printlns --- azalea-physics/src/clip.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/azalea-physics/src/clip.rs b/azalea-physics/src/clip.rs index e44c59ca..30b46a8e 100644 --- a/azalea-physics/src/clip.rs +++ b/azalea-physics/src/clip.rs @@ -111,7 +111,6 @@ fn clip_with_interaction_override( block_state: &BlockState, ) -> Option { let block_hit_result = block_shape.clip(from, to, block_pos); - println!("block_hit_result: {block_hit_result:?}"); if let Some(block_hit_result) = block_hit_result { // TODO: minecraft calls .getInteractionShape here // some blocks (like tall grass) have a physics shape that's different from the @@ -208,9 +207,6 @@ pub fn traverse_blocks( }, }; - println!("percentage_step: {percentage_step:?}"); - println!("percentage: {percentage:?}"); - loop { if percentage.x > 1. && percentage.y > 1. && percentage.z > 1. { return get_miss_result(&context); -- cgit v1.2.3