Merge pull request #3977 from theelk801/master

Implemented cards, updated spoiler
This commit is contained in:
theelk801 2017-09-13 11:08:21 -04:00 committed by GitHub
commit c7cfca6677
10 changed files with 395 additions and 5 deletions

View file

@ -75,7 +75,7 @@ public class ReturnFromGraveyardToBattlefieldTargetEffect extends OneShotEffect
Set<Card> cardsToMove = new HashSet<>();
for (UUID targetId : getTargetPointer().getTargets(game, source)) {
Card card = game.getCard(targetId);
if (card != null) {
if (card != null && game.getState().getZone(card.getId()) == Zone.GRAVEYARD) {
cardsToMove.add(card);
}
}