diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-05-10 01:11:54 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-05-24 21:06:18 +0200 |
commit | 8172cce6a50d4c3a5ef79a8d3ea135b968b475f4 (patch) | |
tree | 6ea71502742839301a92d7278479b68212773749 | |
parent | 67606c621d421cd2a5781928d94f3568cca78268 (diff) | |
download | red-flag-over-paris-8172cce6a50d4c3a5ef79a8d3ea135b968b475f4.tar.gz |
Final Crisis Round logging.
-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() { |