aboutsummaryrefslogtreecommitdiff
path: root/PortEngine/ChatAPI.cs
diff options
context:
space:
mode:
Diffstat (limited to 'PortEngine/ChatAPI.cs')
-rw-r--r--PortEngine/ChatAPI.cs2
1 files changed, 1 insertions, 1 deletions
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("<Player> " + txtPending.Text + Environment.NewLine);
+ txtDestination.AppendText("<" + Properties.Settings.Default.userDisplayName + "> " + txtPending.Text + Environment.NewLine);
txtPending.Clear();
}
}