diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-20 14:27:15 +0100 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-20 14:27:15 +0100 |
commit | df5fce4ea4ee6c767919afae90379902d78cd691 (patch) | |
tree | 61287c298ab5be367fcdbb0ed9941f6cbabb93a3 /rules.js | |
parent | eb18bad8151af2961ff8601aa78bd1c6fb48face (diff) | |
download | 1989-dawn-of-freedom-df5fce4ea4ee6c767919afae90379902d78cd691.tar.gz |
Fix for Tyrant is Gone
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4977,7 +4977,7 @@ function vm_the_tyrant_is_gone() { game.playable_cards[41].playable = 0
game.playable_cards[101].playable = 0
game.playable_cards[107].playable = 0
- console.log('game.vm_event', game.vm_event)
+ console.log('game.vm_event', game.vm_event, 'game.played_card', game.played_card)
game.state = 'vm_the_tyrant_is_gone'
}
@@ -6826,7 +6826,7 @@ states.vm_the_tyrant_is_gone = { },
infl(space) {
push_undo()
- log(`The Ceausescus flee to %${space}`)
+ log(`The Ceausescus flee to %${find_space_index(space)}`)
game.persistent_events['the_tyrant_is_gone'] = find_space_index(space)
},
done () {
|