From d7ffc19737f54d569d542dbd9e9d87e0c92ad007 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Fri, 27 Mar 2015 09:32:05 +0100 Subject: [PATCH] * Feldon of the Third Path - Fixed that to the token was no Artifact card type added. --- .../src/mage/sets/commander2014/FeldonOfTheThirdPath.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/commander2014/FeldonOfTheThirdPath.java b/Mage.Sets/src/mage/sets/commander2014/FeldonOfTheThirdPath.java index 7512e466b14..7bdf557c6a7 100644 --- a/Mage.Sets/src/mage/sets/commander2014/FeldonOfTheThirdPath.java +++ b/Mage.Sets/src/mage/sets/commander2014/FeldonOfTheThirdPath.java @@ -106,9 +106,12 @@ class FeldonOfTheThirdPathEffect extends OneShotEffect { Card card = game.getCard(getTargetPointer().getFirst(game, source)); if (card != null) { EmptyToken token = new EmptyToken(); - // This fails if a card will be copied, that uses adjustTargets() method. + // TODO: This fails if a card will be copied, that uses adjustTargets() method. CardUtil.copyTo(token).from(card); + if (!token.getCardType().contains(CardType.ARTIFACT)) { + token.getCardType().add(CardType.ARTIFACT); + } token.addAbility(HasteAbility.getInstance()); token.putOntoBattlefield(1, game, source.getSourceId(), source.getControllerId());