aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2024-08-19 19:44:15 +0000
committermat <git@matdoes.dev>2024-08-19 19:44:15 +0000
commitd5a281bf15a1aad07b0f108d86461eafffa590a0 (patch)
tree33fcf458a276d89fd4cc9548d2478b657cf4e6e4
parente485cf550183445e5f063c6da078c97e9b66497f (diff)
downloadazalea-drasl-d5a281bf15a1aad07b0f108d86461eafffa590a0.tar.xz
remove debug printlns
-rw-r--r--azalea-physics/src/clip.rs4
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);