From 2c85c54b9f8e25e925ab0530bb96d6056c6bb3d6 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 15 Jun 2014 23:10:42 +0200 Subject: [PATCH] * Hideaway - Fixed a bug that the last returned card was put to the top instead of the bottom of the library. --- Mage/src/mage/abilities/keyword/HideawayAbility.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/src/mage/abilities/keyword/HideawayAbility.java b/Mage/src/mage/abilities/keyword/HideawayAbility.java index 16428c41cf..72ee1a6906 100644 --- a/Mage/src/mage/abilities/keyword/HideawayAbility.java +++ b/Mage/src/mage/abilities/keyword/HideawayAbility.java @@ -150,7 +150,7 @@ class HideawayExileEffect extends OneShotEffect { target2.clearChosen(); } 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;