mirror of
https://github.com/correl/mage.git
synced 2024-11-28 11:09:54 +00:00
Fix Hoarding Broodlord (#10294)
This commit is contained in:
parent
09464ef934
commit
969d7f27b1
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ class HoardingBroodlordEffect extends OneShotEffect {
|
|||
}
|
||||
TargetCardInLibrary target = new TargetCardInLibrary();
|
||||
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);
|
||||
if (card != null) {
|
||||
player.moveCards(card, Zone.EXILED, source, game);
|
||||
|
|
Loading…
Reference in a new issue