Small fix to Consuming Aberration.

This commit is contained in:
LevelX2 2013-01-31 23:39:38 +01:00
parent 9f5857b0ed
commit f38c5d2474

View file

@ -117,10 +117,10 @@ class ConsumingAberrationEffect extends OneShotEffect<ConsumingAberrationEffect>
}
}
}
player.revealCards("Undercity Informer", cards, game);
player.revealCards("Consuming Aberrtion", cards, game);
for(Card card : cards.getCards(game)){
if(card != null){
card.moveToZone(Zone.GRAVEYARD, id, game, true);
card.moveToZone(Zone.GRAVEYARD, source.getSourceId(), game, false);
}
}
}