From 5c1bd5bafff4113bb2b7167f41ad2363971763bc Mon Sep 17 00:00:00 2001 From: Dylan Corrales Date: Sun, 30 Oct 2022 03:18:40 -0400 Subject: [PATCH] Fix console hotkey (#11994) --- Content.Client/UserInterface/Systems/Chat/ChatUIController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs b/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs index 65be3202c3..d37f179b0c 100644 --- a/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs +++ b/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs @@ -437,7 +437,7 @@ public sealed class ChatUIController : UIController CanSendChannels |= ChatSelectChannel.Admin; } - SelectableChannels = CanSendChannels & ~ChatSelectChannel.Console; + SelectableChannels = CanSendChannels; // Necessary so that we always have a channel to fall back to. DebugTools.Assert((CanSendChannels & ChatSelectChannel.OOC) != 0, "OOC must always be available");