]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_clones.cpp
Always deny invite to users below halfop status, move OnUserPreInvite up to above...
[user/henk/code/inspircd.git] / src / modules / m_clones.cpp
index 02f0f3faece8587d1b39019852838c37e7db6e76..82bdf55500ffb46a23c116c17f50d21ad55c6b0d 100644 (file)
@@ -14,7 +14,7 @@
 #include "inspircd.h"
 #include "wildcard.h"
 
-/* $ModDesc: Provides the /clones command to retrieve information on a user, channel, or IP address */
+/* $ModDesc: Provides the /clones command to retrieve information on clones. */
 
 /** Handle /CHECK
  */
@@ -65,22 +65,22 @@ class ModuleClones : public Module
  public:
        ModuleClones(InspIRCd* Me) : Module(Me)
        {
-               
+
                mycommand = new CommandClones(ServerInstance);
                ServerInstance->AddCommand(mycommand);
 
        }
-       
+
        virtual ~ModuleClones()
        {
        }
-       
+
        virtual Version GetVersion()
        {
                return Version(1, 2, 0, 0, VF_VENDOR, API_VERSION);
        }
 
-       
+
 };
 
 MODULE_INIT(ModuleClones)