From 3320cc77f28d56c33f7af492f87b4f06012937e3 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Tue, 22 Jun 2021 14:13:01 +0200 Subject: crusader: Only force next hit on half-hit if on your own side. --- rules.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules.js b/rules.js index 335cc1d..a476fe1 100644 --- a/rules.js +++ b/rules.js @@ -2315,7 +2315,7 @@ function goto_storm_battle_hits() { } function list_storm_victims() { - if (game.halfhit) + if (game.halfhit && block_owner(game.halfhit) == game.active) return [ game.halfhit ]; let max = 0; for (let b in BLOCKS) -- cgit v1.2.3