mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00: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.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"
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue