From ee343916c292c741041167a1a77f4b59a95002c5 Mon Sep 17 00:00:00 2001 From: TheEdgeNK Date: Sun, 26 Aug 2018 14:15:03 -0400 Subject: Ability to change chatter username, also, terminal! --- PortEngine/ChatAPI.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'PortEngine/ChatAPI.cs') diff --git a/PortEngine/ChatAPI.cs b/PortEngine/ChatAPI.cs index 667a016..ae1f27b 100644 --- a/PortEngine/ChatAPI.cs +++ b/PortEngine/ChatAPI.cs @@ -12,7 +12,7 @@ namespace PortEngine { public static void SendMessage(TextBox txtPending, TextBox txtDestination) { - txtDestination.AppendText(" " + txtPending.Text + Environment.NewLine); + txtDestination.AppendText("<" + Properties.Settings.Default.userDisplayName + "> " + txtPending.Text + Environment.NewLine); txtPending.Clear(); } } -- cgit v1.2.3