mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -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);
|
Permanent targetedPermanent = (Permanent) game.getState().getValue("MysticReflection" + identifier);
|
||||||
return permanentEnteringTheBattlefield != null
|
return permanentEnteringTheBattlefield != null
|
||||||
&& targetedPermanent != null
|
&& targetedPermanent != null
|
||||||
&& permanentEnteringTheBattlefield.isCreature(game);
|
&& permanentEnteringTheBattlefield.isCreature(game)
|
||||||
|
|| permanentEnteringTheBattlefield.isPlaneswalker(game);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue