mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
* Hideaway - Fixed a bug that the last returned card was put to the top instead of the bottom of the library.
This commit is contained in:
parent
adcbcc75f7
commit
2c85c54b9f
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ class HideawayExileEffect extends OneShotEffect {
|
||||||
target2.clearChosen();
|
target2.clearChosen();
|
||||||
}
|
}
|
||||||
Card card = cards.get(cards.iterator().next(), game);
|
Card card = cards.get(cards.iterator().next(), game);
|
||||||
card.moveToZone(Zone.LIBRARY, source.getSourceId(), game, true);
|
card.moveToZone(Zone.LIBRARY, source.getSourceId(), game, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue