From fc5bf099c74f448bef899dfb28c1fcc41f6a6690 Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Tue, 10 Oct 2023 15:09:16 +0200 Subject: only do strike roll when needed --- rules.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rules.js b/rules.js index 796f9b8..e2a3576 100644 --- a/rules.js +++ b/rules.js @@ -2223,7 +2223,7 @@ states.fln_propaganda = { } } - if (result !== 0) { + if (result) { goto_distribute_psp(FLN, result, 'propaganda') } else { end_fln_mission() @@ -2409,7 +2409,6 @@ states.fln_strike = { if (is_area_terrorized(loc)) drm -= 1 let [result, effect] = roll_mst(drm) - let strike_result = roll_nd6(result) if (effect === '+') { // bad effect: all FLN units involved in the mission are removed: a Cadre is eliminated; a Front is reduced to a Cadre. @@ -2431,7 +2430,8 @@ states.fln_strike = { }) } - if (result !== 0) { + if (result) { + let strike_result = roll_nd6(result) goto_distribute_psp(FLN, strike_result, 'strike') } else { end_fln_mission() -- cgit v1.2.3