From bd58c7d24791dc7360f380c9277b99dc9426be41 Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Thu, 12 Oct 2023 14:27:24 +0200 Subject: propaganda in france --- rules.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/rules.js b/rules.js index ce0579a..ce92972 100644 --- a/rules.js +++ b/rules.js @@ -2255,6 +2255,12 @@ states.fln_operations = { if (is_harass_unit(u)) view.actions.harass = 1 }) + if (game.fln_ap >= FLN_PROPAGANDA_COST) { + for_each_friendly_unit_in_loc(FRANCE, u => { + if (is_propaganda_unit(u)) + view.actions.propaganda = 1 + }) + } for_each_friendly_unit_in_locs([MOROCCO, TUNISIA], u => { if (is_mobile_unit(u) && unit_box(u) === OPS) view.actions.move = 1 @@ -2329,6 +2335,11 @@ states.fln_propaganda = { gen_action_unit(u) } }) + for_each_friendly_unit_in_loc(FRANCE, u => { + if (is_propaganda_unit(u)) { + gen_action_unit(u) + } + }) } else { view.prompt = "Propaganda: Execute mission" let first_unit = game.selected[0] -- cgit v1.2.3