mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
* Fixed that face down cards moved from exile to hand are wrongly revealed in log (e.g. Necropotence).
This commit is contained in:
parent
ff99a9ba21
commit
70de38c90f
1 changed files with 0 additions and 3 deletions
|
@ -91,9 +91,6 @@ public class ReturnToHandTargetEffect extends OneShotEffect {
|
||||||
card = game.getCard(targetId);
|
card = game.getCard(targetId);
|
||||||
if (card != null) {
|
if (card != null) {
|
||||||
controller.moveCardToHandWithInfo(card, source.getSourceId(), game, Zone.EXILED);
|
controller.moveCardToHandWithInfo(card, source.getSourceId(), game, Zone.EXILED);
|
||||||
if (card.isFaceDown()) {
|
|
||||||
card.setFaceDown(false);
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
result = false;
|
result = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue