X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_blockcaps.cpp;h=830b05ae96ace029d2982c81038e20eaad637706;hb=bcac49dca78631687975771c6d0a76b595171664;hp=ee57efafeb00d2fff5ce47d29c304abee9c0f761;hpb=1afe959c7574b479e4a49a62885d2ac2757025ab;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_blockcaps.cpp b/src/modules/m_blockcaps.cpp index ee57efafe..830b05ae9 100644 --- a/src/modules/m_blockcaps.cpp +++ b/src/modules/m_blockcaps.cpp @@ -24,7 +24,8 @@ /* $ModDesc: Provides support for channel mode +P to block all-CAPS channel messages and notices */ - +/** Handles the +P channel mode + */ class BlockCaps : public ModeHandler { public: @@ -71,7 +72,7 @@ public: List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1; } - virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text, char status) + virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list) { if (target_type == TYPE_CHANNEL) { @@ -94,20 +95,21 @@ public: } return 0; } - - virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text, char status) + + virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list) { - return OnUserPreMessage(user,dest,target_type,text,status); + return OnUserPreMessage(user,dest,target_type,text,status,exempt_list); } - + virtual ~ModuleBlockCAPS() { + ServerInstance->Modes->DelMode(bc); DELETE(bc); } - + virtual Version GetVersion() { - return Version(1,0,0,0,VF_STATIC|VF_VENDOR); + return Version(1,1,0,0,VF_COMMON|VF_VENDOR,API_VERSION); } };