From efc0365505c406f60cd7b59ae35ac6769cf1749a Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Fri, 14 Nov 2014 23:47:18 +0100 Subject: [PATCH] * SearchLibraryPutInHandEffect - Fixed that target was not reset before used again (caused e.g. Land Tax to only be able to fetch 3 lands in total also if it triggered multiple times). --- .../effects/common/search/SearchLibraryPutInHandEffect.java | 1 + 1 file changed, 1 insertion(+) diff --git a/Mage/src/mage/abilities/effects/common/search/SearchLibraryPutInHandEffect.java b/Mage/src/mage/abilities/effects/common/search/SearchLibraryPutInHandEffect.java index 4d4dd832ba..d7fafc0902 100644 --- a/Mage/src/mage/abilities/effects/common/search/SearchLibraryPutInHandEffect.java +++ b/Mage/src/mage/abilities/effects/common/search/SearchLibraryPutInHandEffect.java @@ -89,6 +89,7 @@ public class SearchLibraryPutInHandEffect extends SearchEffect { if (player == null) { return false; } + target.clearChosen(); if (player.searchLibrary(target, game)) { if (target.getTargets().size() > 0) { Cards cards = new CardsImpl();