From 92ecc766e97ebf07d6b473481c340ffb78d7e96d Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Thu, 17 Apr 2014 16:37:28 +0200 Subject: [PATCH] Added message to game log if a player redirects damage to a planeswalker. --- .../mage/abilities/effects/PlaneswalkerRedirectionEffect.java | 4 ++++ Mage/src/mage/game/turn/DeclareBlockersStep.java | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) 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); }