From 87c272bf066ea153c00e80c585d3430ddbe91f40 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Wed, 3 Mar 2021 22:14:42 -0500 Subject: [PATCH] [KHM] fixed Battle for Bretagard allowing controller to copy tokens they don't control (fixes #7642) --- Mage.Sets/src/mage/cards/b/BattleForBretagard.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/b/BattleForBretagard.java b/Mage.Sets/src/mage/cards/b/BattleForBretagard.java index edaa0c7dd5c..555ba8e38b5 100644 --- a/Mage.Sets/src/mage/cards/b/BattleForBretagard.java +++ b/Mage.Sets/src/mage/cards/b/BattleForBretagard.java @@ -13,6 +13,7 @@ import mage.constants.Outcome; import mage.constants.SagaChapter; import mage.constants.SubType; import mage.filter.FilterPermanent; +import mage.filter.common.FilterControlledPermanent; import mage.filter.predicate.Predicates; import mage.filter.predicate.permanent.TokenPredicate; import mage.game.Game; @@ -100,7 +101,7 @@ class BattleForBretagardEffect extends OneShotEffect { class BattleForBretagardTarget extends TargetPermanent { - private static final FilterPermanent filter = new FilterPermanent( + private static final FilterPermanent filter = new FilterControlledPermanent( "artifact tokens and/or creature tokens you control with different names" );