diff options
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);
|