diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-10-10 15:09:16 +0200 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-10-10 15:09:16 +0200 |
commit | fc5bf099c74f448bef899dfb28c1fcc41f6a6690 (patch) | |
tree | de8e699f436ec8ddbe1f6b6131a246b760170913 | |
parent | df38c348138bfddbce1003ffd02cd0d7d5bd58d7 (diff) | |
download | algeria-fc5bf099c74f448bef899dfb28c1fcc41f6a6690.tar.gz |
only do strike roll when needed
-rw-r--r-- | rules.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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() |