diff options
author | Adam <Adam@anope.org> | 2011-08-09 17:29:14 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-08-09 17:29:14 -0400 |
commit | 59fad58ab06f154decf35ef727edfbb5974f0c6c (patch) | |
tree | 4faf63adfafd897d1cd85f3bc206b8618e67baa0 /modules | |
parent | d5d2a31042fd1a97fa0d7b3864dcabf741de2f72 (diff) |
Fixed nickserv help output
Diffstat (limited to 'modules')
-rw-r--r-- | modules/core/ns_help.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/ns_help.cpp b/modules/core/ns_help.cpp index d586901f8..3a353ce8c 100644 --- a/modules/core/ns_help.cpp +++ b/modules/core/ns_help.cpp @@ -36,7 +36,7 @@ class CommandNSHelp : public Command "commands allow for registration and maintenance of\n" "nicknames; to use them, type \002%s%s \037command\037\002.\n" "For more information on a specific command, type\n" - "\002%s%s HELP \037command\037\002."), Config->UseStrictPrivMsgString.c_str(), NickServ->nick.c_str(), Config->UseStrictPrivMsgString.c_str(), NickServ->nick.c_str(), + "\002%s%s HELP \037command\037\002."), NickServ->nick.c_str(), Config->UseStrictPrivMsgString.c_str(), NickServ->nick.c_str(), Config->UseStrictPrivMsgString.c_str(), NickServ->nick.c_str(), NickServ->nick.c_str()); for (CommandMap::const_iterator it = NickServ->Commands.begin(), it_end = NickServ->Commands.end(); it != it_end; ++it) if (!Config->HidePrivilegedCommands || it->second->permission.empty() || u->HasCommand(it->second->permission)) |