diff options
author | Adam <Adam@anope.org> | 2011-03-29 13:43:22 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-03-29 13:43:22 -0400 |
commit | 685e99be0241e97665cefe8730bb4aa53647aeb2 (patch) | |
tree | dc62fa62a4af26a360a4aa661d81514e9441aa0c /modules/core/cs_help.cpp | |
parent | b14b7bd55ec9b26ca7787060022b63fc3c001196 (diff) |
Fixed some left over useprivmsg problems and fixed some compiler warnings.
Diffstat (limited to 'modules/core/cs_help.cpp')
-rw-r--r-- | modules/core/cs_help.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/cs_help.cpp b/modules/core/cs_help.cpp index a13bf7829..be2436d29 100644 --- a/modules/core/cs_help.cpp +++ b/modules/core/cs_help.cpp @@ -40,7 +40,7 @@ class CommandCSHelp : public Command "commands are listed below; to use them, type\n" "\002%s%s \037command\037\002. For more information on a\n" "specific command, type \002%s%s HELP \037command\037\002."), - ChanServ->nick.c_str(), Config->UseStrictPrivMsgString.c_str(), ChanServ->nick.c_str(), Config->UseStrictPrivMsgString.c_str(), ChanServ->nick.c_str(), + ChanServ->nick.c_str(), ChanServ->nick.c_str(), Config->UseStrictPrivMsgString.c_str(), ChanServ->nick.c_str(), Config->UseStrictPrivMsgString.c_str(), ChanServ->nick.c_str(), ChanServ->nick.c_str()); for (CommandMap::const_iterator it = ChanServ->Commands.begin(); it != ChanServ->Commands.end(); ++it) if (!Config->HidePrivilegedCommands || it->second->permission.empty() || u->HasCommand(it->second->permission)) |