diff --git a/Mage.Sets/src/mage/cards/o/OmnivorousFlytrap.java b/Mage.Sets/src/mage/cards/o/OmnivorousFlytrap.java index ffb70fe22e99..31db43fd2afa 100644 --- a/Mage.Sets/src/mage/cards/o/OmnivorousFlytrap.java +++ b/Mage.Sets/src/mage/cards/o/OmnivorousFlytrap.java @@ -45,7 +45,9 @@ public OmnivorousFlytrap(UUID ownerId, CardSetInfo setInfo) { new OmnivorousFlytrapEffect(), new OmnivorousFlytrapCondition()) .concatBy("Then")); - ability.addTarget(new TargetCreaturePermanentAmount(2)); + TargetCreaturePermanentAmount target = new TargetCreaturePermanentAmount(2); + target.setMinNumberOfTargets(1); + ability.addTarget(target); ability.addHint(CardTypesInGraveyardHint.YOU); this.addAbility(ability.setAbilityWord(AbilityWord.DELIRIUM)); }