From c817165482945c2208d2b7824c185c8181b2deb4 Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Sat, 8 May 2021 22:35:32 -0700 Subject: [PATCH] Fix patreon OOC name coloring --- Content.Client/Chat/ChatBox.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Client/Chat/ChatBox.cs b/Content.Client/Chat/ChatBox.cs index efa993993c..4662af80f7 100644 --- a/Content.Client/Chat/ChatBox.cs +++ b/Content.Client/Chat/ChatBox.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Linq; @@ -734,7 +734,7 @@ namespace Content.Client.Chat var formatted = new FormattedMessage(3); formatted.PushColor(color); - formatted.AddText(message); + formatted.AddMarkup(message); formatted.Pop(); Contents.AddMessage(formatted); }