diff options
author | miwob <wobst.michael@web.de> | 2020-08-01 14:34:46 +0200 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-08-01 13:39:35 +0100 |
commit | 584a209b285638c1dcc790bba7c2732cb27f0346 (patch) | |
tree | 4a4b03cd16524fd313983eb12ad68bda33b3f224 /modules/protocol/hybrid.cpp | |
parent | c327d1aeefb372cff4dce26e482a8f087f871b71 (diff) |
ircd-hybrid protocol module: add support for channel mode 'K' (no knock)
Diffstat (limited to 'modules/protocol/hybrid.cpp')
-rw-r--r-- | modules/protocol/hybrid.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/protocol/hybrid.cpp b/modules/protocol/hybrid.cpp index fa68d0656..0081125d3 100644 --- a/modules/protocol/hybrid.cpp +++ b/modules/protocol/hybrid.cpp @@ -687,6 +687,7 @@ class ProtoHybrid : public Module ModeManager::AddChannelMode(new ChannelMode("TOPIC", 't')); ModeManager::AddChannelMode(new ChannelMode("HIDEBMASKS", 'u')); ModeManager::AddChannelMode(new ChannelMode("NOCTCP", 'C')); + ModeManager::AddChannelMode(new ChannelMode("NOKNOCK", 'K')); ModeManager::AddChannelMode(new ChannelModeOperOnly("LBAN", 'L')); ModeManager::AddChannelMode(new ChannelMode("REGMODERATED", 'M')); ModeManager::AddChannelMode(new ChannelModeOperOnly("OPERONLY", 'O')); |