diff options
author | lethality <lethality@anope.org> | 2010-08-14 14:16:21 +0100 |
---|---|---|
committer | lethality <lethality@anope.org> | 2010-08-14 14:16:21 +0100 |
commit | 4d0a1aaabd861bb7cd1e378bd1e600af1d34d5d2 (patch) | |
tree | cbb529cc42b3dbc623a115eeb1b3c4f57e38ac86 /modules/core/cs_set_secure.cpp | |
parent | c24ec0686164274110f00f81622750312e539af1 (diff) |
Fixed some chanserv help set/saset replies
Diffstat (limited to 'modules/core/cs_set_secure.cpp')
-rw-r--r-- | modules/core/cs_set_secure.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/core/cs_set_secure.cpp b/modules/core/cs_set_secure.cpp index 9e25c45be..8942c794a 100644 --- a/modules/core/cs_set_secure.cpp +++ b/modules/core/cs_set_secure.cpp @@ -44,7 +44,7 @@ class CommandCSSetSecure : public Command bool OnHelp(User *u, const Anope::string &) { - notice_help(Config.s_ChanServ, u, CHAN_HELP_SET_SECURE, "SET"); + notice_help(Config.s_ChanServ, u, CHAN_HELP_SET_SECURE, "SET", Config.s_NickServ.c_str()); return true; } @@ -55,7 +55,7 @@ class CommandCSSetSecure : public Command void OnServHelp(User *u) { - notice_lang(Config.s_ChanServ, u, CHAN_HELP_CMD_SET_SECURE); + notice_help(Config.s_ChanServ, u, CHAN_HELP_CMD_SET_SECURE); } }; @@ -68,7 +68,7 @@ class CommandCSSASetSecure : public CommandCSSetSecure bool OnHelp(User *u, const Anope::string &) { - notice_help(Config.s_ChanServ, u, CHAN_HELP_SET_SECURE, "SASET"); + notice_help(Config.s_ChanServ, u, CHAN_HELP_SET_SECURE, "SASET", Config.s_NickServ.c_str()); return true; } |