fix Planar Genesis

This commit is contained in:
Susucre 2024-06-02 14:45:05 +02:00
parent 45be74d00c
commit 7f64777e7a

View file

@ -60,7 +60,7 @@ class PlanarGenesisEffect extends LookLibraryAndPickControllerEffect {
boolean result = putPickedCards.moveCards(player, pickedCards, source, game);
if (pickedCards.isEmpty()) {
if (otherCards.size() >= 1) {
TargetCard target = new TargetCard(0, 1, Zone.LIBRARY, filter);
TargetCard target = new TargetCard(0, 1, Zone.LIBRARY, StaticFilters.FILTER_CARD);
target.withChooseHint("to put " + PutCards.HAND.getMessage(false, false));
if (player.chooseTarget(PutCards.HAND.getOutcome(), otherCards, target, source, game)) {
Cards toPutInHand = new CardsImpl(target.getTargets());