From 7abb6cd6ec409da23a469582f670a09b965f74cd Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sun, 1 Sep 2024 20:08:10 +0200 Subject: Fix missing self hits from extra abilities (S28 Johnson). This case was dropped accidentally when refactoring the effect texts... --- rules.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rules.js b/rules.js index a23148d..2461128 100644 --- a/rules.js +++ b/rules.js @@ -2943,6 +2943,9 @@ function update_attack1(is_absorb = false) { if (card_has_rule(target, "suffer_1_less_1_max")) game.hits = Math.max(0, Math.min(1, game.hits - 1)) + + if (game.self2) + game.self += game.self2 } // Update hits and self hits for defensive abilities that redirect or steal hits. -- cgit v1.2.3