]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_nonicks.cpp
Clean up challenge generation to not include character 0x7F, and fix some other thing...
[user/henk/code/inspircd.git] / src / modules / m_nonicks.cpp
index 14957759c6b4c8f5be6ce0a4fbb87ff52bc03164..08baef5dfcb6ad4edd7fe02eff208df036924278 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.
@@ -92,7 +92,7 @@ class ModuleNoNickChange : public Module
                        if (CHANOPS_EXEMPT(ServerInstance, 'N') && curr->GetStatus(user) == STATUS_OP)
                                continue;
 
-                       if (curr->IsModeSet('N') || curr->IsExtBanned(user, 'N'))
+                       if (curr->IsModeSet('N') || curr->GetExtBanStatus(user, 'N') < 0)
                        {
                                user->WriteNumeric(ERR_CANTCHANGENICK, "%s :Can't change nickname while on %s (+N is set)", user->nick.c_str(), curr->name.c_str());
                                return 1;