From 10dff35304ad4a10177bd1a71e57c6600da5e3d3 Mon Sep 17 00:00:00 2001 From: sleepyyapril Date: Sat, 9 Nov 2024 11:31:50 -0400 Subject: [PATCH] Fix call shuttle --- Content.Server/Communications/CommunicationsConsoleSystem.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Content.Server/Communications/CommunicationsConsoleSystem.cs b/Content.Server/Communications/CommunicationsConsoleSystem.cs index 0fcac27c197..0cdcb3a47f8 100644 --- a/Content.Server/Communications/CommunicationsConsoleSystem.cs +++ b/Content.Server/Communications/CommunicationsConsoleSystem.cs @@ -205,6 +205,10 @@ private bool CanCallOrRecall(CommunicationsConsoleComponent comp) || !comp.CanShuttle) return false; + // Calling shuttle checks + if (_roundEndSystem.ExpectedCountdownEnd is null) + return comp.CanShuttle; + // Recalling shuttle checks var recallThreshold = _cfg.GetCVar(CCVars.EmergencyRecallTurningPoint);