From 9e8c26e997b4842cd64a0b745e6f7833bd8374f5 Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Wed, 18 Oct 2023 15:17:02 +0200 Subject: no contact for move missions, gov cant react to propaganda in france --- rules.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rules.js b/rules.js index f6fdea8..0815527 100644 --- a/rules.js +++ b/rules.js @@ -3180,7 +3180,6 @@ states.fln_move = { } let [_result, effect] = roll_mst(drm) - set_add(game.contacted, unit) if (effect === '+') { eliminate_unit(unit) } else { @@ -3627,6 +3626,8 @@ function can_gov_react() { if (!game.contacted.length) return false let loc = unit_loc(game.contacted[0]) + if (is_area_france(loc)) + return false return has_gov_react_units_in_loc(loc) } -- cgit v1.2.3