diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-04-20 16:04:43 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-04-20 16:04:43 +0200 |
commit | 2d4c8fe1c5f1ac69f9a3e29c6367e51f007668df (patch) | |
tree | 291054cbee1bf6232e6981bcae177db231ed150e | |
parent | c7fc0423a50a27f9ad30d15f8896450979663d94 (diff) | |
download | plantagenet-2d4c8fe1c5f1ac69f9a3e29c6367e51f007668df.tar.gz |
Fix Parley at campaign check.
Can only parley remotely at friendly locale.
Triggered by London for York event when Lancastrian at Yorkist London.
-rw-r--r-- | rules.ts | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -4390,14 +4390,17 @@ function can_action_parley_campaign() { if (can_parley_at(here)) return true - for (let next of data.locales[here].adjacent) - if (can_parley_at(next)) - return true - - if (is_exile(here) && count_shared_ships(here, false) > 0) - for (let next of find_ports(here, game.command)) + if (is_friendly_locale(here)) { + for (let next of data.locales[here].adjacent) { if (can_parley_at(next)) return true + } + + if (is_exile(here) && count_shared_ships(here, false) > 0) + for (let next of find_ports(here, game.command)) + if (can_parley_at(next)) + return true + } return false } |