fixed issue 225

This commit is contained in:
BetaSteward 2011-08-28 22:24:13 -04:00
parent 19481bf961
commit d903ba56e1
11 changed files with 14 additions and 10 deletions

View file

@ -104,7 +104,7 @@ class MassPolymorphEffect extends OneShotEffect<MassPolymorphEffect> {
creatureCard.putOntoBattlefield(game, Zone.LIBRARY, source.getId(), source.getControllerId());
}
player.getLibrary().addAll(nonCreatureCards.getCards(game), game);
player.getLibrary().shuffle();
player.shuffleLibrary(game);
return true;
}