From 46c6a05b8079076cf9a49549dadac1fb9f728e4f Mon Sep 17 00:00:00 2001 From: manio143 Date: Wed, 13 May 2015 19:43:46 +0200 Subject: [PATCH] TellCommand message format changed. --- TrueCraft/Commands/TellCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TrueCraft/Commands/TellCommand.cs b/TrueCraft/Commands/TellCommand.cs index 985840d..b67653b 100644 --- a/TrueCraft/Commands/TellCommand.cs +++ b/TrueCraft/Commands/TellCommand.cs @@ -50,7 +50,7 @@ namespace TrueCraft.Commands return; } - receivingPlayer.SendMessage(ChatColor.Gray + client.Username + " whispers to you: " + message); + receivingPlayer.SendMessage(ChatColor.Gray + "<"+ client.Username + " -> You> " + message); } protected static IRemoteClient GetPlayerByName(IRemoteClient client, string username)