]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setidle.cpp
Remove the intercomm system since sqlite is synchronous.
[user/henk/code/inspircd.git] / src / modules / m_setidle.cpp
index 68df49a335b0e6be8b35ba527290776e8b7713b1..df58f65620ad06c49fec2e89392d503014714d73 100644 (file)
@@ -50,8 +50,8 @@ class ModuleSetIdle : public Module
 {
        CommandSetidle cmd;
  public:
-       ModuleSetIdle(InspIRCd* Me)
-               : Module(Me), cmd(this)
+       ModuleSetIdle()
+               : cmd(this)
        {
                ServerInstance->AddCommand(&cmd);
        }
@@ -62,7 +62,7 @@ class ModuleSetIdle : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Allows opers to set their idle time", VF_VENDOR, API_VERSION);
+               return Version("Allows opers to set their idle time", VF_VENDOR);
        }
 };