Updated "this spell" wordings

This commit is contained in:
Evan Kranzler 2018-06-21 12:32:25 -04:00
parent 487503afcd
commit 2b2f3b6e01
31 changed files with 31 additions and 31 deletions

View file

@ -50,7 +50,7 @@ public class CastOnlyIfConditionIsTrueEffect extends ContinuousRuleModifyingEffe
}
private String setText() {
StringBuilder sb = new StringBuilder("cast {this} only ");
StringBuilder sb = new StringBuilder("cast this spell only ");
if (condition != null) {
sb.append(' ').append(condition.toString());
}

View file

@ -59,7 +59,7 @@ public class CastOnlyDuringPhaseStepSourceEffect extends ContinuousRuleModifying
}
private String setText() {
StringBuilder sb = new StringBuilder("cast {this} only during ");
StringBuilder sb = new StringBuilder("cast this spell only during ");
if (turnPhase != null) {
sb.append(turnPhase.toString());
}

View file

@ -17,7 +17,7 @@ public class CastOnlyIfYouHaveCastAnotherSpellEffect extends ContinuousRuleModif
public CastOnlyIfYouHaveCastAnotherSpellEffect() {
super(Duration.EndOfGame, Outcome.Detriment);
staticText = "Cast {this} only if you've cast another spell this turn";
staticText = "Cast this spell only if you've cast another spell this turn";
}
public CastOnlyIfYouHaveCastAnotherSpellEffect(final CastOnlyIfYouHaveCastAnotherSpellEffect effect) {