Merge pull request #1187 from SaberUK/master+431

Fix a minor oversight in ERR_NONICKNAMEGIVEN.
This commit is contained in:
Attila Molnar 2016-06-27 16:52:13 +02:00 committed by GitHub
commit aa2fa90c57

View File

@ -47,7 +47,7 @@ CmdResult CommandNick::HandleLocal(const std::vector<std::string>& parameters, L
if (newnick.empty())
{
user->WriteNumeric(ERR_NONICKNAMEGIVEN, '*', "No nickname given");
user->WriteNumeric(ERR_NONICKNAMEGIVEN, "No nickname given");
return CMD_FAILURE;
}