diff options
-rw-r--r-- | rules.js | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1448,8 +1448,7 @@ function assess_commune_crisis_track(i, an, bn) { if (b === bn) { log_h3("Commune - " + crisis_names[i]) if (i === 2 && is_commune_first_to_breach_final()) - // TODO: manual VP change? - add_political_vp(VERSAILLES, -1) + add_political_vp(COMMUNE, -1) } return b > 0 } @@ -1463,8 +1462,7 @@ function assess_versailles_crisis_track(i, an, bn) { if (b === bn) { log_h3("Versailles - " + crisis_names[i]) if (i === 2 && is_versailles_first_to_breach_final()) - // TODO: manual VP change? - add_political_vp(COMMUNE, -1) + add_political_vp(VERSAILLES, -1) } return b > 0 } |