]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Add extban +b B: - matching users may not use caps, same as chmode +B (or +P in 1.1)
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>
Mon, 21 Jul 2008 16:29:47 +0000 (16:29 +0000)
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>
Mon, 21 Jul 2008 16:29:47 +0000 (16:29 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10058 e03df62e-2008-0410-955e-edbf42e46eb7

src/modules/m_blockcaps.cpp
src/modules/m_nonicks.cpp

index 31542befda534203dc354c2a2a4662d041c9d7a2..aa91b6bcdfd8a5b8998895f78730472b1dfc8652 100644 (file)
@@ -41,10 +41,14 @@ public:
                        delete bc;
                        throw ModuleException("Could not add new modes!");
                }
-               Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice, I_OnRehash };
-               ServerInstance->Modules->Attach(eventlist, this, 3);
+               Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice, I_OnRehash, I_On005Numeric };
+               ServerInstance->Modules->Attach(eventlist, this, 4);
        }
 
+       virtual void On005Numeric(std::string &output)
+       {
+               ServerInstance->AddExtBanChar('B');
+       }
 
        virtual void OnRehash(User* user, const std::string &param)
        {
@@ -65,7 +69,7 @@ public:
                                return 0;
                        }
 
-                       if (c->IsModeSet('B'))
+                       if (c->IsModeSet('B') || c->IsExtBanned(user, 'B'))
                        {
                                int caps = 0;
                                const char* actstr = "\1ACTION ";
index f29cbf04ad876ef6f17a6904981d53f17fae4075..9a1d0079e5ba3deca4c511b50d4714246d4b22ce 100644 (file)
@@ -85,16 +85,10 @@ class ModuleNoNickChange : public Module
                {
                        Channel* curr = i->first;
 
-                       if (curr->IsModeSet('N'))
-                       {
-                               if (CHANOPS_EXEMPT(ServerInstance, 'N') && curr->GetStatus(user) == STATUS_OP)
-                                       continue;
-
-                               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;
-                       }
+                       if (CHANOPS_EXEMPT(ServerInstance, 'N') && curr->GetStatus(user) == STATUS_OP)
+                               continue;
 
-                       if (curr->IsExtBanned(user, 'N'))
+                       if (curr->IsModeSet('N') || curr->IsExtBanned(user, 'N'))
                        {
                                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;