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");