From c1567f93f3a0bad3f8ef984bf980666cb31dfd87 Mon Sep 17 00:00:00 2001 From: lempamo <smartypantslf@gmail.com> Date: Mon, 6 Mar 2017 09:31:07 -0500 Subject: [PATCH] extremely minor chaange --- ShiftOS.WinForms/Applications/Chat.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ShiftOS.WinForms/Applications/Chat.cs b/ShiftOS.WinForms/Applications/Chat.cs index 7f3fc04..06a7873 100644 --- a/ShiftOS.WinForms/Applications/Chat.cs +++ b/ShiftOS.WinForms/Applications/Chat.cs @@ -55,7 +55,7 @@ namespace ShiftOS.WinForms.Applications var args = JsonConvert.DeserializeObject<Dictionary<string, string>>(msg.Contents); var cmsg = new ShiftOS.Objects.ChatMessage(args["Username"] as string, args["SystemName"] as string, args["Message"] as string, args["Channel"] as string); if (id == cmsg.Channel) - rtbchat.AppendText($"[{cmsg.Username}@{cmsg.SystemName}] {cmsg.Message}{Environment.NewLine}"); + rtbchat.AppendText($"[{cmsg.Username}@{cmsg.SystemName}]: {cmsg.Message}{Environment.NewLine}"); } catch (Exception ex) {