]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_chgname.cpp
Fix access checks on chanprotect preventing use of SAMODE
[user/henk/code/inspircd.git] / src / modules / m_chgname.cpp
index 0f9302a76c052afaf8610eea819df5e679d77276..11e7f4c9c767d31a4cf9d95c9d3082c5b5ee90f4 100644 (file)
@@ -20,9 +20,9 @@
 class CommandChgname : public Command
 {
  public:
-       CommandChgname (InspIRCd* Instance, Module* Creator) : Command(Instance, Creator,"CHGNAME", "o", 2, 2)
+       CommandChgname(Module* Creator) : Command(Creator,"CHGNAME", 2, 2)
        {
-               syntax = "<nick> <newname>";
+               flags_needed = 'o'; syntax = "<nick> <newname>";
                TRANSLATE3(TR_NICK, TR_TEXT, TR_END);
        }
 
@@ -72,7 +72,7 @@ class ModuleChgName : public Module
        CommandChgname cmd;
 
 public:
-       ModuleChgName(InspIRCd* Me) : Module(Me), cmd(Me, this)
+       ModuleChgName(InspIRCd* Me) : Module(Me), cmd(this)
        {
                ServerInstance->AddCommand(&cmd);
        }