]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_banexception.cpp
Add const std::string &original_command to OnPreCommand and OnPostCommand, which...
[user/henk/code/inspircd.git] / src / modules / m_banexception.cpp
index 4d817f43bfcdcdd8d94ea901f1326dcc89eeded1..e704b0223c54101ff7e11e5f1ff81b3b240e15c7 100644 (file)
@@ -5,7 +5,7 @@
 #include "channels.h"
 #include "modules.h"
 #include "mode.h"
-#include "helperfuncs.h"
+
 #include "inspircd.h"
 #include "u_listmode.h"
 
@@ -18,8 +18,9 @@
 // The +e channel mode takes a nick!ident@host, glob patterns allowed,
 // and if a user matches an entry on the +e list then they can join the channel, overriding any (+b) bans set on them
 
-extern InspIRCd* ServerInstance;
 
+/** Handles +e channel mode
+ */
 class BanException : public ListModeBase
 {
  public:
@@ -49,7 +50,6 @@ public:
        virtual void On005Numeric(std::string &output)
        {
                output.append(" EXCEPTS=e");
-               ServerInstance->ModeGrok->InsertMode(output, "e", 1);
        }
 
        virtual int OnCheckBan(userrec* user, chanrec* chan)
@@ -94,11 +94,12 @@ public:
        
        virtual Version GetVersion()
        {
-               return Version(1, 0, 0, 3, VF_STATIC | VF_VENDOR);
+               return Version(1, 0, 0, 3, VF_COMMON | VF_VENDOR);
        }
        
        virtual ~ModuleBanException()
        {
+               ServerInstance->Modes->DelMode(be);
                DELETE(be);     
        }
 };