Fixed /login error message.

This commit is contained in:
CoderCow 2013-06-29 14:00:52 +02:00
parent 251456c800
commit 8a7bdf6697

View file

@ -407,7 +407,7 @@ namespace TShockAPI
} }
else else
{ {
args.Player.SendErrorMessage(String.Format("Syntax: /login{0} <password>", TShock.Config.AllowLoginAnyUsername ? " " : " [username]")); args.Player.SendErrorMessage(String.Format("Syntax: /login{0} <password>", TShock.Config.AllowLoginAnyUsername ? " [username]" : " "));
args.Player.SendErrorMessage("If you forgot your password, there is no way to recover it."); args.Player.SendErrorMessage("If you forgot your password, there is no way to recover it.");
return; return;
} }