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

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

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