diff options
-rw-r--r-- | rules.js | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -5845,12 +5845,12 @@ states.vm_kremlin_coup_take_control = { vm_take_control(space)
game.vm_active_country = spaces[find_space_index(space)].country
console.log('space', find_space_index(space), 'country', game.vm_active_country)
- if (game.vm_active_country = 'East_Germany') {game.temp = 3 }
- if (game.vm_active_country = 'Poland') {game.temp = 17}
- if (game.vm_active_country = 'Czechoslovakia') {game.temp = 29}
- if (game.vm_active_country = 'Hungary') {game.temp = 45}
- if (game.vm_active_country = 'Romania') {game.temp = 61}
- if (game.vm_active_country = 'Bulgaria') {game.temp = 68}
+ if (game.vm_active_country === 'East_Germany') {game.temp = 3 }
+ if (game.vm_active_country === 'Poland') {game.temp = 17}
+ if (game.vm_active_country === 'Czechoslovakia') {game.temp = 29}
+ if (game.vm_active_country === 'Hungary') {game.temp = 45}
+ if (game.vm_active_country === 'Romania') {game.temp = 61}
+ if (game.vm_active_country === 'Bulgaria') {game.temp = 68}
game.valid_spaces.push(game.temp)
game.state = 'vm_kremlin_coup_sc_prep'
},
|