From 127997a8b4460ea7edf938bd4fc54b7c91598920 Mon Sep 17 00:00:00 2001 From: hivehum Date: Fri, 15 Nov 2024 01:03:26 -0500 Subject: [PATCH] Revert "Slow down crawling, slightly longer stand up time" --- Content.Shared/_Goobstation/Standing/LayingDownComponent.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Shared/_Goobstation/Standing/LayingDownComponent.cs b/Content.Shared/_Goobstation/Standing/LayingDownComponent.cs index 90be910f3a5ec9..ee10ec51ce586d 100644 --- a/Content.Shared/_Goobstation/Standing/LayingDownComponent.cs +++ b/Content.Shared/_Goobstation/Standing/LayingDownComponent.cs @@ -7,10 +7,10 @@ namespace Content.Shared._Goobstation.Standing; public sealed partial class LayingDownComponent : Component { [DataField, AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)] - public float StandingUpTime { get; set; } = 1.25f; + public float StandingUpTime { get; set; } = 1f; [DataField, AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)] - public float SpeedModify { get; set; } = .19f; + public float SpeedModify { get; set; } = .25f; [DataField, AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)] public bool AutoGetUp;