summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-10-08 15:00:52 +0200
committerMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-10-08 15:00:52 +0200
commit858b8e1d4c3f2518fe5e38eac32bb1135bf01723 (patch)
tree756d57ed7d9035a2d9301168330af854b787fd38
parent27fc4a87545e496248a4ea20707c80c53771824d (diff)
downloadalgeria-858b8e1d4c3f2518fe5e38eac32bb1135bf01723.tar.gz
allow deployment of multiple gov units at once
-rw-r--r--rules.js12
1 files changed, 8 insertions, 4 deletions
diff --git a/rules.js b/rules.js
index c0dbc23..fcb48c9 100644
--- a/rules.js
+++ b/rules.js
@@ -1841,8 +1841,10 @@ states.gov_deployment = {
} else {
let first_unit = game.selected[0]
let first_unit_type = unit_type(first_unit)
+ let first_unit_loc = unit_loc(first_unit)
+ let first_unit_box= unit_box(first_unit)
- if (first_unit_type == FR_XX) {
+ if (first_unit_type == FR_XX && game.selected.length === 1) {
if (is_unit_not_neutralized(first_unit)) {
view.prompt = "Deploy activated mobile units to PTL or into OPS of another area, or change division mode"
} else {
@@ -1852,8 +1854,11 @@ states.gov_deployment = {
gen_action("change_division_mode")
}
- // Allow deselect
- gen_action_unit(first_unit)
+ for_each_friendly_unit_in_loc(first_unit_loc, u => {
+ if (unit_box(u) === first_unit_box && is_mobile_unit(u)) {
+ gen_action_unit(u)
+ }
+ })
if (is_unit_not_neutralized(first_unit)) {
for_each_algerian_map_area(loc => {
@@ -1862,7 +1867,6 @@ states.gov_deployment = {
}
}
- // XXX confirmation when no units are activated?
gen_action("end_deployment")
},
unit(u) {