From 22c3f5c61bbd5e4f719c439d5e505c1c6b1a07e9 Mon Sep 17 00:00:00 2001 From: Cameron Merkel <44722506+cguy7777@users.noreply.github.com> Date: Wed, 27 Nov 2024 01:10:08 -0600 Subject: [PATCH] Require at least one target --- Mage.Sets/src/mage/cards/o/OmnivorousFlytrap.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)); }