summaryrefslogtreecommitdiff
path: root/src/modes/cmode_s.cpp
blob: 6a27dddfd08ae72c7544af893ebcdd7d80099b59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "inspircd.h"
#include "mode.h"
#include "channels.h"
#include "users.h"
#include "modes/cmode_s.h"

ModeChannelSecret::ModeChannelSecret() : ModeHandler('s', 0, 0, 0, MODETYPE_CHANNEL, false)
{
}

ModeAction ModeChannelSecret::OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding)
{
	channel->modes[CM_SECRET] = adding;
	return MODEACTION_ALLOW;
}