summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/rules.js b/rules.js
index 1a8cee1..8aa3358 100644
--- a/rules.js
+++ b/rules.js
@@ -5923,7 +5923,7 @@ states.vm_add_infl = {
prompt_event("No available spaces remaining.")
gen_action('done')
} else if (game.vm_available_ops > 0) {
- prompt_event(`Add ${pluralize(game.vm_available_ops,'SP')}${event_prompt()}.`)
+ prompt_event(`Place ${pluralize(game.vm_available_ops,'SP')}${event_prompt()}.`)
for (let space_id of game.valid_spaces) {
gen_action_space(space_id)
@@ -5961,7 +5961,7 @@ states.vm_add_infl_free = {
prompt_event("No available spaces remaining.")
gen_action('done')
} else if (game.vm_available_ops > 0) {
- prompt_event(`Add ${game.vm_available_ops} SPs to ${event_prompt()}.`)
+ prompt_event(`Place ${game.vm_available_ops} SPs to ${event_prompt()}.`)
for (let space_id of game.valid_spaces) {
gen_action_space(space_id)
@@ -6001,7 +6001,7 @@ states.vm_add_x_infl = {
prompt_event("The Romanian Elite space no longer exists.")
gen_action('done')
} else if (game.vm_available_ops > 0) {
- prompt_event(`Add ${game.vm_available_ops} SPs to ${event_prompt()}.`)
+ prompt_event(`Place ${game.vm_available_ops} SPs to ${event_prompt()}.`)
for (let space_id of game.valid_spaces) {
gen_action_space(space_id)
@@ -6027,10 +6027,10 @@ states.vm_add_limited_infl = {
prompt() {
if (game.vm_available_ops > 0 && game.valid_spaces.length > 0) {
if (game.vm_max_infl === 1) {
- prompt_event(`Add ${pluralize(game.vm_max_infl,'SP')} ${event_prompt()}.`)
+ prompt_event(`Place ${pluralize(game.vm_max_infl,'SP')} ${event_prompt()}.`)
}
else {
- prompt_event(`Add ${pluralize(game.vm_available_ops,'SP')} to ${event_prompt()}.`)
+ prompt_event(`Place ${pluralize(game.vm_available_ops,'SP')} to ${event_prompt()}.`)
}
for (let space_id of game.valid_spaces) {
gen_action_space(space_id)