mirror of
https://github.com/magefree/mage.git
synced 2026-01-23 19:59:54 -08:00
Reflector Mage restriction effect fix
This commit is contained in:
parent
7172606506
commit
16ce177143
3 changed files with 99 additions and 6 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue