diff options
author | teisuru <31881306+teisuru@users.noreply.github.com> | 2023-09-23 22:45:33 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-12-10 18:16:55 +0100 |
commit | 3509c60db05641765e652dd60ca63b14cbed6369 (patch) | |
tree | ad6fab79f4bebd5b4592313317316db08fe62bb0 | |
parent | 7252c86de51bfc25f8b5ffc5ac1c427de1485dea (diff) | |
download | plantagenet-3509c60db05641765e652dd60ca63b14cbed6369.tar.gz |
marge L14 bugfix
-rw-r--r-- | rules.js | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -5515,13 +5515,14 @@ function has_friendly_lord_who_may_be_paid() { function goto_pay() { log_br() for (let lord = first_friendly_lord; lord <= last_friendly_lord; ++lord) { - if (count_lord_all_forces(lord) >= 13) - set_lord_unfed(lord, 3) - else if (count_lord_all_forces(lord) >= 7) - set_lord_unfed(lord, 2) - else - set_lord_unfed(lord, 1) + if (game.active === LANCASTER && is_lord_on_map(lord) && lord_has_capability(LORD_NORTHUMBERLAND_L, AOW_YORK_PERCYS_POWER) && data.locales[get_lord_locale(LORD_NORTHUMBERLAND_L)].region === "North" && data.locales[get_lord_locale(lord)].region === "North") { + set_lord_unfed(lord, 0) } + else { + n = Math.ceil(count_lord_all_forces(lord)/6) + set_lord_unfed(lord, n) + } + } game.state = "pay" } |