From 4b34319e5c0ea4ab111467291dedde559e0369b7 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Tue, 26 Jul 2022 23:58:39 +1000 Subject: [PATCH] Increase pulling modified speed (#10049) --- Content.Shared/Pulling/Components/SharedPullerComponent.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Pulling/Components/SharedPullerComponent.cs b/Content.Shared/Pulling/Components/SharedPullerComponent.cs index f79c6a4f1e..7e65326816 100644 --- a/Content.Shared/Pulling/Components/SharedPullerComponent.cs +++ b/Content.Shared/Pulling/Components/SharedPullerComponent.cs @@ -5,9 +5,9 @@ public sealed class SharedPullerComponent : Component { // Before changing how this is updated, please see SharedPullerSystem.RefreshMovementSpeed - public float WalkSpeedModifier => Pulling == default ? 1.0f : 0.75f; + public float WalkSpeedModifier => Pulling == default ? 1.0f : 0.9f; - public float SprintSpeedModifier => Pulling == default ? 1.0f : 0.75f; + public float SprintSpeedModifier => Pulling == default ? 1.0f : 0.9f; [ViewVariables] public EntityUid? Pulling { get; set; }