From b4d2ea5ee7a14f52d512c5b4774314fe0ce896b2 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Mon, 31 Mar 2025 21:07:17 +0200 Subject: Check if Sun in Splendour is playable during Arts of War. --- rules.js | 2 +- rules.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rules.js b/rules.js index f938253..ff1f9e5 100644 --- a/rules.js +++ b/rules.js @@ -1867,7 +1867,7 @@ states.levy_arts_of_war = { break; } // allow playing this Held card immediately - if (c === EVENT_YORK_SUN_IN_SPLENDOUR) { + if (c === EVENT_YORK_SUN_IN_SPLENDOUR && can_play_sun_in_splendour()) { view.prompt = `Arts of War: Play or hold ${data.cards[c].event}.`; view.actions.hold = 1; view.actions.play = 1; diff --git a/rules.ts b/rules.ts index 6e2c775..2f9eb3a 100644 --- a/rules.ts +++ b/rules.ts @@ -2383,7 +2383,7 @@ states.levy_arts_of_war = { } // allow playing this Held card immediately - if (c === EVENT_YORK_SUN_IN_SPLENDOUR) { + if (c === EVENT_YORK_SUN_IN_SPLENDOUR && can_play_sun_in_splendour()) { view.prompt = `Arts of War: Play or hold ${data.cards[c].event}.` view.actions.hold = 1 view.actions.play = 1 -- cgit v1.2.3