diff options
author | Adam <Adam@anope.org> | 2012-10-08 20:58:47 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-10-08 20:58:47 -0400 |
commit | 3af786d4c97e8ee99ea122a5c058d82e6222f295 (patch) | |
tree | 750c5de0ec2c001b6366fd5137478e6944cdc296 /modules/commands/cs_xop.cpp | |
parent | e57b470e83fac205a354138b1daccec654214e39 (diff) |
Fix fantasy !help & give it its own help header, not ChanServ's
Diffstat (limited to 'modules/commands/cs_xop.cpp')
-rw-r--r-- | modules/commands/cs_xop.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/modules/commands/cs_xop.cpp b/modules/commands/cs_xop.cpp index ae1fe3110..884d7e437 100644 --- a/modules/commands/cs_xop.cpp +++ b/modules/commands/cs_xop.cpp @@ -620,8 +620,8 @@ class CommandCSQOP : public XOPBase "available. See \002%s%s HELP ACCESS\002 for information\n" "about the access list, and \002%s%s HELP FLAGS\002 for\n" "information about the flags based system."), - Config->UseStrictPrivMsgString.c_str(), source.owner->nick.c_str(), - Config->UseStrictPrivMsgString.c_str(), source.owner->nick.c_str()); + Config->UseStrictPrivMsgString.c_str(), source.service->nick.c_str(), + Config->UseStrictPrivMsgString.c_str(), source.service->nick.c_str()); return true; } }; @@ -675,8 +675,8 @@ class CommandCSAOP : public XOPBase "available. See \002%s%s HELP ACCESS\002 for information\n" "about the access list, and \002%s%s HELP FLAGS\002 for\n" "information about the flags based system."), - Config->UseStrictPrivMsgString.c_str(), source.owner->nick.c_str(), - Config->UseStrictPrivMsgString.c_str(), source.owner->nick.c_str()); + Config->UseStrictPrivMsgString.c_str(), source.service->nick.c_str(), + Config->UseStrictPrivMsgString.c_str(), source.service->nick.c_str()); return true; } }; @@ -729,8 +729,8 @@ class CommandCSHOP : public XOPBase "available. See \002%s%s HELP ACCESS\002 for information\n" "about the access list, and \002%s%s HELP FLAGS\002 for\n" "information about the flags based system."), - Config->UseStrictPrivMsgString.c_str(), source.owner->nick.c_str(), - Config->UseStrictPrivMsgString.c_str(), source.owner->nick.c_str()); + Config->UseStrictPrivMsgString.c_str(), source.service->nick.c_str(), + Config->UseStrictPrivMsgString.c_str(), source.service->nick.c_str()); return true; } }; @@ -783,8 +783,8 @@ class CommandCSSOP : public XOPBase "available. See \002%s%s HELP ACCESS\002 for information\n" "about the access list, and \002%s%s HELP FLAGS\002 for\n" "information about the flags based system."), - Config->UseStrictPrivMsgString.c_str(), source.owner->nick.c_str(), - Config->UseStrictPrivMsgString.c_str(), source.owner->nick.c_str()); + Config->UseStrictPrivMsgString.c_str(), source.service->nick.c_str(), + Config->UseStrictPrivMsgString.c_str(), source.service->nick.c_str()); return true; } }; @@ -837,8 +837,8 @@ class CommandCSVOP : public XOPBase "available. See \002%s%s HELP ACCESS\002 for information\n" "about the access list, and \002%s%s HELP FLAGS\002 for\n" "information about the flags based system."), - Config->UseStrictPrivMsgString.c_str(), source.owner->nick.c_str(), - Config->UseStrictPrivMsgString.c_str(), source.owner->nick.c_str()); + Config->UseStrictPrivMsgString.c_str(), source.service->nick.c_str(), + Config->UseStrictPrivMsgString.c_str(), source.service->nick.c_str()); return true; } }; |