Change postround to 2 minutes (#13417)

This commit is contained in:
Chief-Engineer
2023-01-11 17:36:27 -06:00
committed by GitHub
parent 526c2210e6
commit 7898c0714b

View File

@@ -41,7 +41,7 @@ namespace Content.Server.RoundEnd
/// Countdown to use where there is no station alert countdown to be found.
/// </summary>
public TimeSpan DefaultCountdownDuration { get; set; } = TimeSpan.FromMinutes(4);
public TimeSpan DefaultRestartRoundDuration { get; set; } = TimeSpan.FromMinutes(1);
public TimeSpan DefaultRestartRoundDuration { get; set; } = TimeSpan.FromMinutes(2);
private CancellationTokenSource? _countdownTokenSource = null;
private CancellationTokenSource? _cooldownTokenSource = null;