diff options
Diffstat (limited to 'modules/core/ns_help.cpp')
-rw-r--r-- | modules/core/ns_help.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/core/ns_help.cpp b/modules/core/ns_help.cpp index e7659a6aa..d586901f8 100644 --- a/modules/core/ns_help.cpp +++ b/modules/core/ns_help.cpp @@ -34,9 +34,9 @@ class CommandNSHelp : public Command source.Reply(_("\002%s\002 allows you to \"register\" a nickname and\n" "prevent others from using it. The following\n" "commands allow for registration and maintenance of\n" - "nicknames; to use them, type \002%R%s \037command\037\002.\n" + "nicknames; to use them, type \002%s%s \037command\037\002.\n" "For more information on a specific command, type\n" - "\002%R%s HELP \037command\037\002."), NickServ->nick.c_str(), NickServ->nick.c_str(), + "\002%s%s HELP \037command\037\002."), 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)) @@ -45,8 +45,8 @@ class CommandNSHelp : public Command source.Reply(_(" \n" "Services Operators can also drop any nickname without needing\n" "to identify for the nick, and may view the access list for\n" - "any nickname (\002%R%s ACCESS LIST \037nick\037\002)."), - NickServ->nick.c_str()); + "any nickname (\002%s%s ACCESS LIST \037nick\037\002)."), + Config->UseStrictPrivMsgString.c_str(), NickServ->nick.c_str()); if (Config->NSExpire >= 86400) source.Reply(_("Nicknames that are not used anymore are subject to \n" "the automatic expiration, i.e. they will be deleted\n" |