aboutsummaryrefslogtreecommitdiff
path: root/PortEngine/ChatAPI.cs
diff options
context:
space:
mode:
authorTheEdgeNK <trey6979@gmail.com>2018-08-26 14:15:03 -0400
committerTheEdgeNK <trey6979@gmail.com>2018-08-26 14:15:03 -0400
commitee343916c292c741041167a1a77f4b59a95002c5 (patch)
tree1ad04a230aadc311041d78cc3a54e5f1c93a03d2 /PortEngine/ChatAPI.cs
parent4800d7686b470b3a39314e76ea02daee790078b7 (diff)
downloadProject-Silicon-ee343916c292c741041167a1a77f4b59a95002c5.tar.gz
Project-Silicon-ee343916c292c741041167a1a77f4b59a95002c5.tar.bz2
Project-Silicon-ee343916c292c741041167a1a77f4b59a95002c5.zip
Ability to change chatter username, also, terminal!
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();
}
}