[NEO] fixed The Dragon-Kami Reborn not handling cards correctly

This commit is contained in:
Evan Kranzler 2022-03-09 13:11:20 -05:00
parent 30b00bc7d0
commit 91e987dd69

View file

@ -90,7 +90,7 @@ class TheDragonKamiRebornEffect extends OneShotEffect {
card.addCounters(CounterType.HATCHLING.createInstance(), source, game);
}
cards.retainZone(Zone.LIBRARY, game);
player.putCardsOnBottomOfLibrary(card, game, source, true);
player.putCardsOnBottomOfLibrary(cards, game, source, true);
return true;
}
}