* 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).

This commit is contained in:
LevelX2 2014-11-14 23:47:18 +01:00
parent 3436614ae9
commit efc0365505

View file

@ -89,6 +89,7 @@ public class SearchLibraryPutInHandEffect extends SearchEffect {
if (player == null) { if (player == null) {
return false; return false;
} }
target.clearChosen();
if (player.searchLibrary(target, game)) { if (player.searchLibrary(target, game)) {
if (target.getTargets().size() > 0) { if (target.getTargets().size() > 0) {
Cards cards = new CardsImpl(); Cards cards = new CardsImpl();