mirror of
https://github.com/correl/mage.git
synced 2024-12-27 03:00:13 +00:00
* Worldheart Phoenix - Fixed that if cast from graveyard the counters were not added.
This commit is contained in:
parent
9a1c67a9a4
commit
a6094afa40
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ public class WorldheartPhoenix extends CardImpl {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean apply(Game game, Ability source) {
|
public boolean apply(Game game, Ability source) {
|
||||||
Permanent permanent = game.getPermanent(source.getSourceId());
|
Permanent permanent = game.getPermanentEntering(source.getSourceId());
|
||||||
if (permanent != null) {
|
if (permanent != null) {
|
||||||
SpellAbility spellAbility = (SpellAbility) getValue(EntersBattlefieldEffect.SOURCE_CAST_SPELL_ABILITY);
|
SpellAbility spellAbility = (SpellAbility) getValue(EntersBattlefieldEffect.SOURCE_CAST_SPELL_ABILITY);
|
||||||
if (spellAbility != null
|
if (spellAbility != null
|
||||||
|
|
Loading…
Reference in a new issue