1
0
mirror of https://github.com/anope/anope.git synced 2026-06-29 14:56:37 +02:00

Moved myChanHelp so it'll compile ;)

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1960 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
robbeh
2009-02-09 22:17:43 +00:00
parent 3fe6a25236
commit d684f3c556
+10 -8
View File
@@ -15,6 +15,16 @@
#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:
@@ -131,13 +141,5 @@ class CSLogout : public Module
};
/**
* 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);
}
MODULE_INIT("cs_logout", CSLogout)