1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 21:16:39 +02:00

Remove protectbotserv option from modes, just use options:botmodes instead

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2782 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Adam-
2010-02-06 19:27:10 +00:00
parent de99f89894
commit 87b62c433d
8 changed files with 20 additions and 18 deletions
+1 -3
View File
@@ -162,13 +162,11 @@ ChannelModeParam::~ChannelModeParam()
/** Default constructor
* @param mName The mode name
* @param mSymbol The symbol for the mode, eg @ % +
* @param mProtectBotServ Should botserv clients reset this on themself if it gets unset?
*/
ChannelModeStatus::ChannelModeStatus(ChannelModeName mName, char mSymbol, bool mProtectBotServ) : ChannelMode(mName)
ChannelModeStatus::ChannelModeStatus(ChannelModeName mName, char mSymbol) : ChannelMode(mName)
{
this->Type = MODE_STATUS;
this->Symbol = mSymbol;
this->ProtectBotServ = mProtectBotServ;
}
/** Default destructor