From: Dawid Bla <46636558+DawBla@users.noreply.github.com> Date: Sat, 29 Apr 2023 21:50:31 +0000 (+0200) Subject: Fix 0.25sec doafters (#15918) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=0d74c2d8f68a657264a93322da6f74681c74a428;p=space-station-14.git Fix 0.25sec doafters (#15918) --- diff --git a/Content.Server/Power/Components/CableComponent.cs b/Content.Server/Power/Components/CableComponent.cs index 08a0df8467..970ef46468 100644 --- a/Content.Server/Power/Components/CableComponent.cs +++ b/Content.Server/Power/Components/CableComponent.cs @@ -26,7 +26,7 @@ namespace Content.Server.Power.Components public CableType CableType = CableType.HighVoltage; [DataField("cuttingDelay")] - public float CuttingDelay = 0.25f; + public float CuttingDelay = 1f; } public enum CableType diff --git a/Content.Server/Tools/Components/LatticeCuttingComponent.cs b/Content.Server/Tools/Components/LatticeCuttingComponent.cs index bbc782a5f1..589b3cf52e 100644 --- a/Content.Server/Tools/Components/LatticeCuttingComponent.cs +++ b/Content.Server/Tools/Components/LatticeCuttingComponent.cs @@ -1,4 +1,4 @@ -using Content.Shared.Tools; +using Content.Shared.Tools; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Tools.Components; @@ -10,7 +10,7 @@ public sealed class LatticeCuttingComponent : Component public string QualityNeeded = "Cutting"; [DataField("delay")] - public float Delay = 0.25f; + public float Delay = 1f; [DataField("vacuumDelay")] public float VacuumDelay = 1.75f;