diff --git a/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs b/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs index 36d30f50ee..70335c29bc 100644 --- a/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs +++ b/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs @@ -57,8 +57,8 @@ public override void Update(float frameTime) /// private void ResetTimer(BasicStationEventSchedulerComponent component) { - // 5 - 25 minutes. TG does 3-10 but that's pretty frequent - component.TimeUntilNextEvent = _random.Next(300, 1500); + // 15-35 minutes + component.TimeUntilNextEvent = _random.Next(900, 2100); // Parkstation-SlowEvents } } diff --git a/Content.Server/StationEvents/RampingStationEventSchedulerSystem.cs b/Content.Server/StationEvents/RampingStationEventSchedulerSystem.cs index 5c972df52e..db50196d20 100644 --- a/Content.Server/StationEvents/RampingStationEventSchedulerSystem.cs +++ b/Content.Server/StationEvents/RampingStationEventSchedulerSystem.cs @@ -90,7 +90,7 @@ private void PickNextEventTime(EntityUid uid, RampingStationEventSchedulerCompon { var mod = GetChaosModifier(uid, component); - // 4-12 minutes baseline. Will get faster over time as the chaos mod increases. - component.TimeUntilNextEvent = _random.NextFloat(240f / mod, 720f / mod); + // 20-45 minutes baseline. Will get faster over time as the chaos mod increases. + component.TimeUntilNextEvent = _random.NextFloat(1200f / mod, 2700f / mod); // Parkstation-SlowEvents } } diff --git a/Resources/ConfigPresets/SimpleStation14/Parkstation.toml b/Resources/ConfigPresets/SimpleStation14/Parkstation.toml index 4e3a243e72..f6fbe5a9b4 100644 --- a/Resources/ConfigPresets/SimpleStation14/Parkstation.toml +++ b/Resources/ConfigPresets/SimpleStation14/Parkstation.toml @@ -29,9 +29,9 @@ id = "parkstation" [rules] time = 120 -# [events] -# ramping_average_end_time = 120.0 -# ramping_average_chaos = 7.0 +[events] +ramping_average_end_time = 120.0 +ramping_average_chaos = 7.0 [traitor] min_players = 2