From f88d5a8b0170d17bd56a9dc04877cf918cef5c16 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sun, 26 Feb 2023 21:54:15 +0100 Subject: Play held events during disband (campaign). --- rules.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rules.js b/rules.js index beaf533..83a4925 100644 --- a/rules.js +++ b/rules.js @@ -10285,6 +10285,10 @@ states.disband = { inactive: "Disband", prompt() { view.prompt = "Disband: You must Disband Lords at their Service limit." + + if (is_campaign_phase()) + prompt_held_event() + let done = true for (let lord = first_friendly_lord; lord <= last_friendly_lord; ++lord) { if (is_lord_on_map(lord) && get_lord_service(lord) <= current_turn()) { @@ -10312,6 +10316,7 @@ states.disband = { end_disband() { end_disband() }, + card: action_held_event, } function end_ransom_disband() { -- cgit v1.2.3