[KHM] fixed Battle for Bretagard allowing controller to copy tokens they don't control (fixes #7642)

This commit is contained in:
Evan Kranzler 2021-03-03 22:14:42 -05:00
parent afcdc0f23a
commit 87c272bf06

View file

@ -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"
);