]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_noctcp.cpp
Fix a regression from fcb51634669e6ed588e42f2072c6f910e267126f ("fix uid collision...
[user/henk/code/inspircd.git] / src / modules / m_noctcp.cpp
index 3eb0bfd8175f2ec8c2975c3cdfc78c0fefd25d47..2f2b3d01170021fd706dbe1b764f72e1a7387b1c 100644 (file)
@@ -2,8 +2,8 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
@@ -58,7 +58,7 @@ class ModuleNoCTCP : public Module
                if (!ServerInstance->Modes->AddMode(nc))
                        throw ModuleException("Could not add new modes!");
                Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice, I_On005Numeric };
-               ServerInstance->Modules->Attach(eventlist, this, 2);
+               ServerInstance->Modules->Attach(eventlist, this, 3);
        }
 
        virtual ~ModuleNoCTCP()
@@ -69,7 +69,7 @@ class ModuleNoCTCP : public Module
 
        virtual Version GetVersion()
        {
-               return Version(1,2,0,0,VF_COMMON|VF_VENDOR,API_VERSION);
+               return Version("$Id$", VF_COMMON | VF_VENDOR, API_VERSION);
        }
 
        virtual int OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
@@ -88,7 +88,7 @@ class ModuleNoCTCP : public Module
                                return 0;
                        }
 
-                       if (c->IsModeSet('C') || c->IsExtBanned(user, 'C'))
+                       if (c->IsModeSet('C') || c->GetExtBanStatus(user, 'C') < 0)
                        {
                                if ((text.length()) && (text[0] == '\1'))
                                {