diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-28 18:24:53 +0000 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-28 18:24:53 +0000 |
commit | 1507f6ac97d82746d9779b75b7afbbc66d5239ea (patch) | |
tree | a9ec761b183e2c4107c46e7fd123666c5b460127 | |
parent | d03501279ceff58e0c46772e6e9db0e088d6aa01 (diff) | |
download | 1989-dawn-of-freedom-1507f6ac97d82746d9779b75b7afbbc66d5239ea.tar.gz |
Stop TST when resolving Goodbye Lenin and at top of TST track
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6562,7 +6562,7 @@ states.vm_goodbye_lenin_ops = { view.prompt = `Play ${clean_name(cards[this_card()].name)} for:` gen_action('influence') gen_action('support_check') - if ((game.active === DEM && game.dem_tst_attempted_this_turn === 0 ) || (game.active === COM && game.com_tst_attempted_this_turn === 0 )) { + if ((game.active === DEM && game.dem_tst_attempted_this_turn === 0 && game.dem_tst_position < 8) || (game.active === COM && game.com_tst_attempted_this_turn === 0 && game.com_tst_position < 8)) { gen_action('tst') } }, |