mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
* 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:
parent
3436614ae9
commit
efc0365505
1 changed files with 1 additions and 0 deletions
|
@ -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();
|
||||||
|
|
Loading…
Reference in a new issue