diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-20 10:40:23 +0100 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-20 10:40:23 +0100 |
commit | e082162d62141b76e00422e70f39e6707223b41b (patch) | |
tree | b98e8477bc7b885839cc9d381f25e10671294f49 | |
parent | 3d0a13315566d1b7e114a14e652062d286b47a11 (diff) | |
download | 1989-dawn-of-freedom-e082162d62141b76e00422e70f39e6707223b41b.tar.gz |
Updates to Austria Hungary Border Reopened valid spaces
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2005,7 +2005,7 @@ function add_infl(space) { if (game.available_ops === 1) {
if (game.active === DEM) {
- if (game.persistent_events['genscher'] || game.persistent_events['austria_hungary_border_reopened']) {
+ if (game.persistent_events['genscher'] || (game.persistent_events['austria_hungary_border_reopened'] && game.austria_hungary_border_reopened_tracker)) {
game.valid_spaces = game.valid_spaces.filter(n => !(game.pieces[n].comCtrl === 1 && spaces[n].country !== 'East_Germany'))
} else {
game.valid_spaces = game.valid_spaces.filter(n => game.pieces[n].comCtrl !== 1)
|