]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Make events generally much more common (#27469)
authorKara <lunarautomaton6@gmail.com>
Mon, 29 Apr 2024 06:38:14 +0000 (23:38 -0700)
committerGitHub <noreply@github.com>
Mon, 29 Apr 2024 06:38:14 +0000 (23:38 -0700)
Make events generally more common

Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs

index e7e0957239f884d57d30731469b8212d9583e693..efa9cc096dd5821826e9c96c46361856f16da00b 100644 (file)
@@ -58,8 +58,7 @@ namespace Content.Server.StationEvents
         /// </summary>
         private void ResetTimer(BasicStationEventSchedulerComponent component)
         {
-            // 5 - 25 minutes. TG does 3-10 but that's pretty frequent
-            component.TimeUntilNextEvent = _random.Next(300, 1500);
+            component.TimeUntilNextEvent = _random.Next(3 * 60, 10 * 60);
         }
     }