mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
- Fixed #7382
This commit is contained in:
parent
bddabe11b6
commit
3c8ad2a664
1 changed files with 1 additions and 0 deletions
|
@ -65,6 +65,7 @@ class UnderworldBreachEffect extends ContinuousEffectImpl {
|
|||
.getCards(game)
|
||||
.stream()
|
||||
.filter(Objects::nonNull)
|
||||
.filter(card -> !card.getManaCost().getText().isEmpty()) // card must have a mana cost
|
||||
.filter(card -> !card.isLand())
|
||||
.forEach(card -> {
|
||||
Ability ability = new EscapeAbility(card, card.getManaCost().getText(), 3);
|
||||
|
|
Loading…
Reference in a new issue