diff options
Diffstat (limited to 'rules.js')
-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') { |