From: w00t Date: Sun, 13 Jan 2008 00:40:23 +0000 (+0000) Subject: I think (and Brain concurs) that B for blockcaps and P for permanent make a lot more... X-Git-Tag: v2.0.23~4044 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=fad966254b519fc69d3bcd833f8b7b18b75f57b2;p=user%2Fhenk%2Fcode%2Finspircd.git I think (and Brain concurs) that B for blockcaps and P for permanent make a lot more sense, so 1.2 blockcaps gets mode B. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8701 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/modules/m_blockcaps.cpp b/src/modules/m_blockcaps.cpp index 1992c5841..878ff30d3 100644 --- a/src/modules/m_blockcaps.cpp +++ b/src/modules/m_blockcaps.cpp @@ -13,7 +13,7 @@ #include "inspircd.h" -/* $ModDesc: Provides support for channel mode +P to block all-CAPS channel messages and notices */ +/* $ModDesc: Provides support to block all-CAPS channel messages and notices */ /** Handles the +P channel mode @@ -21,23 +21,23 @@ class BlockCaps : public ModeHandler { public: - BlockCaps(InspIRCd* Instance) : ModeHandler(Instance, 'P', 0, 0, false, MODETYPE_CHANNEL, false) { } + BlockCaps(InspIRCd* Instance) : ModeHandler(Instance, 'B', 0, 0, false, MODETYPE_CHANNEL, false) { } ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding) { if (adding) { - if (!channel->IsModeSet('P')) + if (!channel->IsModeSet('B')) { - channel->SetMode('P',true); + channel->SetMode('B',true); return MODEACTION_ALLOW; } } else { - if (channel->IsModeSet('P')) + if (channel->IsModeSet('B')) { - channel->SetMode('P',false); + channel->SetMode('B',false); return MODEACTION_ALLOW; } } @@ -82,7 +82,7 @@ public: Channel* c = (Channel*)dest; - if (c->IsModeSet('P')) + if (c->IsModeSet('B')) { int caps = 0; for (std::string::iterator i = text.begin(); i != text.end(); i++)