diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-10-15 15:19:00 +0200 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-10-15 15:19:00 +0200 |
commit | 0e39c6726bbf2647b4acbcf598c48345c7049c90 (patch) | |
tree | d4e7d21e6deda57413552014d00e83dfe25eaf0b | |
parent | e574cc6d2ecabe8459ed7b8714087bc37155b68d (diff) | |
download | algeria-0e39c6726bbf2647b4acbcf598c48345c7049c90.tar.gz |
dont allow deployment back to UG
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2190,7 +2190,7 @@ states.fln_deployment = { if (game.selected.length === 0) { for_each_friendly_unit_on_map(u => { let loc = unit_loc(u) - if ((unit_box(u) === OPS || unit_box(u) === UG) && !is_area_morocco_or_tunisia(loc) && !(game.deploy_cadre_france && is_area_france(loc))) + if (unit_box(u) === UG && !is_area_morocco_or_tunisia(loc) && !(game.deploy_cadre_france && is_area_france(loc))) gen_action_unit(u) }) } else { |