From a6094afa406071812be92fda1c50d03f2361251f Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Fri, 1 Jul 2016 17:04:42 +0200 Subject: [PATCH] * Worldheart Phoenix - Fixed that if cast from graveyard the counters were not added. --- .../src/mage/sets/modernmasters2015/WorldheartPhoenix.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/modernmasters2015/WorldheartPhoenix.java b/Mage.Sets/src/mage/sets/modernmasters2015/WorldheartPhoenix.java index 9961f8c2b6..bd2b489c59 100644 --- a/Mage.Sets/src/mage/sets/modernmasters2015/WorldheartPhoenix.java +++ b/Mage.Sets/src/mage/sets/modernmasters2015/WorldheartPhoenix.java @@ -134,7 +134,7 @@ public class WorldheartPhoenix extends CardImpl { @Override public boolean apply(Game game, Ability source) { - Permanent permanent = game.getPermanent(source.getSourceId()); + Permanent permanent = game.getPermanentEntering(source.getSourceId()); if (permanent != null) { SpellAbility spellAbility = (SpellAbility) getValue(EntersBattlefieldEffect.SOURCE_CAST_SPELL_ABILITY); if (spellAbility != null