aboutsummaryrefslogtreecommitdiff
path: root/azalea-core/src/cursor3d.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-core/src/cursor3d.rs')
-rw-r--r--azalea-core/src/cursor3d.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/azalea-core/src/cursor3d.rs b/azalea-core/src/cursor3d.rs
index fa265c8a..180301e3 100644
--- a/azalea-core/src/cursor3d.rs
+++ b/azalea-core/src/cursor3d.rs
@@ -72,10 +72,6 @@ impl Cursor3d {
end_y: i32,
end_z: i32,
) -> Self {
- println!(
- "making cursor3d with origin: {}, {}, {} and end: {}, {}, {}",
- origin_x, origin_y, origin_z, end_x, end_y, end_z
- );
let width = (end_x - origin_x + 1)
.try_into()
.expect("Impossible width.");