From: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Date: Mon, 6 Feb 2023 12:49:15 +0000 (-0600) Subject: Make default/autocall shuttle time 10 minutes (#13956) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=d99be0cd8fb7918622e943a92b45ccca870d53db;p=space-station-14.git Make default/autocall shuttle time 10 minutes (#13956) --- diff --git a/Content.Server/RoundEnd/RoundEndSystem.cs b/Content.Server/RoundEnd/RoundEndSystem.cs index e8605d91f4..bba3fbdd3c 100644 --- a/Content.Server/RoundEnd/RoundEndSystem.cs +++ b/Content.Server/RoundEnd/RoundEndSystem.cs @@ -40,7 +40,7 @@ namespace Content.Server.RoundEnd /// /// Countdown to use where there is no station alert countdown to be found. /// - public TimeSpan DefaultCountdownDuration { get; set; } = TimeSpan.FromMinutes(4); + public TimeSpan DefaultCountdownDuration { get; set; } = TimeSpan.FromMinutes(10); public TimeSpan DefaultRestartRoundDuration { get; set; } = TimeSpan.FromMinutes(2); private CancellationTokenSource? _countdownTokenSource = null;