Revert BasicEventScheduler timer change

This commit is contained in:
null 2024-05-07 03:46:45 +02:00
parent ca9465cb8c
commit 2da98edb69
No known key found for this signature in database
GPG Key ID: 212F05528FD678BE
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ namespace Content.Server.StationEvents
/// </summary>
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
}
}