From f5f17cc73efd9528646d786d3120e68af4755c0b Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Wed, 19 Oct 2022 20:12:25 -0400 Subject: [PATCH] fix verify failure --- Mage.Sets/src/mage/cards/b/BarroomBrawl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/b/BarroomBrawl.java b/Mage.Sets/src/mage/cards/b/BarroomBrawl.java index dead5df028e..d113e40150f 100644 --- a/Mage.Sets/src/mage/cards/b/BarroomBrawl.java +++ b/Mage.Sets/src/mage/cards/b/BarroomBrawl.java @@ -40,7 +40,7 @@ public final class BarroomBrawl extends CardImpl { super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{G}"); // Target creature you control fights target creature the opponent to your left controls. Then that player may copy this spell and may choose new targets for the copy. - this.getSpellAbility().addEffect(new FightTargetsEffect()); + this.getSpellAbility().addEffect(new FightTargetsEffect(false)); this.getSpellAbility().addEffect(new BarroomBrawlEffect()); this.getSpellAbility().addTarget(new TargetControlledCreaturePermanent()); this.getSpellAbility().addTarget(new TargetPermanent(filter));