diff --git a/Content.Shared/_NF/Clothing/Systems/EmitsSoundOnMoveSystem.cs b/Content.Shared/_NF/Clothing/Systems/EmitsSoundOnMoveSystem.cs index d6ca71121b0..c8e04e4d937 100644 --- a/Content.Shared/_NF/Clothing/Systems/EmitsSoundOnMoveSystem.cs +++ b/Content.Shared/_NF/Clothing/Systems/EmitsSoundOnMoveSystem.cs @@ -60,8 +60,8 @@ private void UpdateSound(EntityUid uid, EmitsSoundOnMoveComponent component) // If this entity is worn by another entity, use that entity's coordinates var coordinates = isWorn ? Transform(parent).Coordinates : xform.Coordinates; var distanceNeeded = (isWorn && _moverQuery.TryGetComponent(parent, out var mover) && mover.Sprinting) - ? 2f // The parent is a mob that is currently sprinting - : 1.5f; // The parent is not a mob or is not sprinting + ? 1.5f // The parent is a mob that is currently sprinting + : 2f; // The parent is not a mob or is not sprinting if (!coordinates.TryDistance(EntityManager, component.LastPosition, out var distance) || distance > distanceNeeded) component.SoundDistance = distanceNeeded;