diff options
-rw-r--r-- | rules.js | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3088,9 +3088,10 @@ function score_country(country) { } // Calculate change VP -/* + let change_vp = dem_vp + com_vp game.vp += change_vp + /* log_gap('Net VP:') if (change_vp > 0) { logi(`+${change_vp} VP`) @@ -4270,6 +4271,7 @@ function check_tyrant_sc() { function resolve_tyrant() { if ( game.persistent_events.includes(C_THE_TYRANT_IS_GONE) && + !game.persistent_events.includes(THE_TYRANT_IS_GONE_OCCURRED) && game.pwr_struggle_in === 'Romania' && game.persistent_events.includes(THE_CROWD_TURNS_AGAINST_CEAUSESCU_OCCURRED) ) { |