From 2d051cd0d6a84c89ec71167c10aab98c28557774 Mon Sep 17 00:00:00 2001 From: Noah Gleason Date: Sun, 1 Jul 2018 15:23:21 -0400 Subject: [PATCH] Fix text --- Mage.Sets/src/mage/cards/n/Nightcreep.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/n/Nightcreep.java b/Mage.Sets/src/mage/cards/n/Nightcreep.java index 39c62281fc..cce74b7f65 100644 --- a/Mage.Sets/src/mage/cards/n/Nightcreep.java +++ b/Mage.Sets/src/mage/cards/n/Nightcreep.java @@ -36,7 +36,7 @@ public final class Nightcreep extends CardImpl { // Until end of turn, all creatures become black and all lands become Swamps. - this.getSpellAbility().addEffect(new BecomesColorAllEffect(ObjectColor.BLACK, Duration.EndOfTurn, StaticFilters.FILTER_PERMANENT_CREATURE, true, "Until end of turn, all creatures become black and")); + this.getSpellAbility().addEffect(new BecomesColorAllEffect(ObjectColor.BLACK, Duration.EndOfTurn, StaticFilters.FILTER_PERMANENT_CREATURE, true, "Until end of turn, all creatures become black and all lands become Swamps")); this.getSpellAbility().addEffect(new NightcreepEffect()); } @@ -54,6 +54,7 @@ class NightcreepEffect extends ContinuousEffectImpl { public NightcreepEffect() { super(Duration.EndOfTurn, Outcome.Benefit); + this.staticText = ""; } public NightcreepEffect(NightcreepEffect effect) {