blob: 800f9f6cb0e093aa9e1e9b9516cf3517f6f4259e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include "inspircd.h"
#include "mode.h"
#include "channels.h"
#include "users.h"
#include "modes/cmode_s.h"
ModeChannelSecret::ModeChannelSecret(InspIRCd* Instance) : ModeHandler(Instance, 's', 0, 0, false, MODETYPE_CHANNEL, false)
{
}
ModeAction ModeChannelSecret::OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding)
{
if (channel->modes[CM_SECRET] != adding)
{
channel->modes[CM_SECRET] = adding;
return MODEACTION_ALLOW;
}
else
{
return MODEACTION_DENY;
}
}
|