Fix Hoarding Broodlord (#10294)

This commit is contained in:
xenohedron 2023-04-29 20:10:43 -04:00 committed by GitHub
parent 09464ef934
commit 969d7f27b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -88,7 +88,7 @@ class HoardingBroodlordEffect extends OneShotEffect {
} }
TargetCardInLibrary target = new TargetCardInLibrary(); TargetCardInLibrary target = new TargetCardInLibrary();
player.searchLibrary(target, source, game); player.searchLibrary(target, source, game);
Card card = player.getLibrary().getCard(target.getTargetController(), game); Card card = player.getLibrary().getCard(target.getFirstTarget(), game);
player.shuffleLibrary(source, game); player.shuffleLibrary(source, game);
if (card != null) { if (card != null) {
player.moveCards(card, Zone.EXILED, source, game); player.moveCards(card, Zone.EXILED, source, game);