Make events generally much more common (#27469)

Make events generally more common
This commit is contained in:
Kara
2024-04-28 23:38:14 -07:00
committed by GitHub
parent 571cff8cab
commit f59a4f2a86

View File

@@ -58,8 +58,7 @@ namespace Content.Server.StationEvents
/// </summary>
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);
}
}