forked from External/mage
general text gen fixes
This commit is contained in:
parent
9a6504c1fa
commit
18a050fb70
2 changed files with 3 additions and 3 deletions
|
|
@ -77,7 +77,7 @@ public class EntersBattlefieldAbility extends StaticAbility {
|
|||
@Override
|
||||
public String getRule() {
|
||||
if (abilityRule != null && !abilityRule.isEmpty()) {
|
||||
return abilityRule;
|
||||
return addRulePrefix(abilityRule);
|
||||
}
|
||||
String superRule = super.getRule();
|
||||
String rule = (optional ? "you may have " : "") + "{this} enter" + (optional ? "" : "s")
|
||||
|
|
|
|||
|
|
@ -59,9 +59,9 @@ public class PayMoreToCastAsThoughtItHadFlashAbility extends SpellAbility {
|
|||
return rule;
|
||||
}
|
||||
if (costsToAdd instanceof ManaCosts) {
|
||||
return "You may cast {this} as though it had flash if you pay " + costsToAdd.getText() + " more to cast it. <i>(You may cast it any time you could cast an instant.)</i>";
|
||||
return "You may cast this spell as though it had flash if you pay " + costsToAdd.getText() + " more to cast it. <i>(You may cast it any time you could cast an instant.)</i>";
|
||||
} else {
|
||||
return "You may cast {this} as though it had flash by " + costsToAdd.getText() + " in addition to paying its other costs.";
|
||||
return "You may cast this spell as though it had flash by " + costsToAdd.getText() + " in addition to paying its other costs.";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue