diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-11-04 00:17:21 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-11-07 22:42:37 +0100 |
commit | 5efad42768a6bfaa775dccde8d1af4b92b2344c9 (patch) | |
tree | 1c7c269e814a602756c43d23c2685a6d287ce45a /rules.ts | |
parent | 91ed031f500e18f13ac90a3f54b47fbc77d07bd3 (diff) | |
download | plantagenet-master.tar.gz |
The tax path searching did not correctly flag which seas were crossed,
which caused the naval blockade code to not trigger.
Diffstat (limited to 'rules.ts')
-rw-r--r-- | rules.ts | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) } } |