diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-29 20:33:40 +0100 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-29 20:33:40 +0100 |
commit | d4d37c447a604d71559a5608ec29eff08b2455a5 (patch) | |
tree | 0257cdca86ba5b0c3a21bd064020abb6a29e6b74 /rules.js | |
parent | 184d838c87964b888cd9d947c735ed799b086091 (diff) | |
download | 1989-dawn-of-freedom-d4d37c447a604d71559a5608ec29eff08b2455a5.tar.gz |
Fix the Crowd Turns infl
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1088,7 +1088,7 @@ states.the_crowd_turns_against_ceausescu = { game.ceausescu_cards = []
game.state = 'vm_the_crowd_turns_against_ceausescu'
valid_spaces_infl()
- game.valid_spaces.filter(space => spaces[space].country === 'Romania')
+ game.valid_spaces.filter(n => spaces[n].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*/
},
support_check() {
|