Skip to content

Commit

Permalink
Require at least one target
Browse files Browse the repository at this point in the history
  • Loading branch information
Cguy7777 committed Nov 27, 2024
1 parent a6e95c4 commit 22c3f5c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Mage.Sets/src/mage/cards/o/OmnivorousFlytrap.java
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
Expand Down

0 comments on commit 22c3f5c

Please sign in to comment.