]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_saquit.cpp
Fix access checks on chanprotect preventing use of SAMODE
[user/henk/code/inspircd.git] / src / modules / m_saquit.cpp
index cbd7dfc77847311bc45ee4747b7468a2e4c5ba4b..ee49b37ef984d1e375d2296bb65ef54ec461c875 100644 (file)
@@ -20,9 +20,9 @@
 class CommandSaquit : public Command
 {
  public:
-       CommandSaquit (InspIRCd* Instance, Module* Creator) : Command(Instance, Creator, "SAQUIT", "o", 2, 2, false, 0)
+       CommandSaquit(Module* Creator) : Command(Creator, "SAQUIT", 2, 2)
        {
-               syntax = "<nick> <reason>";
+               flags_needed = 'o'; Penalty = 0; syntax = "<nick> <reason>";
                TRANSLATE3(TR_NICK, TR_TEXT, TR_END);
        }
 
@@ -67,7 +67,7 @@ class ModuleSaquit : public Module
        CommandSaquit cmd;
  public:
        ModuleSaquit(InspIRCd* Me)
-               : Module(Me), cmd(Me, this)
+               : Module(Me), cmd(this)
        {
                ServerInstance->AddCommand(&cmd);
        }