Update MysticReflection.java

Fixed Mystic Reflection not working with planeswalkers.
This commit is contained in:
Jeff Wadsworth 2024-06-18 10:03:27 -05:00
parent 5ec837211f
commit 675639013a

View file

@ -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