Skip to content

Commit

Permalink
Don't set minimum targets here
Browse files Browse the repository at this point in the history
  • Loading branch information
Cguy7777 committed Nov 30, 2024
1 parent f7b0fa1 commit c2713ad
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Mage.Sets/src/mage/cards/o/OmnivorousFlytrap.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,7 @@ public OmnivorousFlytrap(UUID ownerId, CardSetInfo setInfo) {
new OmnivorousFlytrapEffect(),
new OmnivorousFlytrapCondition())
.concatBy("Then"));
TargetCreaturePermanentAmount target = new TargetCreaturePermanentAmount(2);
target.setMinNumberOfTargets(1);
ability.addTarget(target);
ability.addTarget(new TargetCreaturePermanentAmount(2));
ability.addHint(CardTypesInGraveyardHint.YOU);
this.addAbility(ability.setAbilityWord(AbilityWord.DELIRIUM));
}
Expand Down

0 comments on commit c2713ad

Please sign in to comment.