From 100a525088e981538c1543aaf7581ebfebb36a83 Mon Sep 17 00:00:00 2001 From: iainp5 Date: Sun, 29 Sep 2024 20:38:17 +0100 Subject: Fix the Crowd Turns infl --- rules.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rules.js b/rules.js index 0419a14..605fec7 100644 --- a/rules.js +++ b/rules.js @@ -1089,8 +1089,8 @@ states.the_crowd_turns_against_ceausescu = { game.state = 'vm_the_crowd_turns_against_ceausescu' valid_spaces_infl() console.log('game valid spaces before', game.valid_spaces) - game.valid_spaces.filter(n => spaces[n].country === 'Romania') - console.log('game valid spaces after', game.valid_spaces) + game.valid_spaces = game.valid_spaces.filter(n => spaces[n].country === 'Romania') + console.log('game valid spaces before', game.valid_spaces) game.state = 'the_crowd_turns_against_ceausescu_infl' /* Send this to add_infl. Add check at end of add_infl similar to valid_spaces*/ }, support_check() { -- cgit v1.2.3