From 9a33cb53a787ecfd24277469b3dfc334947be6e5 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Wed, 28 Jun 2023 20:23:21 +0200 Subject: Clear undo when playing opponent's event during Final Crisis. --- rules.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'rules.js') diff --git a/rules.js b/rules.js index 1936faf..6442101 100644 --- a/rules.js +++ b/rules.js @@ -2382,10 +2382,12 @@ states.final_crisis_events = { discard_card(c) game.what = c if (game.active === VERSAILLES && is_commune_card(c)) { + clear_undo() game.active = COMMUNE game.state = "final_crisis_opponent_event" } else if (game.active === COMMUNE && is_versailles_card(c)) { + clear_undo() game.active = VERSAILLES game.state = "final_crisis_opponent_event" } -- cgit v1.2.3