|
@@ -582,8 +582,8 @@ void MoveDispatch::server_prompt(const std::string &prompt) {
|
|
// Yes! we found the sector in the scan!
|
|
// Yes! we found the sector in the scan!
|
|
if (!density_clear(d.sector, d.density, d.navhaz)) {
|
|
if (!density_clear(d.sector, d.density, d.navhaz)) {
|
|
BUGZ_LOG(fatal) << "Failed density check on single move.";
|
|
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 ...
|
|
|
|
|
|
+ why_failed = str(boost::format("Sector %1% has density %2%.") % move_to %
|
|
|
|
+ d.density);
|
|
success = false;
|
|
success = false;
|
|
deactivate();
|
|
deactivate();
|
|
return;
|
|
return;
|
|
@@ -621,7 +621,7 @@ void MoveDispatch::server_prompt(const std::string &prompt) {
|
|
} else {
|
|
} else {
|
|
to_server("N");
|
|
to_server("N");
|
|
BUGZ_LOG(fatal) << "density_clear(" << to_check << ") : false";
|
|
BUGZ_LOG(fatal) << "density_clear(" << to_check << ") : false";
|
|
- why_failed = str(boost::format("Density of %1% at %2%.") % move_to %
|
|
|
|
|
|
+ why_failed = str(boost::format("Sector %1% has density %2%.") % move_to %
|
|
d.density);
|
|
d.density);
|
|
success = false;
|
|
success = false;
|
|
deactivate();
|
|
deactivate();
|
|
@@ -645,7 +645,7 @@ void MoveDispatch::server_prompt(const std::string &prompt) {
|
|
to_server("Y");
|
|
to_server("Y");
|
|
BUGZ_LOG(fatal) << "Stopped by density: " << to_check;
|
|
BUGZ_LOG(fatal) << "Stopped by density: " << to_check;
|
|
why_failed =
|
|
why_failed =
|
|
- str(boost::format("Density of %1% at %2%.") % to_check % d.density);
|
|
|
|
|
|
+ str(boost::format("Sector %1% has density %2%.") % to_check % d.density);
|
|
success = 0;
|
|
success = 0;
|
|
deactivate();
|
|
deactivate();
|
|
}
|
|
}
|