mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +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)
|
.getCards(game)
|
||||||
.stream()
|
.stream()
|
||||||
.filter(Objects::nonNull)
|
.filter(Objects::nonNull)
|
||||||
|
.filter(card -> !card.getManaCost().getText().isEmpty()) // card must have a mana cost
|
||||||
.filter(card -> !card.isLand())
|
.filter(card -> !card.isLand())
|
||||||
.forEach(card -> {
|
.forEach(card -> {
|
||||||
Ability ability = new EscapeAbility(card, card.getManaCost().getText(), 3);
|
Ability ability = new EscapeAbility(card, card.getManaCost().getText(), 3);
|
||||||
|
|
Loading…
Reference in a new issue