]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setname.cpp
Fix cloaking not ignoring the case of a user's hostname.
[user/henk/code/inspircd.git] / src / modules / m_setname.cpp
index 5c27a655e7ecffdb80ee5d9d333b7423f41d6896..846938c8dcabe75f26a520ccb12480c198f27e0f 100644 (file)
@@ -30,7 +30,7 @@ class CommandSetname : public Command
        CommandSetname(Module* Creator) : Command(Creator,"SETNAME", 1, 1)
        {
                allow_empty_last_param = false;
-               syntax = "<new real name>";
+               syntax = ":<realname>";
        }
 
        CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
@@ -76,7 +76,7 @@ class ModuleSetName : public Module
 
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Provides support for the SETNAME command", VF_VENDOR);
+               return Version("Provides the SETNAME command", VF_VENDOR);
        }
 };