From c937856adf6514edea37dafcd13df8bd66a2bce3 Mon Sep 17 00:00:00 2001 From: Steven Knipe Date: Thu, 29 Aug 2024 00:47:42 -0700 Subject: [PATCH] Fix Sontaran General (#12666) --- Mage.Sets/src/mage/cards/s/SontaranGeneral.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/s/SontaranGeneral.java b/Mage.Sets/src/mage/cards/s/SontaranGeneral.java index 8a3890791a8..25fb8b4d00d 100644 --- a/Mage.Sets/src/mage/cards/s/SontaranGeneral.java +++ b/Mage.Sets/src/mage/cards/s/SontaranGeneral.java @@ -14,6 +14,7 @@ import mage.constants.Duration; import mage.constants.SubType; import mage.target.common.TargetCreaturePermanent; import mage.target.targetadjustment.ForEachOpponentTargetsAdjuster; +import mage.target.targetpointer.EachTargetPointer; import java.util.UUID; @@ -38,9 +39,9 @@ public final class SontaranGeneral extends CardImpl { // Battalion -- Whenever Sontaran General and at least two other creatures attack, for each opponent, // goad up to one target creature that player controls. Those creatures can't block this turn. - Ability ability = new BattalionAbility(new GoadTargetEffect() + Ability ability = new BattalionAbility(new GoadTargetEffect().setTargetPointer(new EachTargetPointer()) .setText("for each opponent, goad up to one target creature that player controls.")); - ability.addEffect(new CantBlockTargetEffect(Duration.EndOfTurn) + ability.addEffect(new CantBlockTargetEffect(Duration.EndOfTurn).setTargetPointer(new EachTargetPointer()) .setText("Those creatures can't block this turn.")); ability.addTarget(new TargetCreaturePermanent(0, 1)); ability.setTargetAdjuster(new ForEachOpponentTargetsAdjuster());