diff options
author | teisuru <31881306+teisuru@users.noreply.github.com> | 2023-10-09 21:23:33 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-12-10 18:16:55 +0100 |
commit | 055d9e58f2a0624a8bd850414d0819eff4189079 (patch) | |
tree | 7650f06e68f9329a53a900c0c2536dfdf2d7de11 | |
parent | f4f93f474f07943113d205960de8d21bfbbe449a (diff) | |
download | plantagenet-055d9e58f2a0624a8bd850414d0819eff4189079.tar.gz |
fix parley seaport
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3505,7 +3505,7 @@ function search_parley(result, start) { queue.push(next) } } - if (ships > 0 && is_seaport(next)) { + if (ships > 0 && is_seaport(here)) { for (let next of find_ports(here)) { if (!search_seen[next]) { search_seen[next] = 1 |