diff options
author | DukePyrolator <DukePyrolator@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-08-19 19:54:10 +0000 |
---|---|---|
committer | DukePyrolator <DukePyrolator@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-08-19 19:54:10 +0000 |
commit | 6c62e3968051283b73aa817966058906f28f289e (patch) | |
tree | 37996e4735a5973f1a538e9b27203417692f0834 | |
parent | 7916c7f393a590bd5d3d627ee115858c3f14a5b5 (diff) |
fixed a possible crashbug on botserv help set
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2455 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | src/core/bs_set.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/bs_set.c b/src/core/bs_set.c index c7c67714b..286048f30 100644 --- a/src/core/bs_set.c +++ b/src/core/bs_set.c @@ -162,7 +162,7 @@ class CommandBSSet : public Command else if (subcommand == "GREET") notice_help(s_BotServ, u, BOT_HELP_SET_GREET); else if (subcommand == "SYMBIOSIS") - notice_lang(s_BotServ, u, BOT_HELP_SET_SYMBIOSIS); + notice_lang(s_BotServ, u, BOT_HELP_SET_SYMBIOSIS, s_ChanServ); else if (subcommand == "NOBOT") notice_lang(s_BotServ, u, BOT_SERVADMIN_HELP_SET_NOBOT); else if (subcommand == "PRIVATE") |