]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
fix Tech anomaly loud sounds and superfast flickering (#32245)
authorEd <96445749+TheShuEd@users.noreply.github.com>
Tue, 17 Sep 2024 16:05:38 +0000 (19:05 +0300)
committerGitHub <noreply@github.com>
Tue, 17 Sep 2024 16:05:38 +0000 (12:05 -0400)
Update TechAnomalySystem.cs

Content.Server/Anomaly/Effects/TechAnomalySystem.cs

index 1b2849f1d77ee294eba2c532e2960b8856300af0..3e4d101f4fdf8fce09ead10538c520d0aa58be53 100644 (file)
@@ -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);
         }