Reflector Mage restriction effect fix

This commit is contained in:
drmDev 2016-07-07 20:27:49 -04:00
parent 7172606506
commit 16ce177143
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;
}