diff --git a/Content.Client/Communications/UI/CommunicationsConsoleBoundUserInterface.cs b/Content.Client/Communications/UI/CommunicationsConsoleBoundUserInterface.cs index 1a372bdba1f..89dcd788151 100644 --- a/Content.Client/Communications/UI/CommunicationsConsoleBoundUserInterface.cs +++ b/Content.Client/Communications/UI/CommunicationsConsoleBoundUserInterface.cs @@ -28,7 +28,6 @@ namespace Content.Client.Communications.UI _menu.OnBroadcast += BroadcastButtonPressed; _menu.OnAlertLevel += AlertLevelSelected; _menu.OnEmergencyLevel += EmergencyShuttleButtonPressed; - _menu.OnExfiltrationLevel += ExfiltrationShuttleButtonPressed; // DeltaV - Exfiltration shuttle } public void AlertLevelSelected(string level) @@ -48,13 +47,6 @@ namespace Content.Client.Communications.UI CallShuttle(); } - // Begin DeltaV - Exfiltration Shuttle - public void ExfiltrationShuttleButtonPressed() - { - SendMessage(new CommunicationsConsoleExfiltrationShuttleMessage(!_menu!.CountdownStarted)); - } - // End DeltaV - Exfiltration Shuttle - public void AnnounceButtonPressed(string message) { var maxLength = _cfg.GetCVar(CCVars.ChatMaxAnnouncementLength); @@ -94,13 +86,6 @@ namespace Content.Client.Communications.UI _menu.CurrentLevel = commsState.CurrentAlert; _menu.CountdownEnd = commsState.ExpectedCountdownEnd; - - // Begin DeltaV - Exfiltration Shuttle - _menu.CanExfiltrate = commsState.CanCall; - _menu.ExfiltrationCountdownEnd = commsState.ExpectedExfiltrationCountdownEnd; - _menu.ExfiltrationShuttleButton.Disabled = !_menu.CanExfiltrate; - // End DeltaV - Exfiltration Shuttle - _menu.UpdateCountdown(); _menu.UpdateAlertLevels(commsState.AlertLevels, _menu.CurrentLevel); _menu.AlertLevelButton.Disabled = !_menu.AlertLevelSelectable; diff --git a/Content.Client/Communications/UI/CommunicationsConsoleMenu.xaml b/Content.Client/Communications/UI/CommunicationsConsoleMenu.xaml index 9132f3f5029..b74df979cf4 100644 --- a/Content.Client/Communications/UI/CommunicationsConsoleMenu.xaml +++ b/Content.Client/Communications/UI/CommunicationsConsoleMenu.xaml @@ -52,19 +52,10 @@ - - -