From 86acc5524381dcdfdf284e5275d8b7165f0e789d Mon Sep 17 00:00:00 2001 From: xenohedron Date: Fri, 7 Jul 2023 23:10:11 -0400 Subject: [PATCH] fix Bloodfeather Phoenix --- Mage.Sets/src/mage/cards/b/BloodfeatherPhoenix.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }