blob: d74ac86e7aea481e0fc20d217e093696d3eb7852 (
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_i.h"
ModeChannelInviteOnly::ModeChannelInviteOnly() : ModeHandler('i', 0, 0, false, MODETYPE_CHANNEL, false)
{
}
ModeAction ModeChannelInviteOnly::OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding)
{
if (channel->modes[CM_INVITEONLY] != adding)
{
channel->modes[CM_INVITEONLY] = adding;
return MODEACTION_ALLOW;
}
else
{
return MODEACTION_DENY;
}
}
|