diff options
-rw-r--r-- | rules.js | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1957,7 +1957,6 @@ states.final_crisis_discard = { function goto_final_crisis_events() { clear_undo() - log_h2(game.active) game.state = "final_crisis_events" } @@ -1980,6 +1979,7 @@ states.final_crisis_events = { }, card(c) { game.final_active = game.active + log_h2(game.active) discard_card(c) if (game.active === VERSAILLES && is_commune_card(c)) { game.what = c @@ -1992,6 +1992,7 @@ states.final_crisis_events = { game.state = "final_crisis_opponent_event" } else { + log("Played C" + c + ".") goto_play_event(c) } }, @@ -2006,6 +2007,7 @@ states.final_crisis_opponent_event = { view.actions.pass = 1 }, event() { + log("Played C" + c + ".") goto_play_event(game.what) }, pass() { |