summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-10-18 15:17:02 +0200
committerMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-10-18 15:17:02 +0200
commit9e8c26e997b4842cd64a0b745e6f7833bd8374f5 (patch)
tree91a1d1e5ef89fbe09504ebf1492311853cf7a205
parentebcf6aee7aadfe5af296592a07ec25eae591d48c (diff)
downloadalgeria-9e8c26e997b4842cd64a0b745e6f7833bd8374f5.tar.gz
no contact for move missions, gov cant react to propaganda in france
-rw-r--r--rules.js3
1 files changed, 2 insertions, 1 deletions
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)
}