diff options
-rw-r--r-- | play.js | 4 | ||||
-rw-r--r-- | rules.js | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -796,8 +796,8 @@ function on_update() { action_button("continue", "Continue playing") action_button("extra", "Take action round") action_button("pass", "Pass") - action_button("remove", "Remove SPs") - action_button("add", "Add SPs") + action_button("remove", "Remove") + action_button("add", "Place") action_button("ops", "Operations") action_button("discard", "Discard") action_button("strike", "Strike") @@ -7345,6 +7345,10 @@ states.vm_nomenklatura = { prompt() { view.prompt = 'Nomenklatura: Choose to remove all Democratic SPs from Elite spaces or place 3 SPs in any Elite space(s).' gen_action('remove') + let dem_elites = spaces.filter((space) => space.socio === SOCIO_ELITE && game.demInfl[space.space_id] > 0).length + if (dem_elites === 0) { + view.actions.remove = 0 + } gen_action('add') }, remove() { |