summaryrefslogtreecommitdiff
path: root/modules/commands/cs_xop.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2012-10-08 20:58:47 -0400
committerAdam <Adam@anope.org>2012-10-08 20:58:47 -0400
commit3af786d4c97e8ee99ea122a5c058d82e6222f295 (patch)
tree750c5de0ec2c001b6366fd5137478e6944cdc296 /modules/commands/cs_xop.cpp
parente57b470e83fac205a354138b1daccec654214e39 (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.cpp20
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;
}
};