diff --git a/server/src/events/entity_manipulation.rs b/server/src/events/entity_manipulation.rs index 2062cbe826..bc4ed8c6ba 100644 --- a/server/src/events/entity_manipulation.rs +++ b/server/src/events/entity_manipulation.rs @@ -436,8 +436,8 @@ pub fn handle_destroy(server: &mut Server, entity: EcsEntity, cause: HealthSourc .create_object(comp::Pos(pos.0 + Vec3::unit_z() * 0.25), match old_body { Some(common::comp::Body::Humanoid(_)) => object::Body::Pouch, Some(common::comp::Body::Golem(_)) => object::Body::Chest, - Some(common::comp::Body::BipedLarge(_)) => object::Body::MeatDrop, - Some(common::comp::Body::QuadrupedLow(_)) => object::Body::MeatDrop, + Some(common::comp::Body::BipedLarge(_)) + | Some(common::comp::Body::QuadrupedLow(_)) => object::Body::MeatDrop, _ => object::Body::Steak, }) .with(item)