* Sinbirds Invocation - use standard method card card moving.

This commit is contained in:
LevelX2 2018-06-24 01:22:18 +02:00
parent eb85146367
commit 3bd716fb12

View file

@ -1,4 +1,3 @@
package mage.cards.s; package mage.cards.s;
import java.util.UUID; import java.util.UUID;
@ -136,14 +135,7 @@ class SunbirdsInvocationEffect extends OneShotEffect {
} }
} }
} }
} controller.putCardsOnBottomOfLibrary(cards, game, source, false);
while (!cards.isEmpty()) {
Card card = cards.getRandom(game);
if (card != null) {
cards.remove(card);
card.moveToZone(Zone.LIBRARY, source.getSourceId(), game, false);
}
} }
return true; return true;
} }