diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-07 11:41:37 +0000 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-07 11:41:37 +0000 |
commit | ef7c22e04584531784b841ab54b63e7e5247ffd4 (patch) | |
tree | dfab69995acd976fdc5325e4df2e55e00747c262 | |
parent | 670f88f5c4298a0b2e55bcffc9c80e446d78f967 (diff) | |
download | 1989-dawn-of-freedom-ef7c22e04584531784b841ab54b63e7e5247ffd4.tar.gz |
Chinese solution playable from box 7 not 8
-rw-r--r-- | rules.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3085,7 +3085,7 @@ function event_is_playable(card) { return false } //Check for The Chinese Solution - else if (game.com_tst_position === 8 && card === C_THE_CHINESE_SOLUTION) { + else if (game.com_tst_position >= 7 && card === C_THE_CHINESE_SOLUTION) { return true } @@ -4654,6 +4654,7 @@ function vm_civic_forum() { } function vm_common_european_home() { + if (game.active === DEM) { for (let c of game.democrat_hand) { if (cards[c].side === 'C') { |