From faade1cbbd29e42f69cdd2c7fade1cb9116cee22 Mon Sep 17 00:00:00 2001 From: iainp5 Date: Fri, 27 Sep 2024 11:04:24 +0100 Subject: Fix for Baltic Way --- rules.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rules.js') diff --git a/rules.js b/rules.js index 5e96e93..ef4431c 100644 --- a/rules.js +++ b/rules.js @@ -5299,8 +5299,8 @@ function vm_tear_gas () { function vm_the_baltic_way() { game.playable_cards[84].playable = 1 game.stability++ - if (game.pieces[56].demCtrl === 0 && game.persistent_events['systematization'] !== 56) {game.valid_spaces.push(56)} - if (game.pieces[70].demCtrl === 0 && game.persistent_events['systematization'] !== 70) {game.valid_spaces.push(70)} + if (!check_dem_control(56) && game.persistent_events['systematization'] !== 56) {game.valid_spaces.push(56)} + if (!check_dem_control(70) && game.persistent_events['systematization'] !== 70) {game.valid_spaces.push(70)} log('+3 VP') game.vp += 3 if (check_vp()) { -- cgit v1.2.3