mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
text fixes
This commit is contained in:
parent
11e54fa367
commit
f482eef06a
6 changed files with 11 additions and 11 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -43,6 +43,6 @@ public enum SourceControllerCountersCount implements DynamicValue {
|
|||
|
||||
@Override
|
||||
public String getMessage() {
|
||||
return counterType.getName() + " you have";
|
||||
return counterType.getName() + " counter you have";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue