diff --git a/Mage/src/mage/abilities/keyword/EvolveAbility.java b/Mage/src/mage/abilities/keyword/EvolveAbility.java index 0ed888ad8a..4c3999afa3 100644 --- a/Mage/src/mage/abilities/keyword/EvolveAbility.java +++ b/Mage/src/mage/abilities/keyword/EvolveAbility.java @@ -129,6 +129,9 @@ class EvolveEffect extends OneShotEffect { public boolean apply(Game game, Ability source) { UUID triggeringCreatureId = (UUID) getValue("triggeringCreature"); Permanent triggeringCreature = game.getPermanent(triggeringCreatureId); + if (triggeringCreature == null) { + triggeringCreature = (Permanent) game.getLastKnownInformation(triggeringCreatureId, Zone.BATTLEFIELD); + } if (triggeringCreature != null) { Permanent sourceCreature = game.getPermanent(source.getSourceId()); if (sourceCreature != null && EvolveAbility.isPowerOrThoughnessGreater(sourceCreature, triggeringCreature)) {