diff options
Diffstat (limited to 'play.js')
-rw-r--r-- | play.js | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -120,7 +120,7 @@ const piece_name = [ "Saxon ST", "Pragmatic Army ST", "Austrian ST", "Austrian ST", "Austrian ST", - "hussars", "hussars", + "Hussars", "Hussars", ] let suit_class = [ "spades", "clubs", "hearts", "diamonds", "reserve" ] @@ -972,11 +972,12 @@ function on_update() { action_button_with_argument("value", v, v) for (let p = 0; p < 20; ++p) { - action_button_with_argument("unstack", p, "Unstack " + piece_abbr[p]) action_button_with_argument("promote", p, "Promote " + piece_abbr[p]) action_button_with_argument("demote", p, "Demote " + piece_abbr[p]) } + action_button("force_march", "Force march") + action_button("take", "Take") action_button("give", "Give") action_button("recruit", "Recruit") |