aboutsummaryrefslogtreecommitdiff
path: root/azalea-core/src/cursor3d.rs
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-09-04 23:01:15 -0500
committermat <github@matdoes.dev>2022-09-04 23:01:15 -0500
commit4f00ddace08bd5ad17500a405f55554dff343be7 (patch)
tree8a8503fe4b9d0055b73952d2fb7f38941000f9d0 /azalea-core/src/cursor3d.rs
parent99fcad7bc4133c32627fe2e4751faad05b9b4ef1 (diff)
downloadazalea-drasl-4f00ddace08bd5ad17500a405f55554dff343be7.tar.xz
remove some debug stuff and fix recipe packet
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.");