From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Tue, 17 Sep 2024 16:05:38 +0000 (+0300) Subject: fix Tech anomaly loud sounds and superfast flickering (#32245) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=dce537df071f899f8419e512bd38991ee2a39771;p=space-station-14.git fix Tech anomaly loud sounds and superfast flickering (#32245) Update TechAnomalySystem.cs --- diff --git a/Content.Server/Anomaly/Effects/TechAnomalySystem.cs b/Content.Server/Anomaly/Effects/TechAnomalySystem.cs index 1b2849f1d7..3e4d101f4f 100644 --- a/Content.Server/Anomaly/Effects/TechAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/TechAnomalySystem.cs @@ -37,7 +37,7 @@ public sealed class TechAnomalySystem : EntitySystem if (_timing.CurTime < tech.NextTimer) continue; - tech.NextTimer += TimeSpan.FromSeconds(tech.TimerFrequency * anom.Stability); + tech.NextTimer += TimeSpan.FromSeconds(tech.TimerFrequency); _signal.InvokePort(uid, tech.TimerPort); }