From e7520ade6d68744932b1edfb4d5e610b4e9c6d15 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sat, 20 Apr 2024 13:42:37 +0200 Subject: Cope with lords already having capabilities in first arts of war. --- rules.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules.ts b/rules.ts index a54a5cf..00203a0 100644 --- a/rules.ts +++ b/rules.ts @@ -2089,7 +2089,7 @@ states.levy_arts_of_war_first = { view.what = c let discard = true for (let lord of data.cards[c].lords) { - if (is_lord_on_map(lord) && !lord_already_has_capability(lord, c)) { + if (is_lord_on_map(lord) && !lord_already_has_capability(lord, c) && can_add_lord_capability(lord)) { gen_action_lord(lord) discard = false } -- cgit v1.2.3