aboutsummaryrefslogtreecommitdiff
path: root/azalea-world
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-world
parent99fcad7bc4133c32627fe2e4751faad05b9b4ef1 (diff)
downloadazalea-drasl-4f00ddace08bd5ad17500a405f55554dff343be7.tar.xz
remove some debug stuff and fix recipe packet
Diffstat (limited to 'azalea-world')
-rw-r--r--azalea-world/src/lib.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/azalea-world/src/lib.rs b/azalea-world/src/lib.rs
index 2d65ebc8..4f51d655 100644
--- a/azalea-world/src/lib.rs
+++ b/azalea-world/src/lib.rs
@@ -70,7 +70,6 @@ impl Dimension {
}
pub fn set_entity_pos(&mut self, entity_id: u32, new_pos: Vec3) -> Result<(), MoveEntityError> {
- println!("set_entity_pos({}, {:?})", entity_id, new_pos);
let mut entity = self
.entity_mut(entity_id)
.ok_or(MoveEntityError::EntityDoesNotExist)?;