From f59a4f2a869ae0568727b62e1815262ee8fd82dd Mon Sep 17 00:00:00 2001 From: Kara Date: Sun, 28 Apr 2024 23:38:14 -0700 Subject: [PATCH] Make events generally much more common (#27469) Make events generally more common --- .../StationEvents/BasicStationEventSchedulerSystem.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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); } } -- 2.52.0