From 0aa6ea882347009b497fd8a13648225a3440b9cd Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 19 Apr 2024 21:34:34 +0200 Subject: Fix commission of array. --- rules.ts | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/rules.ts b/rules.ts index ef043ef..6e4102b 100644 --- a/rules.ts +++ b/rules.ts @@ -3176,9 +3176,12 @@ function can_add_troops(locale: Locale) { } function can_add_troops_coa(lord: Lord, locale: Locale) { - for (let next of data.locales[locale].adjacent) { - if (is_friendly_locale(next) && lord_has_capability(lord, AOW_LANCASTER_COMMISION_OF_ARRAY) && (!has_exhausted_marker(locale) && !is_exile(locale))) - return true + if (lord_has_capability(lord, AOW_LANCASTER_COMMISION_OF_ARRAY)) { + for (let next of data.locales[locale].adjacent) { + if (is_friendly_locale(next) && !has_enemy_lord(next)) + if (can_add_troops(next)) + return true + } } return false } @@ -9490,7 +9493,7 @@ states.soldiers_of_fortune = { // Done if (done) { view.prompt = "Soldiers of fortune: Done." - view.actions.end_sof = 1 + view.actions.done = 1 } }, coin(lord) { @@ -9540,7 +9543,7 @@ states.soldiers_of_fortune = { add_lord_forces(game.command, MERCENARIES, merc) set_lord_unfed(game.command, 0) }, - end_sof() { + done() { end_soldiers_of_fortune() }, } @@ -9568,7 +9571,7 @@ states.commission_of_array = { // Done if (done) { view.prompt = "Commission of Array: Done." - view.actions.end_coa = 1 + view.actions.done = 1 } }, locale(loc) { @@ -9608,6 +9611,9 @@ states.commission_of_array = { } end_commission_of_array() }, + done() { + end_commission_of_array() + }, } function end_commission_of_array() { -- cgit v1.2.3