Add setting for setting private msg command

So that the /tell command can be changed into eg /msg.
Suggested by _initsuj
This commit is contained in:
ORelio 2016-01-27 00:23:25 +01:00
parent 14b8895716
commit ba41268aca
2 changed files with 4 additions and 1 deletions

View file

@ -492,7 +492,7 @@ namespace MinecraftClient
protected void SendPrivateMessage(string player, string message)
{
SendText("/tell " + player + ' ' + message);
SendText(String.Format("/{0} {1} {2}", Settings.PrivateMsgsCmdName, player, message));
}
/// <summary>