mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 04:42:07 -08:00
fixed Jegantha, the Wellspring Companion Condition
This commit is contained in:
parent
97b741f69f
commit
8e8b2567b3
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ enum JeganthaTheWellspringCompanionCondition implements CompanionCondition {
|
|||
|
||||
@Override
|
||||
public boolean isLegal(Set<Card> deck, int startingSize) {
|
||||
return deck.stream().allMatch(JeganthaTheWellspringCompanionCondition::checkCard);
|
||||
return deck.stream().noneMatch(JeganthaTheWellspringCompanionCondition::checkCard);
|
||||
}
|
||||
|
||||
private static final boolean checkCard(Card card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue