diff options
author | Adam <Adam@anope.org> | 2014-08-03 18:57:00 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2014-08-03 18:57:00 -0400 |
commit | d6d72cd803b2c5bf38e152dc6d00dd6dda720951 (patch) | |
tree | df0ada6e6404e0d834ab5bf6945912cb7cb0de61 /modules/commands/cs_mode.cpp | |
parent | 063d9bf5f689fd9dc24394c267dfdce7b6a345e6 (diff) |
Add cs_mode:max config option
Diffstat (limited to 'modules/commands/cs_mode.cpp')
-rw-r--r-- | modules/commands/cs_mode.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/commands/cs_mode.cpp b/modules/commands/cs_mode.cpp index 2943c64a3..7f22d1e26 100644 --- a/modules/commands/cs_mode.cpp +++ b/modules/commands/cs_mode.cpp @@ -327,6 +327,8 @@ class CommandCSMode : public Command source.Reply(_("Missing parameter for mode %c."), cm->mchar); else if (cm->type == MODE_LIST && ci->c && IRCD->GetMaxListFor(ci->c) && ci->c->HasMode(cm->name) >= IRCD->GetMaxListFor(ci->c)) source.Reply(_("List for mode %c is full."), cm->mchar); + else if (modelocks->GetMLock().size() >= Config->GetModule(this->owner)->Get<unsigned>("max", "32")) + source.Reply(_("The mode lock list of \002%s\002 is full."), ci->name.c_str()); else { modelocks->SetMLock(cm, adding, mode_param, source.GetNick()); |