Great Aurora patch - no longer uses deprecated moveCards methods

This commit is contained in:
drmDev 2016-07-20 09:13:04 -04:00
parent e71796816d
commit a98e05e338

View file

@ -114,7 +114,7 @@ class TheGreatAuroraEffect extends OneShotEffect {
Player player = game.getPlayer(playerId);
if (player != null) {
int handCards = player.getHand().size();
player.moveCards(player.getHand(), Zone.HAND, Zone.LIBRARY, source, game);
player.moveCards(player.getHand(), Zone.LIBRARY, source, game);
List<Permanent> list = permanentsOwned.remove(player.getId());
permanentsCount.put(playerId, handCards + (list != null ? list.size() : 0));
for (Permanent permanent : list) {