diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -7459,8 +7459,8 @@ function goto_strike() { for (let pos of current_strike_positions()) { let lord = get_battle_array(pos) if (lord !== NOBODY) { - let hits = (game.battle.ah[pos] = count_lord_hits(lord)) - let xhits = (game.battle.ahx[pos] = count_lord_xhits(lord)) + let hits = count_lord_hits(lord) + let xhits = count_lord_xhits(lord) // STORM: Max 6 hits per lord in melee (12 since we count half-hits). if (game.battle.storm) { @@ -7468,6 +7468,9 @@ function goto_strike() { hits = 12 } + game.battle.ah[pos] = hits + game.battle.ahx[pos] = xhits + if (xhits > 2) log(`L${lord} ${xhits / 2} crossbow hits`) else if (xhits > 0) |