From 00da24a7490124ec84b4e1384fc8c38a674ad3c2 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sun, 23 Oct 2022 11:00:39 +1300 Subject: [PATCH] Fix chat issue (#12034) --- Content.Client/UserInterface/Systems/Chat/ChatUIController.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs b/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs index 624cf152cf..65be3202c3 100644 --- a/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs +++ b/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs @@ -291,7 +291,8 @@ public sealed class ChatUIController : UIController return; } - var messages = SplitMessage(FormattedMessage.RemoveMarkup(msg.Message)); + // msg.Message should be the string that a user sent over text, without any added markup. + var messages = SplitMessage(msg.Message); foreach (var message in messages) {