X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_sanick.cpp;h=11dc50ddcd69da3ed463f9183f8471ac5041e5e7;hb=e59cb85871f75b7603c63c6cd274d57536cf6794;hp=e814e2c4e48cc6cdc5a8139103a86c69c1e31caa;hpb=1041cb9329027ea2b3855836e2bb68ab7411730f;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_sanick.cpp b/src/modules/m_sanick.cpp index e814e2c4e..11dc50ddc 100644 --- a/src/modules/m_sanick.cpp +++ b/src/modules/m_sanick.cpp @@ -54,7 +54,7 @@ class CommandSanick : public Command if (!ServerInstance->IsNick(parameters[1])) { - user->WriteNotice("*** Invalid nickname '" + parameters[1] + "'"); + user->WriteNotice("*** Invalid nickname: '" + parameters[1] + "'"); return CMD_FAILURE; } } @@ -95,7 +95,7 @@ class ModuleSanick : public Module Version GetVersion() CXX11_OVERRIDE { - return Version("Provides support for SANICK command", VF_OPTCOMMON | VF_VENDOR); + return Version("Provides the SANICK command, allows opers to change the nicknames of users", VF_OPTCOMMON | VF_VENDOR); } };