diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-12-21 16:35:33 +0000 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-12-21 16:35:33 +0000 |
commit | 05746e9738e4903ce53578353af5d0f7274dd142 (patch) | |
tree | 75c34e193ec1e1fb258e3596488e9617f5f2bb9f | |
parent | 4090d0c4d77b1b092c247f9accbf1ea5566db5a7 (diff) | |
download | 1989-dawn-of-freedom-05746e9738e4903ce53578353af5d0f7274dd142.tar.gz |
Fix the Tyrant is gone in NYE Party
-rw-r--r-- | rules.js | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -6162,7 +6162,7 @@ function vm_the_third_way() { function vm_the_tyrant_is_gone() { permanently_remove(C_THE_CROWD_TURNS_AGAINST_CEAUSESCU) - game.persistent_events.push(THE_TYRANT_IS_GONE_OCCURRED) + add_to_persistent_events(THE_TYRANT_IS_GONE_OCCURRED) game.valid_spaces = [] for (let i = 0; i < spaces.length; i++) { let space = spaces[i] @@ -9549,7 +9549,6 @@ CODE[97] = [ // The Tyrant is Gone* [ vm_prompt, 'the Romanian Elite Space' ], [ vm_remove_x_opp_infl, 4 ], [ vm_the_tyrant_is_gone ], - [ vm_permanently_remove ], [ vm_else ], [ vm_the_tyrant_is_gone_prep ], [ vm_endif ], |