diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-27 11:04:24 +0100 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-27 11:04:24 +0100 |
commit | faade1cbbd29e42f69cdd2c7fade1cb9116cee22 (patch) | |
tree | 4988f1930b9656d46e8eb4044abe358ba02627a2 /rules.js | |
parent | 4fe7710869dc575d37e2402abd3560f389ec2234 (diff) | |
download | 1989-dawn-of-freedom-faade1cbbd29e42f69cdd2c7fade1cb9116cee22.tar.gz |
Fix for Baltic Way
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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()) {
|