]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setident.cpp
Remove m_halfop from list in compat linking mode
[user/henk/code/inspircd.git] / src / modules / m_setident.cpp
index 3b6f6682b6dec011ab5b41bc6a8d4455aacc03a0..8f0dd4dc021a804f2359e23e3fa1d36f7a2f648a 100644 (file)
@@ -59,7 +59,7 @@ class ModuleSetIdent : public Module
        CommandSetident cmd;
 
  public:
-       ModuleSetIdent(InspIRCd* Me) : Module(Me), cmd(this)
+       ModuleSetIdent() : cmd(this)
        {
                ServerInstance->AddCommand(&cmd);
        }
@@ -70,7 +70,7 @@ class ModuleSetIdent : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for the SETIDENT command", VF_VENDOR, API_VERSION);
+               return Version("Provides support for the SETIDENT command", VF_VENDOR);
        }
 
 };