summaryrefslogtreecommitdiff
path: root/src/core/cs_logout.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/cs_logout.c')
-rw-r--r--src/core/cs_logout.c16
1 files changed, 4 insertions, 12 deletions
diff --git a/src/core/cs_logout.c b/src/core/cs_logout.c
index 81a27c451..ba7c8b8e4 100644
--- a/src/core/cs_logout.c
+++ b/src/core/cs_logout.c
@@ -15,16 +15,6 @@
#include "module.h"
-/**
- * Add the help response to anopes /cs help output.
- * @param u The user who is requesting help
- **/
-void myChanServHelp(User * u)
-{
- notice_lang(s_ChanServ, u, CHAN_HELP_CMD_LOGOUT);
-}
-
-
class CommandCSLogout : public Command
{
private:
@@ -132,8 +122,10 @@ class CSLogout : public Module
this->SetVersion("$Id$");
this->SetType(CORE);
this->AddCommand(CHANSERV, new CommandCSLogout(), MOD_UNIQUE);
-
- this->SetChanHelp(myChanServHelp);
+ }
+ void ChanServHelp(User *u)
+ {
+ notice_lang(s_ChanServ, u, CHAN_HELP_CMD_LOGOUT);
}
};