From 47e964a882e7fe8b99e18bcfa4741dd7b27f5ff1 Mon Sep 17 00:00:00 2001 From: zumorica Date: Fri, 17 Apr 2020 19:38:18 +0200 Subject: [PATCH] Deadchat now has color --- Content.Client/Chat/ChatManager.cs | 3 +++ 1 file changed, 3 insertions(+) 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);