]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_nonicks.cpp
We were already sending FMODE +nt after each channel creation to keep services happy...
[user/henk/code/inspircd.git] / src / modules / m_nonicks.cpp
index ef93867df3e321a8d3ab59d31ea98b46ded5f292..e7f23e145fc27cb24e2b39530668dd38093dea53 100644 (file)
  * ---------------------------------------------------
  */
 
+#include "inspircd.h"
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
 #include "hashcomp.h"
 #include "configreader.h"
-#include "inspircd.h"
 
 /* $ModDesc: Provides support for channel mode +N which prevents nick changes on channel */
 
@@ -53,7 +53,7 @@ class ModuleNoNickChange : public Module
        NoNicks* nn;
  public:
        ModuleNoNickChange(InspIRCd* Me)
-               : Module::Module(Me)
+               : Module(Me)
        {
                
                nn = new NoNicks(ServerInstance);
@@ -86,13 +86,15 @@ class ModuleNoNickChange : public Module
 
                                if (curr->IsModeSet('N'))
                                {
-                                       // don't allow the nickchange, theyre on at least one channel with +N set
-                                       // and theyre not an oper
+                                       if (CHANOPS_EXEMPT(ServerInstance, 'N') && curr->GetStatus(user) == STATUS_OP)
+                                               continue;
+
                                        user->WriteServ("447 %s :Can't change nickname while on %s (+N is set)", user->nick, curr->name);
                                        return 1;
                                }
                        }
                }
+
                return 0;
        }
 };
@@ -118,7 +120,7 @@ class ModuleNoNickChangeFactory : public ModuleFactory
 };
 
 
-extern "C" void * init_module( void )
+extern "C" DllExport void * init_module( void )
 {
        return new ModuleNoNickChangeFactory;
 }