]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_saquit.cpp
Remove spanningtree override of /LUSERS
[user/henk/code/inspircd.git] / src / modules / m_saquit.cpp
index 4d67a2cd1efcfd7ef8a562ab8d485e562dfe1c72..d31da8a6b4402f7d84a02744b89a52d97ef2f951 100644 (file)
@@ -66,8 +66,8 @@ class ModuleSaquit : public Module
 {
        CommandSaquit cmd;
  public:
-       ModuleSaquit(InspIRCd* Me)
-               : Module(Me), cmd(this)
+       ModuleSaquit()
+               : cmd(this)
        {
                ServerInstance->AddCommand(&cmd);
        }
@@ -78,7 +78,7 @@ class ModuleSaquit : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for an SAQUIT command, exits user with a reason", VF_OPTCOMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for an SAQUIT command, exits user with a reason", VF_OPTCOMMON | VF_VENDOR);
        }
 
 };