From: Kara Date: Mon, 29 Apr 2024 06:38:14 +0000 (-0700) Subject: Make events generally much more common (#27469) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=f59a4f2a869ae0568727b62e1815262ee8fd82dd;p=space-station-14.git Make events generally much more common (#27469) Make events generally more common --- diff --git a/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs b/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs index e7e0957239..efa9cc096d 100644 --- a/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs +++ b/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs @@ -58,8 +58,7 @@ namespace Content.Server.StationEvents /// 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); } }