diff --git a/Content.Client/Chat/ChatManager.cs b/Content.Client/Chat/ChatManager.cs index dd8f437142..8a0fcdeabd 100644 --- a/Content.Client/Chat/ChatManager.cs +++ b/Content.Client/Chat/ChatManager.cs @@ -184,6 +184,9 @@ namespace Content.Client.Chat case ChatChannel.OOC: color = Color.LightSkyBlue; break; + case ChatChannel.Dead: + color = Color.MediumPurple; + break; } _currentChatBox?.AddLine(messageText, message.Channel, color);