]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_globops.cpp
fix little typo in syntax hint, type => action
[user/henk/code/inspircd.git] / src / modules / m_globops.cpp
index 81aef9f5745f27c723d03acf47fa65b817f7e04e..cf48dfa4fed20024cc1815b43f30a2bf3aedb5d4 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
  * See: http://www.inspircd.org/wiki/index.php/Credits
  *
  * This program is free but copyrighted software; see
@@ -22,7 +22,7 @@
 class CommandGlobops : public Command
 {
  public:
-       CommandGlobops (InspIRCd* Instance) : Command(Instance,"GLOBOPS","o",1)
+       CommandGlobops (InspIRCd* Instance) : Command(Instance,"GLOBOPS","o",1,1)
        {
                this->source = "m_globops.so";
                syntax = "<any-text>";
@@ -55,15 +55,15 @@ class ModuleGlobops : public Module
                ServerInstance->SNO->EnableSnomask('g',"GLOBOPS");
 
        }
-       
+
        virtual ~ModuleGlobops()
        {
                ServerInstance->SNO->DisableSnomask('g');
        }
-       
+
        virtual Version GetVersion()
        {
-               return Version(1, 2, 0, 1, VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("$Id$", VF_COMMON | VF_VENDOR, API_VERSION);
        }
 
 };