mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Fixed wrong text for reveal window.
This commit is contained in:
parent
db4616f821
commit
bdf3324157
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue