X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_blockcolor.cpp;h=d193170741e2f5e6db0ce9898827c763a59b8c3a;hb=8fa7e20b6b47d4de617e1bba2773606df569f11d;hp=ce8325e454702f53bad4e241dd1009e69ffddc88;hpb=9336468f5bfa60318cb57db5126047147b7a21cb;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_blockcolor.cpp b/src/modules/m_blockcolor.cpp index ce8325e45..d19317074 100644 --- a/src/modules/m_blockcolor.cpp +++ b/src/modules/m_blockcolor.cpp @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2009 InspIRCd Development Team + * InspIRCd: (C) 2002-2010 InspIRCd Development Team * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see @@ -20,7 +20,7 @@ class BlockColor : public SimpleChannelModeHandler { public: - BlockColor(Module* Creator) : SimpleChannelModeHandler(Creator, 'c') { } + BlockColor(Module* Creator) : SimpleChannelModeHandler(Creator, "blockcolor", 'c') { } }; class ModuleBlockColour : public Module @@ -47,11 +47,10 @@ class ModuleBlockColour : public Module if ((target_type == TYPE_CHANNEL) && (IS_LOCAL(user))) { Channel* c = (Channel*)dest; + ModResult res = ServerInstance->OnCheckExemption(user,c,"blockcolor"); - if (CHANOPS_EXEMPT('c') && c->GetPrefixValue(user) == OP_VALUE) - { + if (res == MOD_RES_ALLOW) return MOD_RES_PASSTHRU; - } if (!c->GetExtBanStatus(user, 'c').check(!c->IsModeSet('c'))) { @@ -86,7 +85,7 @@ class ModuleBlockColour : public Module virtual Version GetVersion() { - return Version("Provides support for unreal-style channel mode +c",VF_COMMON|VF_VENDOR,API_VERSION); + return Version("Provides support for unreal-style channel mode +c",VF_VENDOR); } };