From f9c48cc42d2bc729fd4cfa3f18732565a9f991c5 Mon Sep 17 00:00:00 2001 From: Moony Date: Mon, 5 Sep 2022 20:40:31 -0500 Subject: [PATCH] Make events less frequent. (#11053) --- .../StationEvents/BasicStationEventSchedulerSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } ///