summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-10-10 15:09:16 +0200
committerMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-10-10 15:09:16 +0200
commitfc5bf099c74f448bef899dfb28c1fcc41f6a6690 (patch)
treede8e699f436ec8ddbe1f6b6131a246b760170913
parentdf38c348138bfddbce1003ffd02cd0d7d5bd58d7 (diff)
downloadalgeria-fc5bf099c74f448bef899dfb28c1fcc41f6a6690.tar.gz
only do strike roll when needed
-rw-r--r--rules.js6
1 files 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()