From 7252c86de51bfc25f8b5ffc5ac1c427de1485dea Mon Sep 17 00:00:00 2001 From: teisuru <31881306+teisuru@users.noreply.github.com> Date: Fri, 22 Sep 2023 10:51:07 +0200 Subject: small bugfix parley --- rules.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rules.js b/rules.js index 0095471..8871d37 100644 --- a/rules.js +++ b/rules.js @@ -3117,11 +3117,11 @@ function can_action_parley_levy() { function parley_adjacent(here, lord) { let seaports = [] - if (is_seaport(here) && get_lord_assets(lord, SHIP) > 0 ) { + if (is_seaport(here) && get_shared_assets(lord, SHIP) > 0 ) { if (data.port_1.includes(here)) seaports = data.port_1 if (data.port_2.includes(here)) seaports = data.port_2 if (data.port_3.includes(here)) seaports = data.port_3 - } else if (is_exile(here) && get_lord_assets(lord, SHIP) > 0) { + } else if (is_exile(here) && get_shared_assets(lord, SHIP) > 0) { return find_ports_from_exile(here) } return data.locales[here].adjacent.concat(seaports) -- cgit v1.2.3