diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-25 17:49:19 +0000 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-25 17:49:19 +0000 |
commit | eaeda929594ca9575a2dc367dfb3206d895370e4 (patch) | |
tree | 7cf80931ed840d47e791ed2c3593e7fea13695e0 | |
parent | 0829a3e329b1ced426e4158dce28d031517c6a7e (diff) | |
download | 1989-dawn-of-freedom-eaeda929594ca9575a2dc367dfb3206d895370e4.tar.gz |
Limit We are the People to 2 infl per space
-rw-r--r-- | rules.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -7572,6 +7572,7 @@ states.vm_we_are_the_people_remove = { remove_infl(space, 'vm_available_ops') if (game.vm_influence_added[S_LUTHERAN_CHURCH] === 4) { game.valid_spaces = [...S_EAST_GERMANY] + game.vm_max_infl = 2 game.state = 'vm_we_are_the_people_add' } }, @@ -7599,7 +7600,7 @@ states.vm_we_are_the_people_add = { } }, space(space) { - vm_do_add_limited_infl(space, game.vm_max_infl) + vm_do_add_limited_infl(space, game.vm_max_infl ) game.vm_influence_added[S_LUTHERAN_CHURCH]-- if (game.vm_influence_added[S_LUTHERAN_CHURCH] === 0 ) { game.valid_spaces = [] |