From c1567f93f3a0bad3f8ef984bf980666cb31dfd87 Mon Sep 17 00:00:00 2001 From: lempamo Date: Mon, 6 Mar 2017 09:31:07 -0500 Subject: extremely minor chaange --- ShiftOS.WinForms/Applications/Chat.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ShiftOS.WinForms/Applications/Chat.cs') 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>(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) { -- cgit v1.2.3