forked from External/mage
[NEO] fixed Invoke Calamity counting mana value incorrectly
This commit is contained in:
parent
8f2a9433e2
commit
124bd261e9
1 changed files with 1 additions and 1 deletions
|
|
@ -1225,7 +1225,7 @@ public final class CardUtil {
|
|||
cards.removeIf(Objects::isNull);
|
||||
cards.removeIf(card -> !filter.match(card, playerId, source, game));
|
||||
if (spellCastTracker != null) {
|
||||
cards.removeIf(card -> spellCastTracker.checkCard(card, game));
|
||||
cards.removeIf(card -> !spellCastTracker.checkCard(card, game));
|
||||
}
|
||||
return cards;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue