diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -3018,7 +3018,7 @@ function is_auto_resolve(card) { if (!game.state.startsWith('vm')) { logi('Minorities spaces already controlled') } return true } - } else if (card === C_CEAUSESCU) { + } else if (card === C_CEAUSESCU && game.active === DEM) { let dem_romania_infl = spaces.filter(space => space.country === 'Romania' && game.demInfl[space.space_id] > 0).length if (dem_romania_infl === 0) { if (!game.state.startsWith('vm')) { logi('No influence to remove') } @@ -4239,7 +4239,6 @@ function vm_valid_spaces_sc () { } function vm_valid_spaces_country_opp () { - console.log('in vm_valid_spaces_country_opp') let country = '' if (vm_operand(1)) { country = vm_operand(1) } @@ -5679,7 +5678,6 @@ states.vm_remove_infl = { inactive: 'remove Support Points.', prompt () { // Keep this so that there is an undo option in, e.g., Scare Tactics - console.log('in vm_remove_infl') if (game.valid_spaces.length === 0 && game.vm_available_ops > 0) { view.prompt = `${clean_name(cards[this_card()].name)}: no further SPs to remove.` gen_action('done') |