Toggling all chat options will correctly toggle Dead chat button (#3118)

This commit is contained in:
Leo
2021-02-09 21:25:52 -03:00
committed by GitHub
parent 294b7c4d7f
commit 9a7e2ec5ff

View File

@@ -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;
}