Fix console hotkey (#11994)

This commit is contained in:
Dylan Corrales
2022-10-30 03:18:40 -04:00
committed by GitHub
parent 2b8d29f8d3
commit 5c1bd5baff

View File

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