mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
Update MysticReflection.java
Fixed Mystic Reflection not working with planeswalkers.
This commit is contained in:
parent
5ec837211f
commit
675639013a
1 changed files with 2 additions and 1 deletions
|
|
@ -131,7 +131,8 @@ class MysticReflectionReplacementEffect extends ReplacementEffectImpl {
|
|||
Permanent targetedPermanent = (Permanent) game.getState().getValue("MysticReflection" + identifier);
|
||||
return permanentEnteringTheBattlefield != null
|
||||
&& targetedPermanent != null
|
||||
&& permanentEnteringTheBattlefield.isCreature(game);
|
||||
&& permanentEnteringTheBattlefield.isCreature(game)
|
||||
|| permanentEnteringTheBattlefield.isPlaneswalker(game);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue