forked from External/mage
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)
|
.filter(Objects::nonNull)
|
||||||
.collect(Collectors.toSet());
|
.collect(Collectors.toSet());
|
||||||
Card card = game.getCard(id);
|
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