diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-08 12:08:32 +0000 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-08 12:08:32 +0000 |
commit | 275e03c84e3a6b67cb2da82b040d45ebd4038f08 (patch) | |
tree | 9ae4700f536ba17d6b130b3134f3fef99fa97a48 /rules.js | |
parent | 8b9f51b9a547531a8b045f0b60d9fec9e58da4fd (diff) | |
download | 1989-dawn-of-freedom-275e03c84e3a6b67cb2da82b040d45ebd4038f08.tar.gz |
Fix Honecker under general strike
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1790,7 +1790,12 @@ states.honecker ={ log_h2(`Action Round ${game.round}`) game.round_player = COM permanently_remove(C_HONECKER) - game.state = 'choose_card' + console.log('game.persistent_events', game.persistent_events) + if (game.persistent_events.includes(C_GENERAL_STRIKE)) { + game.state = 'general_strike' + } else { + game.state = 'choose_card' + } }, pass() { push_undo() |