X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_banexception.cpp;h=e704b0223c54101ff7e11e5f1ff81b3b240e15c7;hb=3a7dd5b129450b94e0a87b8ad5009da70905b8e5;hp=5f2f6f92a68f44b74c53e748c6f28dd67bc5a2e6;hpb=3382adb9e9a79748b4db09bb41a296861800fa2d;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_banexception.cpp b/src/modules/m_banexception.cpp index 5f2f6f92a..e704b0223 100644 --- a/src/modules/m_banexception.cpp +++ b/src/modules/m_banexception.cpp @@ -19,7 +19,8 @@ // and if a user matches an entry on the +e list then they can join the channel, overriding any (+b) bans set on them - +/** Handles +e channel mode + */ class BanException : public ListModeBase { public: @@ -93,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); } };