diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-20 17:01:40 +0100 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-20 17:01:40 +0100 |
commit | 674b010505c1e1f15d950cffcd7b1dbf7ab4ce9a (patch) | |
tree | 2a4d0c167e20161b95895f947e7925b8eafe9bd7 | |
parent | 0636988083eeae4ed7eb95a4d6961dab35accf76 (diff) | |
download | 1989-dawn-of-freedom-674b010505c1e1f15d950cffcd7b1dbf7ab4ce9a.tar.gz |
Update Shock Therapy log
-rw-r--r-- | rules.js | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -6608,7 +6608,7 @@ states.vm_shock_therapy = { view.prompt = 'Shock Therapy: done.'
gen_action('done')
} else {
- log(`Selected ${country_name(game.vm_active_country)}`)
+ log(`Chose ${country_name(game.vm_active_country)}`)
view.prompt = 'Shock Therapy: roll a die.'
gen_action('roll')
}
@@ -6616,32 +6616,26 @@ states.vm_shock_therapy = { east_germany() {
push_undo()
game.vm_active_country = 'East_Germany'
- log(`Chose ${country_name(game.vm_active_country)}`)
},
poland() {
push_undo()
game.vm_active_country = 'Poland'
- log(`Chose ${country_name(game.vm_active_country)}`)
},
czechoslovakia() {
push_undo()
game.vm_active_country = 'Czechoslovakia'
- log(`Chose ${country_name(game.vm_active_country)}`)
},
hungary() {
push_undo()
game.vm_active_country = 'Hungary'
- log(`Chose ${country_name(game.vm_active_country)}`)
},
romania() {
push_undo()
game.vm_active_country = 'Romania'
- log(`Chose ${country_name(game.vm_active_country)}`)
},
bulgaria () {
push_undo()
game.vm_active_country = 'Bulgaria'
- log(`Chose ${country_name(game.vm_active_country)}`)
},
roll() {
clear_undo()
|