Merge pull request #1016 from JordyMoos/servercommand-message

Serverpassword syntax error gave wrong command
This commit is contained in:
White 2015-07-16 21:00:12 +09:30
commit 78b5376e52

View file

@ -3600,7 +3600,7 @@ namespace TShockAPI
{
if (args.Parameters.Count != 1)
{
args.Player.SendErrorMessage("Invalid syntax! Proper syntax: {0}password \"<new password>\"", Specifier);
args.Player.SendErrorMessage("Invalid syntax! Proper syntax: {0}serverpassword \"<new password>\"", Specifier);
return;
}
string passwd = args.Parameters[0];