summaryrefslogtreecommitdiff
path: root/modules/core/cs_set.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2010-11-15 23:07:13 -0500
committerAdam <Adam@anope.org>2010-12-12 19:33:59 -0500
commita85112172d842aa74aa5531788d383328d153e74 (patch)
tree7c2b02feb21f64b0b039992b92b86a09920a1eb5 /modules/core/cs_set.cpp
parent5f18cb018dee9ff71efbfdd247a8dc4ca472b16b (diff)
Removed and deprecated /cs set mlock, removed /cs clear, removed /os clearmodes, removed /cs akick (un)stick, added /cs clearusers
Diffstat (limited to 'modules/core/cs_set.cpp')
-rw-r--r--modules/core/cs_set.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/core/cs_set.cpp b/modules/core/cs_set.cpp
index fe37e7ea6..04721cab8 100644
--- a/modules/core/cs_set.cpp
+++ b/modules/core/cs_set.cpp
@@ -41,6 +41,13 @@ class CommandCSSet : public Command
return MOD_CONT;
}
+ // XXX Remove after 1.9.4 release
+ if (params[1].equals_ci("MLOCK"))
+ {
+ u->SendMessage(ChanServ, CHAN_SET_MLOCK_DEPRECATED);
+ return MOD_CONT;
+ }
+
Command *c = this->FindCommand(params[1]);
if (c)