From 9a7e2ec5ff39f275ed5713b5a5e27e9225a50284 Mon Sep 17 00:00:00 2001 From: Leo Date: Tue, 9 Feb 2021 21:25:52 -0300 Subject: [PATCH] Toggling all chat options will correctly toggle Dead chat button (#3118) --- Content.Client/Chat/ChatManager.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Client/Chat/ChatManager.cs b/Content.Client/Chat/ChatManager.cs index 490bdd7a0c..a9b3a12640 100644 --- a/Content.Client/Chat/ChatManager.cs +++ b/Content.Client/Chat/ChatManager.cs @@ -355,6 +355,7 @@ namespace Content.Client.Chat chatBox.OOCButton.Pressed ^= true; if (chatBox.AdminButton != null) chatBox.AdminButton.Pressed ^= true; + chatBox.DeadButton.Pressed ^= true; _allState = !_allState; break; }