summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2009-04-10 01:52:09 +0000
committercyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2009-04-10 01:52:09 +0000
commit7b6a109100c9fbcfbaa172ea71667e603f269b5e (patch)
treea2b7a57baaf2416daa9d9ab67405103f0c0fbb2f /src
parent56464bbdd8b0984ab03f235314af55f2cb5feed2 (diff)
Added missing help to BS ACT, patch from Adam.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2269 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r--src/core/bs_act.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/bs_act.c b/src/core/bs_act.c
index 758ebc82c..a73868497 100644
--- a/src/core/bs_act.c
+++ b/src/core/bs_act.c
@@ -68,6 +68,12 @@ class CommandBSAct : public Command
{
syntax_error(s_BotServ, u, "ACT", BOT_ACT_SYNTAX);
}
+
+ bool OnHelp(User *u, const std::string &subcommand)
+ {
+ notice_help(s_BotServ, u, BOT_HELP_ACT);
+ return true;
+ }
};
class BSAct : public Module