diff options
Diffstat (limited to 'modules/core/cs_set_signkick.cpp')
-rw-r--r-- | modules/core/cs_set_signkick.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/modules/core/cs_set_signkick.cpp b/modules/core/cs_set_signkick.cpp index a3b0e0ea3..6ddd292b9 100644 --- a/modules/core/cs_set_signkick.cpp +++ b/modules/core/cs_set_signkick.cpp @@ -18,6 +18,7 @@ class CommandCSSetSignKick : public Command public: CommandCSSetSignKick(const Anope::string &cpermission = "") : Command("SIGNKICK", 2, 2, cpermission) { + this->SetDesc("Sign kicks that are done with KICK command"); } CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) @@ -71,11 +72,6 @@ class CommandCSSetSignKick : public Command { SyntaxError(source, "SET SIGNKICK", _("SET \037channel\037 SIGNKICK {ON | LEVEL | OFF}")); } - - void OnServHelp(CommandSource &source) - { - source.Reply(_(" SIGNKICK Sign kicks that are done with KICK command")); - } }; class CommandCSSASetSignKick : public CommandCSSetSignKick |