Przeglądaj źródła

Explorer possibly fixed due to unsafe densities

  It was found that Explorer could enter a broken state as it were when
induced to a unsafe density.

  It's order of operations was:
  1. Change state
  2. Call next() to move to ??? (target would be set first, which may
have been the problem)
  3. Target get's set to non-zero indicating it should be used rather
than deducting from density scans

  As stated above, it is beleived that the issue was that target was
being set after code which depended on it's value.
david 3 lat temu
rodzic
commit
594e82257a
1 zmienionych plików z 3 dodań i 1 usunięć
  1. 3 1
      scripts.cpp

+ 3 - 1
scripts.cpp

@@ -395,13 +395,15 @@ void ScriptExplore::move_notify() {
     if (unknown_warps.size() != 0) {
       BUGZ_LOG(warning) << "Seeking previous unexplored (Unsafe Dest.)";
       state = 4;
-      next();
       target = unknown_warps.top();
       unknown_warps.pop();
       std::string message = "UNSAFE DESTINATION";
       std::string indenter = "    ";
       ANSIColor alert(COLOR::WHITE, COLOR::RED, ATTR::BOLD);
       to_client(indenter + alert() + message + reset() + "\n\r");
+      BUGZ_LOG(warning) << "Target = " << target;
+      next();
+      //deactivate();
     } else {
       std::string message = "Move failed: " + md->why_failed + "\n\r";
       // to_client("No safe moves.\n\r");