diff options
| author | mat <git@matdoes.dev> | 2024-08-19 19:44:15 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2024-08-19 19:44:15 +0000 |
| commit | d5a281bf15a1aad07b0f108d86461eafffa590a0 (patch) | |
| tree | 33fcf458a276d89fd4cc9548d2478b657cf4e6e4 /azalea-physics/src | |
| parent | e485cf550183445e5f063c6da078c97e9b66497f (diff) | |
| download | azalea-drasl-d5a281bf15a1aad07b0f108d86461eafffa590a0.tar.xz | |
remove debug printlns
Diffstat (limited to 'azalea-physics/src')
| -rw-r--r-- | azalea-physics/src/clip.rs | 4 |
1 files changed, 0 insertions, 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<BlockHitResult> { 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<C, T>( }, }; - println!("percentage_step: {percentage_step:?}"); - println!("percentage: {percentage:?}"); - loop { if percentage.x > 1. && percentage.y > 1. && percentage.z > 1. { return get_miss_result(&context); |
