diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-21 19:59:10 +0100 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-21 19:59:10 +0100 |
commit | a1e9567b3b4c2b2326abefae47c99ba874ee2c26 (patch) | |
tree | c96c1a4720581b3e3237852f963aa7af2a7e0756 /rules.js | |
parent | a16e24c705fd1f98caf4332b734ff9d616705f4f (diff) | |
download | 1989-dawn-of-freedom-a1e9567b3b4c2b2326abefae47c99ba874ee2c26.tar.gz |
Updates to styling
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -873,7 +873,11 @@ states.tst_goddess = { log_side()
}
game.phase = 0
- game.state = 'choose_card'
+ if (game.persistent_events['general_strike']) {
+ game.state = 'general_strike'
+ } else {
+ game.state = 'choose_card'
+ }
}
}
|