summaryrefslogtreecommitdiff
path: root/modules/core/os_help.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/core/os_help.cpp')
-rw-r--r--modules/core/os_help.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/os_help.cpp b/modules/core/os_help.cpp
index 9f0141940..31b62b349 100644
--- a/modules/core/os_help.cpp
+++ b/modules/core/os_help.cpp
@@ -29,11 +29,11 @@ class CommandOSHelp : public Command
void OnSyntaxError(CommandSource &source, const Anope::string &subcommand)
{
User *u = source.u;
- source.Reply(OPER_HELP);
+ source.Reply(_("%S commands:"));
for (CommandMap::const_iterator it = OperServ->Commands.begin(), it_end = OperServ->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(OPER_HELP_LOGGED);
+ source.Reply(_("\002Notice:\002 All commands sent to %S are logged!"));
}
};