mirror of
https://github.com/correl/mage.git
synced 2025-03-16 09:16:26 -09:00
[KHM] fixed Battle for Bretagard allowing controller to copy tokens they don't control (fixes #7642)
This commit is contained in:
parent
afcdc0f23a
commit
87c272bf06
1 changed files with 2 additions and 1 deletions
|
@ -13,6 +13,7 @@ import mage.constants.Outcome;
|
||||||
import mage.constants.SagaChapter;
|
import mage.constants.SagaChapter;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
import mage.filter.FilterPermanent;
|
import mage.filter.FilterPermanent;
|
||||||
|
import mage.filter.common.FilterControlledPermanent;
|
||||||
import mage.filter.predicate.Predicates;
|
import mage.filter.predicate.Predicates;
|
||||||
import mage.filter.predicate.permanent.TokenPredicate;
|
import mage.filter.predicate.permanent.TokenPredicate;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
|
@ -100,7 +101,7 @@ class BattleForBretagardEffect extends OneShotEffect {
|
||||||
|
|
||||||
class BattleForBretagardTarget extends TargetPermanent {
|
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"
|
"artifact tokens and/or creature tokens you control with different names"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue