mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
Fixed #11473
This commit is contained in:
parent
c5632f6868
commit
a4c90d9b71
1 changed files with 3 additions and 5 deletions
|
|
@ -14,12 +14,10 @@ import mage.constants.AttachmentType;
|
|||
import mage.constants.CardType;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.SubType;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
import mage.filter.predicate.permanent.TokenPredicate;
|
||||
import mage.target.TargetPermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.target.common.TargetControlledCreaturePermanent;
|
||||
|
||||
/**
|
||||
|
|
@ -27,7 +25,7 @@ import mage.target.common.TargetControlledCreaturePermanent;
|
|||
*/
|
||||
public final class TeamPennant extends CardImpl {
|
||||
|
||||
private static final FilterPermanent filter = new FilterCreaturePermanent("creature token");
|
||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("creature token");
|
||||
|
||||
static {
|
||||
filter.add(TokenPredicate.TRUE);
|
||||
|
|
@ -50,7 +48,7 @@ public final class TeamPennant extends CardImpl {
|
|||
|
||||
// Equip creature token {1}
|
||||
this.addAbility(new EquipAbility(
|
||||
Outcome.BoostCreature, new GenericManaCost(1), new TargetPermanent(filter), false
|
||||
Outcome.BoostCreature, new GenericManaCost(1), new TargetControlledCreaturePermanent(filter), false
|
||||
));
|
||||
|
||||
// Equip {3}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue