summaryrefslogtreecommitdiff
path: root/src/core/os_set.c
diff options
context:
space:
mode:
authorcyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-15 01:59:21 +0000
committercyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-15 01:59:21 +0000
commit84d789c72b97513ec02a4e115b90cc952fadea64 (patch)
tree92ed7471914f52e0de08c639e1f26d78edd1d409 /src/core/os_set.c
parent6d835a6e49d41d8353ee8506dc6d7cf7b3f1047a (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_set.c')
-rw-r--r--src/core/os_set.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/core/os_set.c b/src/core/os_set.c
index d1ecf843e..c9781e2c9 100644
--- a/src/core/os_set.c
+++ b/src/core/os_set.c
@@ -268,21 +268,21 @@ class CommandOSSet : public Command
return false;
if (subcommand.empty())
- notice_lang(s_OperServ, u, OPER_HELP_SET);
+ notice_help(s_OperServ, u, OPER_HELP_SET);
else if (subcommand == "LIST")
- notice_lang(s_OperServ, u, OPER_HELP_SET_LIST);
+ notice_help(s_OperServ, u, OPER_HELP_SET_LIST);
else if (subcommand == "READONLY")
- notice_lang(s_OperServ, u, OPER_HELP_SET_READONLY);
+ notice_help(s_OperServ, u, OPER_HELP_SET_READONLY);
else if (subcommand == "LOGCHAN")
- notice_lang(s_OperServ, u, OPER_HELP_SET_LOGCHAN);
+ notice_help(s_OperServ, u, OPER_HELP_SET_LOGCHAN);
else if (subcommand == "DEBUG")
- notice_lang(s_OperServ, u, OPER_HELP_SET_DEBUG);
+ notice_help(s_OperServ, u, OPER_HELP_SET_DEBUG);
else if (subcommand == "NOEXPIRE")
- notice_lang(s_OperServ, u, OPER_HELP_SET_NOEXPIRE);
+ notice_help(s_OperServ, u, OPER_HELP_SET_NOEXPIRE);
else if (subcommand == "IGNORE")
- notice_lang(s_OperServ, u, OPER_HELP_SET_IGNORE);
+ notice_help(s_OperServ, u, OPER_HELP_SET_IGNORE);
else if (subcommand == "SUPERADMIN")
- notice_lang(s_OperServ, u, OPER_HELP_SET_SUPERADMIN);
+ notice_help(s_OperServ, u, OPER_HELP_SET_SUPERADMIN);
return true;
}