diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3773,7 +3773,6 @@ function finish_the_wall() { } function finish_we_are_the_people() { - summary_flush() game.valid_spaces = [...S_EAST_GERMANY] game.vm_max_infl = 2 game.vm_available_ops = game.vm_influence_added[S_LUTHERAN_CHURCH] @@ -8146,13 +8145,14 @@ states.vm_we_are_the_people_remove = { if (game.vm_influence_added[S_LUTHERAN_CHURCH] === 4 || game.valid_spaces.length === 0 ) { + summary_flush() finish_we_are_the_people() } }, done() { push_undo() + summary_flush() if (!game.vm_influence_added[S_LUTHERAN_CHURCH]) { - logi('None') vm_next() } else { finish_we_are_the_people() |