From 70de38c90fd0a1147c7a20cdfc84c0afaa4d72e9 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sat, 6 Dec 2014 10:33:01 +0100 Subject: [PATCH] * Fixed that face down cards moved from exile to hand are wrongly revealed in log (e.g. Necropotence). --- .../abilities/effects/common/ReturnToHandTargetEffect.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/Mage/src/mage/abilities/effects/common/ReturnToHandTargetEffect.java b/Mage/src/mage/abilities/effects/common/ReturnToHandTargetEffect.java index 31da7cb982..777a36d509 100644 --- a/Mage/src/mage/abilities/effects/common/ReturnToHandTargetEffect.java +++ b/Mage/src/mage/abilities/effects/common/ReturnToHandTargetEffect.java @@ -91,9 +91,6 @@ public class ReturnToHandTargetEffect extends OneShotEffect { card = game.getCard(targetId); if (card != null) { controller.moveCardToHandWithInfo(card, source.getSourceId(), game, Zone.EXILED); - if (card.isFaceDown()) { - card.setFaceDown(false); - } } else { result = false; }