* Fixed that face down cards moved from exile to hand are wrongly revealed in log (e.g. Necropotence).

This commit is contained in:
LevelX2 2014-12-06 10:33:01 +01:00
parent ff99a9ba21
commit 70de38c90f

View file

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