mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
Fix BeholdTheSinisterSixTarget counting everything as illegal
This commit is contained in:
parent
d95f77d352
commit
95f53fc671
1 changed files with 1 additions and 1 deletions
|
|
@ -69,7 +69,7 @@ class BeholdTheSinisterSixTarget extends TargetCardInYourGraveyard {
|
|||
.filter(Objects::nonNull)
|
||||
.collect(Collectors.toSet());
|
||||
Card card = game.getCard(id);
|
||||
return card != null && !names.contains(card.getName());
|
||||
return card != null && (this.getTargets().contains(id) || !names.contains(card.getName()));
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue