more text fixes!

This commit is contained in:
xenohedron 2023-08-26 20:52:54 -04:00
parent abe19e4723
commit dcca63b963
46 changed files with 55 additions and 64 deletions

View file

@ -21,7 +21,6 @@ public class CantAttackAnyPlayerAllEffect extends RestrictionEffect {
this.filter = filter;
StringBuilder sb = new StringBuilder(filter.getMessage()).append(" can't attack");
if (!duration.toString().isEmpty()) {
sb.append(' ');
if (duration == Duration.EndOfTurn) {
sb.append(" this turn");
} else {

View file

@ -14,7 +14,7 @@ public class BecomesEnchantmentSourceEffect extends ContinuousEffectImpl {
public BecomesEnchantmentSourceEffect() {
super(Duration.Custom, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.AddAbility);
staticText = "{this} becomes an Enchantment";
staticText = "{this} becomes an enchantment";
dependencyTypes.add(DependencyType.EnchantmentAddingRemoving);
}