From 9a09f558ee65d9b351acb0ed9c6c649876a7b697 Mon Sep 17 00:00:00 2001 From: Scott Williams Date: Fri, 11 Jun 2021 17:25:05 +0100 Subject: [PATCH] Reduced humanoid hitbox --- common/src/comp/body.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/comp/body.rs b/common/src/comp/body.rs index d697942e04..81d7ac8bd1 100644 --- a/common/src/comp/body.rs +++ b/common/src/comp/body.rs @@ -339,7 +339,7 @@ impl Body { (humanoid::Species::Danari, humanoid::BodyType::Male) => 1.5, (humanoid::Species::Danari, humanoid::BodyType::Female) => 1.4, }; - Vec3::new(1.5, 0.5, height) + Vec3::new(1.2, 0.5, height) }, Body::Object(object) => object.dimensions(), Body::QuadrupedMedium(body) => match body.species {