summaryrefslogtreecommitdiff
path: root/modules/core/bs_help.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2010-12-13 13:26:01 -0500
committerAdam <Adam@anope.org>2010-12-13 13:26:01 -0500
commit97467cb2c85832c10da11364e0517ed3c4453ddb (patch)
treee00cb4731415287ddcaf5efee9b0e90b50ba17b1 /modules/core/bs_help.cpp
parenteb138a02d61f0cd0a51083ea3c682e2a6b5c24fd (diff)
Bug #1113 - Document the fantasy character in /bs help
Diffstat (limited to 'modules/core/bs_help.cpp')
-rw-r--r--modules/core/bs_help.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/bs_help.cpp b/modules/core/bs_help.cpp
index 43fb59c92..68169cdc8 100644
--- a/modules/core/bs_help.cpp
+++ b/modules/core/bs_help.cpp
@@ -36,7 +36,7 @@ class CommandBSHelp : public Command
for (CommandMap::const_iterator it = BotServ->Commands.begin(), it_end = BotServ->Commands.end(); it != it_end; ++it)
if (!Config->HidePrivilegedCommands || it->second->permission.empty() || (u->Account() && u->Account()->HasCommand(it->second->permission)))
it->second->OnServHelp(source);
- source.Reply(BOT_HELP_FOOTER, Config->BSMinUsers);
+ source.Reply(BOT_HELP_FOOTER, Config->BSMinUsers, Config->s_ChanServ.c_str(), Config->BSFantasyCharacter[0]);
}
};