summaryrefslogtreecommitdiff
path: root/modules/core/ms_sendall.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/core/ms_sendall.cpp')
-rw-r--r--modules/core/ms_sendall.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/modules/core/ms_sendall.cpp b/modules/core/ms_sendall.cpp
index 1d2a703c3..b6517b31d 100644
--- a/modules/core/ms_sendall.cpp
+++ b/modules/core/ms_sendall.cpp
@@ -18,6 +18,7 @@ class CommandMSSendAll : public Command
public:
CommandMSSendAll() : Command("SENDALL", 1, 1, "memoserv/sendall")
{
+ this->SetDesc("Send a memo to all registered users");
}
CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> &params)
@@ -56,11 +57,6 @@ class CommandMSSendAll : public Command
{
SyntaxError(source, "SENDALL", _("SENDALL \037memo-text\037"));
}
-
- void OnServHelp(CommandSource &source)
- {
- source.Reply(_(" SENDALL Send a memo to all registered users"));
- }
};
class MSSendAll : public Module