forked from External/mage
fix #5848
This commit is contained in:
parent
79b5d31782
commit
a4de78b13b
1 changed files with 6 additions and 0 deletions
|
|
@ -145,6 +145,12 @@ class TamiyoCollectorOfTalesEffect extends OneShotEffect {
|
|||
Cards cards2 = new CardsImpl();
|
||||
player.revealCards(source, cards, game);
|
||||
for (Card card : cards.getCards(game)) {
|
||||
if(card.isSplitCard()){
|
||||
if(((SplitCard) card).getLeftHalfCard().getName().equals(choice.getChoice()) ||
|
||||
((SplitCard) card).getRightHalfCard().getName().equals(choice.getChoice())){
|
||||
cards2.add(card);
|
||||
}
|
||||
}
|
||||
if (card.getName().equals(choice.getChoice())) {
|
||||
cards2.add(card);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue