diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-29 20:31:40 +0100 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-29 20:31:40 +0100 |
commit | 184d838c87964b888cd9d947c735ed799b086091 (patch) | |
tree | f68bc1629ea37a9542571a8a70bf267446123feb /rules.js | |
parent | d0aba7c1b882b43e9c4687b00ddefbc4e86e7634 (diff) | |
download | 1989-dawn-of-freedom-184d838c87964b888cd9d947c735ed799b086091.tar.gz |
Fix the Crowd Turns infl
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1074,7 +1074,7 @@ states.the_crowd_turns_against_ceausescu_prep = { }
}
-states.vm_the_crowd_turns_against_ceausescu = {
+states.the_crowd_turns_against_ceausescu = {
get inactive() {
return `resolve ${cards[54].name}.`
},
@@ -1086,6 +1086,7 @@ states.vm_the_crowd_turns_against_ceausescu = { influence() {
push_undo()
game.ceausescu_cards = []
+ game.state = 'vm_the_crowd_turns_against_ceausescu'
valid_spaces_infl()
game.valid_spaces.filter(space => spaces[space].country === 'Romania')
game.state = 'the_crowd_turns_against_ceausescu_infl' /* Send this to add_infl. Add check at end of add_infl similar to valid_spaces*/
|