diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-04-06 14:44:52 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-04-06 14:44:52 +0200 |
commit | 49b9e96260ad49200fea2dc017510db0185a011d (patch) | |
tree | 1980f2788e802b845d0fdf43dae4b48091a8aaca /rules.js | |
parent | 02c683f0a420a5474648df78379a17c3595a81d0 (diff) | |
download | crusader-rex-49b9e96260ad49200fea2dc017510db0185a011d.tar.gz |
Fix deployment block name prompt.
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1044,7 +1044,7 @@ states.frank_deployment_to = { prompt: function (view, current) { if (is_inactive_player(current)) return view.prompt = "Deployment: Waiting for " + game.active + "." - view.prompt = "Deployment: Move " + game.who + " to " + block_seat_names_or[game.who] + "." + view.prompt = "Deployment: Move " + block_name(game.who) + " to " + block_seat_names_or[game.who] + "." gen_action_undo(view) gen_action(view, 'block', game.who) let from = game.location[game.who] |