浏览代码

ScriptExplore reordered if prefer_ports

  The IF was re-ordered to check density first then check warp count.
david 3 年之前
父节点
当前提交
ea5ee909fd
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      scripts.cpp

+ 1 - 1
scripts.cpp

@@ -477,7 +477,7 @@ void ScriptExplore::next() {
         // Compare, Warp counts
         // Compare, Warp counts
         if (best_sector.sector != 0) {
         if (best_sector.sector != 0) {
           if(prefer_ports) {
           if(prefer_ports) {
-            if((ds.d[x].warps >= best_sector.warps) || (ds.d[x].density == 100 || ds.d[x].density == 101)) {
+            if((ds.d[x].density == 100 || ds.d[x].density == 101) || (ds.d[x].warps >= best_sector.warps)) {
               if(density_clear(ds.d[x].sector, ds.d[x].density, ds.d[x].navhaz)) {
               if(density_clear(ds.d[x].sector, ds.d[x].density, ds.d[x].navhaz)) {
                 if(best_sector.sector != 0) {
                 if(best_sector.sector != 0) {
                   BUGZ_LOG(info) << "Storing previous best " << best_sector.sector;
                   BUGZ_LOG(info) << "Storing previous best " << best_sector.sector;