summaryrefslogtreecommitdiff
path: root/modules/core/hs_help.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-04-03 18:23:17 -0400
committerAdam <Adam@anope.org>2011-04-03 18:23:17 -0400
commitc681bdd2e39b3ae5e87efedc7acf548ba3bff5fb (patch)
treead466a18ab7583447738a53200208e1791f929d4 /modules/core/hs_help.cpp
parent74844c0f287a875d19cc7b2fcaa13cb76a0f2061 (diff)
parent73a944fb74c7094eb111bd153d17825a353f2723 (diff)
Merge branch '1.9' of anope.git.sf.net:/gitroot/anope/anope into 1.9
Diffstat (limited to 'modules/core/hs_help.cpp')
-rw-r--r--modules/core/hs_help.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/hs_help.cpp b/modules/core/hs_help.cpp
index bf96e4d77..bcf8fd28d 100644
--- a/modules/core/hs_help.cpp
+++ b/modules/core/hs_help.cpp
@@ -31,7 +31,7 @@ class CommandHSHelp : public Command
void OnSyntaxError(CommandSource &source, const Anope::string &subcommand)
{
User *u = source.u;
- source.Reply(_("%s commands"), Config->s_HostServ.c_str());
+ source.Reply(_("%s commands:"), Config->s_HostServ.c_str());
for (CommandMap::const_iterator it = HostServ->Commands.begin(), it_end = HostServ->Commands.end(); it != it_end; ++it)
if (!Config->HidePrivilegedCommands || it->second->permission.empty() || u->HasCommand(it->second->permission))
it->second->OnServHelp(source);