mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Days Undoing - Fixed card movement.
This commit is contained in:
parent
a99eef5bf4
commit
68fdcddd32
1 changed files with 2 additions and 2 deletions
|
@ -88,8 +88,8 @@ class DaysUndoingEffect extends OneShotEffect {
|
|||
for (UUID playerId : game.getState().getPlayersInRange(controller.getId(), game)) {
|
||||
Player player = game.getPlayer(playerId);
|
||||
if (player != null) {
|
||||
player.moveCards(player.getHand(), Zone.HAND, Zone.LIBRARY, source, game);
|
||||
player.moveCards(player.getGraveyard(), Zone.GRAVEYARD, Zone.LIBRARY, source, game);
|
||||
player.moveCards(player.getHand(), Zone.LIBRARY, source, game);
|
||||
player.moveCards(player.getGraveyard(), Zone.LIBRARY, source, game);
|
||||
player.shuffleLibrary(source, game);
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue