diff options
author | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-15 01:59:21 +0000 |
---|---|---|
committer | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-15 01:59:21 +0000 |
commit | 84d789c72b97513ec02a4e115b90cc952fadea64 (patch) | |
tree | 92ed7471914f52e0de08c639e1f26d78edd1d409 /src/core/os_oper.c | |
parent | 6d835a6e49d41d8353ee8506dc6d7cf7b3f1047a (diff) |
Replaced notice_lang with notice_help in all OnHelp() functions in modules. Also fixed a few smaller issues regarding the help in the modules.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2053 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/os_oper.c')
-rw-r--r-- | src/core/os_oper.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/os_oper.c b/src/core/os_oper.c index 6a6ee65cc..bc7031c51 100644 --- a/src/core/os_oper.c +++ b/src/core/os_oper.c @@ -222,7 +222,6 @@ class CommandOSOper : public Command public: CommandOSOper() : Command("OPER", 1, 2) { - this->help_param1 = s_NickServ; } CommandReturn Execute(User *u, std::vector<std::string> ¶ms) @@ -244,7 +243,7 @@ class CommandOSOper : public Command bool OnHelp(User *u, const std::string &subcommand) { - notice_lang(s_OperServ, u, OPER_HELP_OPER); + notice_help(s_OperServ, u, OPER_HELP_OPER, s_NickServ); return true; } |