diff --git a/Content.Client/Chat/ChatManager.cs b/Content.Client/Chat/ChatManager.cs index 2264931496..1cf96367a6 100644 --- a/Content.Client/Chat/ChatManager.cs +++ b/Content.Client/Chat/ChatManager.cs @@ -302,7 +302,8 @@ namespace Content.Client.Chat case "ALL": chatBox.LocalButton.Pressed ^= true; chatBox.OOCButton.Pressed ^= true; - chatBox.AdminButton.Pressed ^= true; + if (chatBox.AdminButton != null) + chatBox.AdminButton.Pressed ^= true; _allState = !_allState; break; }