* 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:
LevelX2 2014-06-15 23:10:42 +02:00
parent adcbcc75f7
commit 2c85c54b9f

View file

@ -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;