X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_remove.cpp;h=b87b5d2c129c519d1bcd6e817bd7edbd2da0b25a;hb=2db77cda56947d4ee0f913c8082f6607855ca713;hp=868599948160ffb8a26406d97c6ef8b2c87b195f;hpb=dd36852a52e8541306b76c5b88bce8ab9b36654c;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_remove.cpp b/src/modules/m_remove.cpp index 868599948..b87b5d2c1 100644 --- a/src/modules/m_remove.cpp +++ b/src/modules/m_remove.cpp @@ -99,7 +99,7 @@ class RemoveBase /* Fix by brain - someone needs to learn to validate their input! */ if (!target || !channel) { - user->WriteServ("401 %s %s :No such nick/channel", user->nick, !target ? username : channame); + user->WriteNumeric(401, "%s %s :No such nick/channel", user->nick, !target ? username : channame); return CMD_FAILURE; } @@ -274,7 +274,7 @@ class ModuleRemove : public Module virtual Version GetVersion() { - return Version(1, 1, 1, 0, VF_COMMON | VF_VENDOR, API_VERSION); + return Version(1, 2, 1, 0, VF_COMMON | VF_VENDOR, API_VERSION); } };