diff --git a/Mage.Sets/src/mage/cards/b/BloodfeatherPhoenix.java b/Mage.Sets/src/mage/cards/b/BloodfeatherPhoenix.java index a2f58542d98..9a7aa1cc778 100644 --- a/Mage.Sets/src/mage/cards/b/BloodfeatherPhoenix.java +++ b/Mage.Sets/src/mage/cards/b/BloodfeatherPhoenix.java @@ -118,7 +118,7 @@ class BloodfeatherPhoenixEffect extends OneShotEffect { return false; } player.moveCards(game.getCard(sourceObject.getId()), Zone.BATTLEFIELD, source, game); - if (game.getPermanent(source.getId()) != null) { + if (game.getPermanent(source.getSourceId()) != null) { game.addEffect(new GainAbilityTargetEffect(HasteAbility.getInstance()) .setTargetPointer(new FixedTarget(source.getSourceId(), game)), source); }