diff options
-rw-r--r-- | rules.js | 2 | ||||
-rw-r--r-- | rules.ts | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -3865,7 +3865,7 @@ function search_tax(result, start, lord, ships) { for (let next of find_ports(here, lord)) { if (!search_seen[next]) { search_seen[next] = 1; - search_dist[next] = next_dist; + search_dist[next] = next_dist | find_sea_mask(here) | find_sea_mask(next); queue.push(next); } } @@ -4674,7 +4674,7 @@ function search_tax(result, start: Locale, lord: Lord, ships: boolean) { for (let next of find_ports(here, lord)) { if (!search_seen[next]) { search_seen[next] = 1 - search_dist[next] = next_dist + search_dist[next] = next_dist | find_sea_mask(here) | find_sea_mask(next) queue.push(next) } } |