]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_chghost.cpp
Convert WriteNumeric() calls to pass the parameters of the numeric as method parameters
[user/henk/code/inspircd.git] / src / modules / m_chghost.cpp
index 43b2a323ba4fb84478d2e8c65de77a11f6052852..163f1f2ebf45abc60cea315a1ad32e2d751d9c91 100644 (file)
@@ -59,7 +59,7 @@ class CommandChghost : public Command
                // Allow services to change the host of unregistered users
                if ((!dest) || ((dest->registered != REG_ALL) && (!user->server->IsULine())))
                {
-                       user->WriteNumeric(ERR_NOSUCHNICK, "%s :No such nick/channel", parameters[0].c_str());
+                       user->WriteNumeric(Numerics::NoSuchNick(parameters[0]));
                        return CMD_FAILURE;
                }