diff options
Diffstat (limited to 'src/core/ms_send.c')
-rw-r--r-- | src/core/ms_send.c | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/src/core/ms_send.c b/src/core/ms_send.c index fcc0bdf0b..9c9db1c7a 100644 --- a/src/core/ms_send.c +++ b/src/core/ms_send.c @@ -15,8 +15,6 @@ #include "module.h" -void myMemoServHelp(User *u); - class CommandMSSend : public Command { public: @@ -54,17 +52,11 @@ class MSSend : public Module this->SetVersion("$Id$"); this->SetType(CORE); this->AddCommand(MEMOSERV, new CommandMSSend(), MOD_UNIQUE); - this->SetMemoHelp(myMemoServHelp); + } + void MemoServHelp(User *u) + { + notice_lang(s_MemoServ, u, MEMO_HELP_CMD_SEND); } }; -/** - * Add the help response to anopes /ms help output. - * @param u The user who is requesting help - **/ -void myMemoServHelp(User *u) -{ - notice_lang(s_MemoServ, u, MEMO_HELP_CMD_SEND); -} - MODULE_INIT("ms_send", MSSend) |