فهرست منبع

This fixes single move (we look at the density scan).

Steve Thielemann 3 سال پیش
والد
کامیت
26f611b62e
1فایلهای تغییر یافته به همراه10 افزوده شده و 0 حذف شده
  1. 10 0
      dispatchers.cpp

+ 10 - 0
dispatchers.cpp

@@ -651,6 +651,16 @@ void MoveDispatch::server_prompt(const std::string &prompt) {
     if (at_command_prompt(prompt)) {
       // Ok, density is done
       // BUG:  If the sector is adjacent, this doesn't check density!
+      density d = director.galaxy.dscan.find(move_to);
+      if (d.sector == move_to) {
+        // Yes! we found the sector in the scan!
+        if (! density_clear(d)) {
+          BUGZ_LOG(fatal) << "Failed density check on single move.";
+          success = false;
+          deactivate();
+          return;
+        }
+      }
       std::string command = str(boost::format("M%1%\r") % move_to);
       to_server(command);
       state = 3;