]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setidle.cpp
Update m_cloaking to use free-form keys instead of weakening the hash IV
[user/henk/code/inspircd.git] / src / modules / m_setidle.cpp
index 17570d989d1a71cf8f99484f369137b380dd5aa1..4751d99c121b65fea206279b2dba2912e2d677b1 100644 (file)
@@ -20,9 +20,9 @@
 class CommandSetidle : public Command
 {
  public:
-       CommandSetidle (InspIRCd* Instance, Module* Creator) : Command(Instance, Creator,"SETIDLE", "o", 1)
+       CommandSetidle(Module* Creator) : Command(Creator,"SETIDLE", 1)
        {
-               syntax = "<duration>";
+               flags_needed = 'o'; syntax = "<duration>";
                TRANSLATE2(TR_TEXT, TR_END);
        }
 
@@ -50,8 +50,8 @@ class ModuleSetIdle : public Module
 {
        CommandSetidle cmd;
  public:
-       ModuleSetIdle(InspIRCd* Me)
-               : Module(Me), cmd(Me, this)
+       ModuleSetIdle()
+               : cmd(this)
        {
                ServerInstance->AddCommand(&cmd);
        }
@@ -62,7 +62,7 @@ class ModuleSetIdle : public Module
 
        virtual Version GetVersion()
        {
-               return Version("$Id$", VF_VENDOR, API_VERSION);
+               return Version("Allows opers to set their idle time", VF_VENDOR, API_VERSION);
        }
 };