diff options
author | Adam <Adam@anope.org> | 2014-04-02 22:37:35 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2014-04-02 22:37:35 -0400 |
commit | fb5c5e3442994985af92122803db7b65ed9a4097 (patch) | |
tree | d51c0e4a68297cf26bf432e02014537e54f8284b /modules/protocol/ngircd.cpp | |
parent | e357c3977463a8f510a66867a2b3dce851aa7665 (diff) |
Set minus no arg on +l in all proto mods
Set oper modes/vhost on oper too, evan after iding
Add umode +q to plexus
Diffstat (limited to 'modules/protocol/ngircd.cpp')
-rw-r--r-- | modules/protocol/ngircd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/ngircd.cpp b/modules/protocol/ngircd.cpp index b0b2bb522..81ba28a6a 100644 --- a/modules/protocol/ngircd.cpp +++ b/modules/protocol/ngircd.cpp @@ -650,7 +650,7 @@ class ProtongIRCd : public Module /* Add channel modes */ ModeManager::AddChannelMode(new ChannelMode("INVITE", 'i')); ModeManager::AddChannelMode(new ChannelModeKey('k')); - ModeManager::AddChannelMode(new ChannelModeParam("LIMIT", 'l')); + ModeManager::AddChannelMode(new ChannelModeParam("LIMIT", 'l', true)); ModeManager::AddChannelMode(new ChannelMode("MODERATED", 'm')); ModeManager::AddChannelMode(new ChannelMode("REGMODERATED", 'M')); ModeManager::AddChannelMode(new ChannelMode("NOEXTERNAL", 'n')); |