diff --git a/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs b/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs index d683451e6b..11ae43b5b3 100644 --- a/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs +++ b/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs @@ -57,7 +57,7 @@ namespace Content.Server.StationEvents /// private void ResetTimer(BasicStationEventSchedulerComponent component) { - component.TimeUntilNextEvent = _random.Next(3 * 60, 10 * 60); + component.TimeUntilNextEvent = _random.Next(5 * 60, 25 * 60); // DeltaV - Was between 3 and 10 minutes } }