diff --git a/Mage.Sets/src/mage/sets/theros/DaxosOfMeletis.java b/Mage.Sets/src/mage/sets/theros/DaxosOfMeletis.java index 0a22cd3fa6b..c2f10887d16 100644 --- a/Mage.Sets/src/mage/sets/theros/DaxosOfMeletis.java +++ b/Mage.Sets/src/mage/sets/theros/DaxosOfMeletis.java @@ -121,10 +121,13 @@ class DaxosOfMeletisEffect extends OneShotEffect { if (cmc > 0) { controller.gainLife(cmc, game); } - // allow to cast the card - game.addEffect(new DaxosOfMeletisCastFromExileEffect(card.getId(), exileId), source); - // and you may spend mana as though it were mana of any color to cast it - game.addEffect(new DaxosOfMeletisSpendAnyManaEffect(card.getId()), source); + // Add effects only if the card has a spellAbility (e.g. not for lands). + if (card.getSpellAbility() != null) { + // allow to cast the card + game.addEffect(new DaxosOfMeletisCastFromExileEffect(card.getId(), exileId), source); + // and you may spend mana as though it were mana of any color to cast it + game.addEffect(new DaxosOfMeletisSpendAnyManaEffect(card.getId()), source); + } } return true; } @@ -165,7 +168,7 @@ class DaxosOfMeletisCastFromExileEffect extends AsThoughEffectImpl