From 7a4fb3e5f09275f7a4fb517177ec243eee2bff5d Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Fri, 27 Oct 2023 14:38:28 +0200 Subject: harass logging --- rules.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/rules.js b/rules.js index 5282afe..8d816ae 100644 --- a/rules.js +++ b/rules.js @@ -3569,11 +3569,8 @@ states.fln_harass = { roll() { let list = game.selected game.selected = [] - let first_unit = list[0] - let loc = unit_loc(first_unit) clear_undo() - log_h3(`Harass in A${loc}`) game.combat = { fln_units: [], gov_units: [], @@ -3598,7 +3595,12 @@ function goto_combat() { let loc = unit_loc(game.combat.fln_units[0]) - log_h3(`Combat in A${loc}`) + if (game.combat.harass) { + log_h3(`Harass in A${loc}`) + } else { + log_h3(`Combat in A${loc}`) + } + // Result is the number of 'hits' on enemy units. let fln_firepower = 0 -- cgit v1.2.3