diff --git a/Mage.Sets/src/mage/sets/magicorigins/NecromanticSummons.java b/Mage.Sets/src/mage/sets/magicorigins/NecromanticSummons.java
index b8bcb491aa..1c4a58253c 100644
--- a/Mage.Sets/src/mage/sets/magicorigins/NecromanticSummons.java
+++ b/Mage.Sets/src/mage/sets/magicorigins/NecromanticSummons.java
@@ -57,10 +57,10 @@ public class NecromanticSummons extends CardImpl {
// Put target creature card from a graveyard onto the battlefield under your control.
this.getSpellAbility().addEffect(new ReturnFromGraveyardToBattlefieldTargetEffect());
this.getSpellAbility().addTarget(new TargetCardInGraveyard(new FilterCreatureCard("creature card from a graveyard")));
-
+
// Spell mastery - If there are two or more instant and/or sorcery cards in your graveyard, that creature enters the battlefield with two additional +1/+1 counters on it.
Effect effect = new ConditionalOneShotEffect(new NecromanticSummoningEffect(),
- SpellMasteryCondition.getInstance(), "
Spell mastery - If there are two or more instant and/or sorcery cards in your graveyard, add {B}{B}{B} to your mana pool");
+ SpellMasteryCondition.getInstance(), "
Spell mastery - If there are two or more instant and/or sorcery cards in your graveyard, that creature enters the battlefield with two additional +1/+1 counters on it");
this.getSpellAbility().addEffect(effect);
}
@@ -99,4 +99,4 @@ class NecromanticSummoningEffect extends OneShotEffect {
}
return false;
}
-}
\ No newline at end of file
+}