This commit is contained in:
drmDev 2016-07-08 08:51:21 -04:00
commit 18e8a6dc49
3 changed files with 99 additions and 6 deletions

View file

@ -152,7 +152,7 @@ class ExclusionRitualReplacementEffect extends ContinuousRuleModifyingEffectImpl
if (spell != null && spell.isFaceDown(game)) {
return false; // Face Down cast spell (Morph creature) has no name
}
return card.getName().equals(creatureName);
return card.getName().equals(creatureName) && ownerId == card.getOwnerId();
}
return false;
}