diff options
author | Adam <Adam@anope.org> | 2013-04-08 00:19:07 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-04-08 00:19:07 -0500 |
commit | 1a37e1c0480f8bd11f57dfba514069a4e9c7d8de (patch) | |
tree | 41798df9056ef555f00c4a6c0964f1219c357dc3 /modules/protocol/inspircd20.cpp | |
parent | fb7fef7a849342ab8463743497e781c5c3e6ae88 (diff) |
Made auto* chanserv privileges not hard coded.
Made cs_statusupdate not remove status on users if they still match other entries.
Move privilege descriptions out of the config
Diffstat (limited to 'modules/protocol/inspircd20.cpp')
-rw-r--r-- | modules/protocol/inspircd20.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/protocol/inspircd20.cpp b/modules/protocol/inspircd20.cpp index 0af696bf0..ac970ddf9 100644 --- a/modules/protocol/inspircd20.cpp +++ b/modules/protocol/inspircd20.cpp @@ -469,7 +469,11 @@ struct IRCDMessageCapab : Message::Capab ChannelModeStatus *cms = anope_dynamic_static_cast<ChannelModeStatus *>(cm); cms->level = level--; + + Log(LOG_DEBUG) << cms->name << " is now level " << cms->level; } + + ModeManager::RebuildStatusModes(); } } } |