diff --git a/Mage.Sets/src/mage/sets/commander2014/FeldonOfTheThirdPath.java b/Mage.Sets/src/mage/sets/commander2014/FeldonOfTheThirdPath.java index 7512e466b1..7bdf557c6a 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());