diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-20 14:36:15 +0100 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-20 14:36:15 +0100 |
commit | c610ee2ed39c074a8f80c767ecb1d0ae0cc69de8 (patch) | |
tree | 45a26411717d47cbc7a9f3bc7a39306e472c0444 /rules.js | |
parent | df5fce4ea4ee6c767919afae90379902d78cd691 (diff) | |
download | 1989-dawn-of-freedom-c610ee2ed39c074a8f80c767ecb1d0ae0cc69de8.tar.gz |
Prompt for Tyrant is Gone
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1567,7 +1567,8 @@ states.the_tyrant_is_gone ={ next_player()
}
log_h3(`C97`)
- goto_vm(97)
+ game.vm_event = 97
+ goto_vm(game.vm_event)
}
}
@@ -6814,7 +6815,7 @@ states.vm_the_tyrant_is_gone = { },
prompt() {
if (game.persistent_events['the_tyrant_is_gone']=== 0) {
- view.prompt = 'Select a space in Romania.'
+ view.prompt = 'The Tyrant is Gone: Select a space in Romania for the Ceausescus to flee to.'
for (let space_id of game.valid_spaces) {
if (!space_id) continue
gen_action_infl(spaces[space_id].name_unique);
|