From da60c53e3ac55db88cdbd99fe07cb1663eb25f66 Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Sun, 15 Oct 2023 10:09:49 +0200 Subject: remove (police) unit clears neutralized --- rules.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/rules.js b/rules.js index 9fd24b1..052f886 100644 --- a/rules.js +++ b/rules.js @@ -472,6 +472,13 @@ function eliminate_unit(u) { game.units[u] = 0 set_unit_loc(u, ELIMINATED) set_unit_box(u, OC) + clear_unit_neutralized(u) +} + +function remove_unit(u) { + set_unit_loc(u, DEPLOY) + set_unit_box(u, OC) + clear_unit_neutralized(u) } function evade_unit(u) { @@ -1790,8 +1797,7 @@ states.gov_reinforcement = { for (let u of list) { let loc = unit_loc(u) log(`>U${u} from A${loc}`) - set_unit_loc(u, DEPLOY) - set_unit_box(u, OC) + remove_unit(u) } }, acquire_air_point() { -- cgit v1.2.3