diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-07-21 16:31:45 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-07-21 16:31:45 +0000 |
commit | e97cce71bbc3f4ce46a01fd3e32375a7ef8611d7 (patch) | |
tree | 5e9e113fcf1157102bf4b4f4abe152ac2b41edd8 | |
parent | 644ed25d8d87874b55aef6b8e700e9e79017ec18 (diff) |
Add extban +b c: - blocks colour from matching users, same as chmode +c
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10059 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules/m_blockcolor.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/modules/m_blockcolor.cpp b/src/modules/m_blockcolor.cpp index 3943e436d..1663b981e 100644 --- a/src/modules/m_blockcolor.cpp +++ b/src/modules/m_blockcolor.cpp @@ -34,11 +34,14 @@ class ModuleBlockColour : public Module bc = new BlockColor(ServerInstance); if (!ServerInstance->Modes->AddMode(bc)) throw ModuleException("Could not add new modes!"); - Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice }; - ServerInstance->Modules->Attach(eventlist, this, 2); + Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice, I_On005Numeric }; + ServerInstance->Modules->Attach(eventlist, this, 3); } - + virtual void On005Numeric(std::string &output) + { + ServerInstance->AddExtBanChar('c'); + } virtual int OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list) { @@ -51,7 +54,7 @@ class ModuleBlockColour : public Module return 0; } - if(c->IsModeSet('c')) + if(c->IsModeSet('c') || c->IsExtBanned(user, 'c')) { for (std::string::iterator i = text.begin(); i != text.end(); i++) { |