text fixes

This commit is contained in:
xenohedron 2024-05-02 01:24:22 -04:00
parent 11e54fa367
commit f482eef06a
6 changed files with 11 additions and 11 deletions

View file

@ -51,7 +51,7 @@ class CastFromGraveyardOnceEffect extends AsThoughEffectImpl {
super(AsThoughEffectType.CAST_FROM_NOT_OWN_HAND_ZONE, Duration.WhileOnBattlefield, Outcome.Benefit);
this.filter = filter;
this.staticText = "Once during each of your turns, you may cast " + filter.getMessage()
+ (filter.getMessage().contains("from your graveyard") ? "" : " from your graveyard");
+ (filter.getMessage().contains("your graveyard") ? "" : " from your graveyard");
}
private CastFromGraveyardOnceEffect(final CastFromGraveyardOnceEffect effect) {

View file

@ -1,14 +1,13 @@
package mage.abilities.costs.common;
import java.util.UUID;
import mage.abilities.Ability;
import mage.abilities.costs.Cost;
import mage.abilities.costs.CostImpl;
import mage.counters.Counter;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.util.CardUtil;
import java.util.UUID;
/**
*
@ -20,7 +19,7 @@ public class PutCountersSourceCost extends CostImpl {
public PutCountersSourceCost(Counter counter) {
this.counter = counter.copy();
this.text = "Put " + counter.getDescription() + " on {this}";
this.text = "put " + counter.getDescription() + " on {this}";
}
public PutCountersSourceCost(PutCountersSourceCost cost) {

View file

@ -43,6 +43,6 @@ public enum SourceControllerCountersCount implements DynamicValue {
@Override
public String getMessage() {
return counterType.getName() + " you have";
return counterType.getName() + " counter you have";
}
}