]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_cycle.cpp
Remove the -Dssize_t declaration now its typedeffed.
[user/henk/code/inspircd.git] / src / modules / m_cycle.cpp
index 8caa07b62d69682f00d20621313ab1bedafa02d9..4b3d3e83bc5bc88e69d9d0e186dba2331079a5da 100644 (file)
@@ -20,9 +20,9 @@
 class CommandCycle : public Command
 {
  public:
-       CommandCycle (InspIRCd* Instance, Module* Creator) : Command(Instance, Creator,"CYCLE", 0, 1, false, 3)
+       CommandCycle(Module* Creator) : Command(Creator,"CYCLE", 1)
        {
-               syntax = "<channel> :[reason]";
+               Penalty = 3; syntax = "<channel> :[reason]";
                TRANSLATE3(TR_TEXT, TR_TEXT, TR_END);
        }
 
@@ -61,7 +61,7 @@ class CommandCycle : public Command
                                if (!channel->PartUser(user, reason))
                                        delete channel;
 
-                               Channel::JoinUser(ServerInstance, user, parameters[0].c_str(), true, "", false, ServerInstance->Time());
+                               Channel::JoinUser(user, parameters[0].c_str(), true, "", false, ServerInstance->Time());
                        }
 
                        return CMD_SUCCESS;
@@ -80,8 +80,8 @@ class ModuleCycle : public Module
 {
        CommandCycle cmd;
  public:
-       ModuleCycle(InspIRCd* Me)
-               : Module(Me), cmd(Me, this)
+       ModuleCycle()
+               : cmd(this)
        {
                ServerInstance->AddCommand(&cmd);
        }
@@ -92,7 +92,7 @@ class ModuleCycle : public Module
 
        virtual Version GetVersion()
        {
-               return Version("$Id$", VF_VENDOR, API_VERSION);
+               return Version("Provides support for unreal-style CYCLE command.", VF_VENDOR, API_VERSION);
        }
 
 };