Fixed wrong text for reveal window.

This commit is contained in:
LevelX2 2013-04-10 01:08:13 +02:00
parent db4616f821
commit bdf3324157

View file

@ -101,9 +101,9 @@ class MulchEffect extends OneShotEffect<MulchEffect> {
}
}
}
if (!cards.isEmpty()) {
player.revealCards("Lead the Stampede", cards, game);
Card sourceCard = game.getCard(source.getSourceId());
if (!cards.isEmpty() && sourceCard != null) {
player.revealCards(sourceCard.getName(), cards, game);
return true;
}
}