diff --git a/Mage/src/mage/abilities/effects/PlaneswalkerRedirectionEffect.java b/Mage/src/mage/abilities/effects/PlaneswalkerRedirectionEffect.java index ef41ad4a83b..237117e58fc 100644 --- a/Mage/src/mage/abilities/effects/PlaneswalkerRedirectionEffect.java +++ b/Mage/src/mage/abilities/effects/PlaneswalkerRedirectionEffect.java @@ -82,6 +82,10 @@ public class PlaneswalkerRedirectionEffect extends RedirectionEffect { @Override public boolean skipStep(Game game, UUID activePlayerId) { - if (game.getCombat().noAttackers()) + if (game.getCombat().noAttackers()) { return true; + } return super.skipStep(game, activePlayerId); }