|
@@ -581,6 +581,7 @@ void MoveDispatch::server_prompt(const std::string &prompt) {
|
|
|
// Yes! we found the sector in the scan!
|
|
|
if (!density_clear(d)) {
|
|
|
BUGZ_LOG(fatal) << "Failed density check on single move.";
|
|
|
+ why_failed = str(boost::format("Density of %1% at %2%.") % move_to % d.density ); // density of move_to ...
|
|
|
success = false;
|
|
|
deactivate();
|
|
|
return;
|
|
@@ -618,6 +619,7 @@ void MoveDispatch::server_prompt(const std::string &prompt) {
|
|
|
} else {
|
|
|
to_server("N");
|
|
|
BUGZ_LOG(fatal) << "density_clear(" << to_check << ") : false";
|
|
|
+ why_failed = str(boost::format("Density of %1% at %2%.") % move_to % d.density );
|
|
|
success = false;
|
|
|
deactivate();
|
|
|
}
|
|
@@ -643,6 +645,7 @@ void MoveDispatch::server_prompt(const std::string &prompt) {
|
|
|
} else {
|
|
|
to_server("Y");
|
|
|
BUGZ_LOG(fatal) << "Stopped by density: " << to_check;
|
|
|
+ why_failed = str(boost::format("Density of %1% at %2%.") % to_check % d.density );
|
|
|
success = 0;
|
|
|
deactivate();
|
|
|
}
|
|
@@ -889,6 +892,7 @@ void TraderDispatch::server_prompt(const std::string &prompt) {
|
|
|
// Ok, decision time!
|
|
|
if (director.galaxy.meta["ship"]["holds"]["c"]) {
|
|
|
// holds contain colonists
|
|
|
+ why_failed = "Holds contain colonists.";
|
|
|
success = false;
|
|
|
aborted = true;
|
|
|
to_client("ScriptTrader FAIL: holds contain colonists.");
|
|
@@ -906,6 +910,7 @@ void TraderDispatch::server_prompt(const std::string &prompt) {
|
|
|
BUGZ_LOG(fatal) << "FAIL: " << total << " total holds, " << empty
|
|
|
<< " holds empty.";
|
|
|
to_client("ScriptTrader FAIL: holds are not empty.");
|
|
|
+ why_failed = "Holds are not empty.";
|
|
|
success = false;
|
|
|
aborted = true;
|
|
|
deactivate();
|
|
@@ -948,6 +953,7 @@ void TraderDispatch::server_prompt(const std::string &prompt) {
|
|
|
}
|
|
|
}
|
|
|
if (active_port == 0) {
|
|
|
+ why_failed = "No ports will buy what we have in our holds.";
|
|
|
success = false;
|
|
|
to_client(
|
|
|
"I don't see any ports that are buying what we have in our "
|