]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_seenicks.cpp
Remove InspIRCd* parameters and fields
[user/henk/code/inspircd.git] / src / modules / m_seenicks.cpp
index 2aeb05726c59aa239743e5dae8d47c811bcdfaf2..ca30cfef6b7aedc4ee4d107057511394588833aa 100644 (file)
@@ -3,7 +3,7 @@
  *       +------------------------------------+
  *
  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
@@ -18,9 +18,8 @@
 class ModuleSeeNicks : public Module
 {
  public:
-       ModuleSeeNicks(InspIRCd* Me)
-               : Module(Me)
-       {
+       ModuleSeeNicks()
+                       {
                ServerInstance->SNO->EnableSnomask('n',"NICK");
                ServerInstance->SNO->EnableSnomask('N',"REMOTENICK");
                Implementation eventlist[] = { I_OnUserPostNick };
@@ -35,7 +34,7 @@ class ModuleSeeNicks : public Module
 
        virtual Version GetVersion()
        {
-               return Version("$Id$", VF_VENDOR, API_VERSION);
+               return Version("Provides support for seeing local and remote nickchanges via snomasks", VF_VENDOR, API_VERSION);
        }