diff --git a/forge-game/src/main/java/forge/game/ability/effects/ChooseCardEffect.java b/forge-game/src/main/java/forge/game/ability/effects/ChooseCardEffect.java index 9a8df7b8343..5d7083bf5ab 100644 --- a/forge-game/src/main/java/forge/game/ability/effects/ChooseCardEffect.java +++ b/forge-game/src/main/java/forge/game/ability/effects/ChooseCardEffect.java @@ -52,7 +52,7 @@ public class ChooseCardEffect extends SpellAbilityEffect { } CardCollectionView choices = game.getCardsIn(choiceZone); if (sa.hasParam("Choices")) { - choices = CardLists.getValidCards(choices, sa.getParam("Choices"), activator, host); + choices = CardLists.getValidCards(choices, sa.getParam("Choices"), activator, host, sa); } if (sa.hasParam("TargetControls")) { choices = CardLists.filterControlledBy(choices, tgtPlayers.get(0));