Fix BeholdTheSinisterSixTarget counting everything as illegal

This commit is contained in:
Steven Knipe 2025-09-25 20:13:54 -07:00
parent d95f77d352
commit 95f53fc671

View file

@ -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()));
}