Skip to content

Commit

Permalink
Boxing Ring - fixed that it allow to select own permanents
Browse files Browse the repository at this point in the history
  • Loading branch information
JayDi85 committed Sep 18, 2024
1 parent 91c1d1d commit e7dc75d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Mage.Sets/src/mage/cards/b/BoxingRing.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,10 @@
import mage.abilities.effects.common.CreateTokenEffect;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.Outcome;
import mage.constants.WatcherScope;
import mage.constants.Zone;
import mage.constants.*;
import mage.filter.FilterPermanent;
import mage.filter.StaticFilters;
import mage.filter.common.FilterControlledCreaturePermanent;
import mage.filter.common.FilterCreaturePermanent;
import mage.filter.predicate.ObjectSourcePlayer;
import mage.filter.predicate.ObjectSourcePlayerPredicate;
Expand All @@ -41,6 +39,7 @@ public final class BoxingRing extends CardImpl {
= new FilterCreaturePermanent("creature you don't control with the same mana value");

static {
filter.add(TargetController.NOT_YOU.getControllerPredicate());
filter.add(BoxingRingPredicate.instance);
}

Expand Down

0 comments on commit e7dc75d

Please sign in to comment.