diff options
Diffstat (limited to 'src/modes.cpp')
-rw-r--r-- | src/modes.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/modes.cpp b/src/modes.cpp index 466d7900c..0c259ea7c 100644 --- a/src/modes.cpp +++ b/src/modes.cpp @@ -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 |