diff --git a/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs b/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs index a498579de9..a6b64af00d 100644 --- a/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs +++ b/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs @@ -117,8 +117,8 @@ namespace Content.Server.StationEvents /// private void ResetTimer() { - // 5 - 15 minutes. TG does 3-10 but that's pretty frequent - _timeUntilNextEvent = _random.Next(300, 900); + // 5 - 25 minutes. TG does 3-10 but that's pretty frequent + _timeUntilNextEvent = _random.Next(300, 1500); } ///