* Talent of the Telepath - Bugfix

This commit ensures that cards go to the opponents graveyard
even if no calid cards are revealed.
This commit is contained in:
Kranken 2015-07-07 22:44:51 +02:00 committed by Anders Åstrand
parent 79c9ca681f
commit 00c4b8ab10

View file

@ -136,9 +136,9 @@ class TalentOfTheTelepathEffect extends OneShotEffect {
target.clearChosen();
}
}
targetOpponent.moveCards(allCards, Zone.LIBRARY, Zone.GRAVEYARD, source, game);
}
targetOpponent.moveCards(allCards, Zone.LIBRARY, Zone.GRAVEYARD, source, game);
return true;
}
return false;