mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Fix text
This commit is contained in:
parent
1575d8282c
commit
2d051cd0d6
1 changed files with 2 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue