diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-20 11:06:48 +0100 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-20 11:06:48 +0100 |
commit | dda11334dcc8fbe2b0a22154a4b9528a76557eb7 (patch) | |
tree | 26793dc73e34ec714f549f451d41531337ab7e61 | |
parent | dab1c31ac0c6235dd4e1338a822f8e4ff062ac17 (diff) | |
download | 1989-dawn-of-freedom-dda11334dcc8fbe2b0a22154a4b9528a76557eb7.tar.gz |
Fix remove influence in Ceausescu
-rw-r--r-- | rules.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1974,7 +1974,7 @@ function add_infl(space) { game.available_ops -= 2
//Check if Austria Hungary Border Reopened was used to place last SP in a controlled space in East Germany. If so, game.available_op will be negative
if (game.available_ops < 0) {
- log(`Used +1 op from C58`)
+ log(`(Used +1 op from C58)`)
}
} else {
game.available_ops--
@@ -4373,6 +4373,7 @@ function vm_ceausescu() { game.valid_spaces = [61]
game.vm_available_ops = 1
//next_player()
+ game.remove_opponent_infl = false
game.state = 'vm_remove_infl'
}
else {vm_next()}
|