From e97cce71bbc3f4ce46a01fd3e32375a7ef8611d7 Mon Sep 17 00:00:00 2001 From: w00t Date: Mon, 21 Jul 2008 16:31:45 +0000 Subject: 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 --- src/modules/m_blockcolor.cpp | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'src') 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++) { -- cgit v1.2.3