From cb2f5d650b26a10972e8e5f4c137c7673ad541e5 Mon Sep 17 00:00:00 2001 From: Dominion Date: Tue, 28 Mar 2023 03:12:36 -0400 Subject: [PATCH] Fix rogue missing comma --- src/Tgstation.Server.Host/Components/Chat/ChatManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Components/Chat/ChatManager.cs b/src/Tgstation.Server.Host/Components/Chat/ChatManager.cs index 8d4c551a41..019e188cfa 100644 --- a/src/Tgstation.Server.Host/Components/Chat/ChatManager.cs +++ b/src/Tgstation.Server.Host/Components/Chat/ChatManager.cs @@ -356,7 +356,7 @@ namespace Tgstation.Server.Host.Components.Chat QueueMessage( new MessageContent { - Text = message + Text = message, }, wdChannels); }