mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Fixed a bug of PutOnLibraryTargetEffect moving the cards always only to top of library (fixes #636).
This commit is contained in:
parent
c2af7836ab
commit
f9f6fd2d2d
1 changed files with 2 additions and 2 deletions
|
@ -110,7 +110,7 @@ public class PutOnLibraryTargetEffect extends OneShotEffect {
|
||||||
iterator.remove();
|
iterator.remove();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
owner.putCardsOnTopOfLibrary(cardsPlayer, game, source, true);
|
owner.putCardsOnTopOfLibrary(cardsPlayer, game, source, onTop);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
while (!permanents.isEmpty()) {
|
while (!permanents.isEmpty()) {
|
||||||
|
@ -125,7 +125,7 @@ public class PutOnLibraryTargetEffect extends OneShotEffect {
|
||||||
iterator.remove();
|
iterator.remove();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
owner.putCardsOnTopOfLibrary(cardsPlayer, game, source, true);
|
owner.putCardsOnTopOfLibrary(cardsPlayer, game, source, onTop);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue