Migrated some card moving callers to non-deprecated method.

Since the function the were calling just calls into the non-deprecated
method, this is a low risk change.
This commit is contained in:
Nathaniel Brandes 2016-05-13 23:20:03 -07:00
parent bd51cd5f77
commit 4b6bbacd8c
35 changed files with 46 additions and 41 deletions

View file

@ -65,7 +65,7 @@ public class PutTopCardOfLibraryIntoGraveControllerEffect extends OneShotEffect
public boolean apply(Game game, Ability source) {
Player controller = game.getPlayer(source.getControllerId());
if (controller != null) {
return controller.moveCards(controller.getLibrary().getTopCards(game, numberCards), Zone.LIBRARY, Zone.GRAVEYARD, source, game);
return controller.moveCards(controller.getLibrary().getTopCards(game, numberCards), Zone.GRAVEYARD, source, game);
}
return false;
}