diff --git a/server/src/events/inventory_manip.rs b/server/src/events/inventory_manip.rs index 789ea9b56e..e61cb503e1 100644 --- a/server/src/events/inventory_manip.rs +++ b/server/src/events/inventory_manip.rs @@ -559,7 +559,7 @@ fn within_pickup_range>( ) -> bool { entity_cylinder .and_then(|entity_cylinder| { - shape_fn().map(|shape| dbg!(shape.min_distance(entity_cylinder)) < MAX_PICKUP_RANGE) + shape_fn().map(|shape| shape.min_distance(entity_cylinder) < MAX_PICKUP_RANGE) }) .unwrap_or(false) }