diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-20 12:13:25 +0100 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-20 12:13:25 +0100 |
commit | 505193575653495a289caef7ec78b85fd94ba1de (patch) | |
tree | 9e5ceac8a6e5557e5f3c8cd13049a653645f68a3 | |
parent | ec52d203a56d973e97f406798890a91939c0c89c (diff) | |
download | 1989-dawn-of-freedom-505193575653495a289caef7ec78b85fd94ba1de.tar.gz |
Fixed typo in crowd turns against ceausescu
-rw-r--r-- | rules.js | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -470,6 +470,8 @@ states.choose_card = { check_vp()
game.persistent_events['ligachev'] = false
}
+ console.log('game.played_card', game.played_card, 'playable', game.playable_cards[game.played_card].playable)
+ game.playable_cards[97].playable = 1
game.state = 'play_card'
console.log('game.state', game.state)
},
@@ -4922,7 +4924,7 @@ function vm_the_chinese_solution() { function vm_the_crowd_turns_against_ceausescu() {
//game.persistent_events['the_crowd_turns_against_ceausescu'] = true
game.table_cards.push(54)
- game.playable_cards[97] = 1
+ game.playable_cards[97].playable = 1
vm_next()
}
|