* Commander - Allow activated abilities from command zone, card going back fom exile zone after commander mulligan are no longer face down in library.

This commit is contained in:
LevelX2 2013-11-19 08:11:34 +01:00
parent 408a66ee42
commit aa6be2f4da
3 changed files with 15 additions and 2 deletions

View file

@ -171,6 +171,7 @@ public class CommanderDuel extends GameImpl<CommanderDuel> {
if(player != null && mulliganedCards.containsKey(playerId)){
for(Card card : mulliganedCards.get(playerId).getCards(this)){
if(card != null){
card.setFaceDown(false);
card.moveToZone(Zone.LIBRARY, null, this, false);
}
}