mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Great Aurora patch - no longer uses deprecated moveCards methods
This commit is contained in:
parent
e71796816d
commit
a98e05e338
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue