From 8298fed69a64c4b82cb9bb969436105ab249f27b Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Sat, 14 Oct 2023 13:38:43 +0200 Subject: React Gov units go to OC if all FLN units evade and there isn't actually any combat --- rules.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rules.js b/rules.js index 4d82311..31ac783 100644 --- a/rules.js +++ b/rules.js @@ -3384,6 +3384,11 @@ states.gov_react = { } goto_combat() } else { + // React Gov units go to OC if all FLN units evade and there isn't actually any combat + for (let u of list) { + if (is_mobile_unit(u)) + set_unit_box(u, OC) + } end_gov_mission() } } -- cgit v1.2.3