diff --git a/Mage.Sets/src/mage/cards/z/ZndrspltsJudgment.java b/Mage.Sets/src/mage/cards/z/ZndrspltsJudgment.java index c211e1ac14c..78df19c5b6c 100644 --- a/Mage.Sets/src/mage/cards/z/ZndrspltsJudgment.java +++ b/Mage.Sets/src/mage/cards/z/ZndrspltsJudgment.java @@ -72,7 +72,7 @@ class ZndrspltsJudgmentEffect extends OneShotEffect { } FilterCreaturePermanent filter = new FilterCreaturePermanent("creature you control"); filter.add(new ControllerIdPredicate(player.getId())); - TargetCreaturePermanent target = new TargetCreaturePermanent(filter); + TargetCreaturePermanent target = new TargetCreaturePermanent(1, 1, filter, true); if (!player.choose(Outcome.Copy, target, source, game)) { continue; } @@ -83,7 +83,7 @@ class ZndrspltsJudgmentEffect extends OneShotEffect { for (Player player : choice.getFoes()) { FilterCreaturePermanent filter = new FilterCreaturePermanent("creature you control"); filter.add(new ControllerIdPredicate(player.getId())); - TargetCreaturePermanent target = new TargetCreaturePermanent(filter); + TargetCreaturePermanent target = new TargetCreaturePermanent(1, 1, filter, true); if (!player.choose(Outcome.ReturnToHand, target, source, game)) { continue; }