diff --git a/forge-game/src/main/java/forge/ai/ability/ChooseSourceAi.java b/forge-game/src/main/java/forge/ai/ability/ChooseSourceAi.java index 61e398e81ca..44eac4b4a7a 100644 --- a/forge-game/src/main/java/forge/ai/ability/ChooseSourceAi.java +++ b/forge-game/src/main/java/forge/ai/ability/ChooseSourceAi.java @@ -82,8 +82,7 @@ public class ChooseSourceAi extends SpellAbilityAi { } final Card threatSource = topStack.getSourceCard(); - List objects = getTargets(sa); - + List objects = getTargets(topStack); if (!topStack.usesTargeting() && topStack.hasParam("ValidPlayers") && !topStack.hasParam("Defined")) { objects = AbilityUtils.getDefinedPlayers(threatSource, topStack.getParam("ValidPlayers"), topStack); }