diff options
Diffstat (limited to 'play.js')
-rw-r--r-- | play.js | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1018,7 +1018,7 @@ function on_update() { for (let region = 0; region < 12; ++region) { for (let p = 0; p < 4; ++p) { let gov = get_province_governor(region) - if (gov > 0 && (gov/6|0) === p) { + if (gov >= 0 && (gov/6|0) === p) { if (is_seat_of_power(region)) show(ui.seat_of_power[region + p * 12]) else @@ -1314,6 +1314,8 @@ function on_update() { for (let e of action_register) e.classList.toggle("action", is_action(e.my_action, e.my_id)) + action_button("play_all", "Play All") + action_button("enter", "Enter Capital") action_button("leave", "Leave Capital") @@ -1338,12 +1340,11 @@ function on_update() { action_button("recruit_general", "Recruit General") action_button("recruit_governor", "Recruit Governor") - action_button("play_all", "Play All") + action_button("keep", "Keep") action_button("end_actions", "End Actions") + action_button("end_turn", "End Turn") - action_button("continue", "Continue") - action_button("save", "Save") action_button("pass", "Pass") action_button("done", "Done") action_button("undo", "Undo") |