From 518c52786763d370945ca929c24c0e043dba1c09 Mon Sep 17 00:00:00 2001 From: Fansana Date: Mon, 25 Nov 2024 01:43:46 +0100 Subject: [PATCH] fix shuttle calling --- 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);