more text fixes

This commit is contained in:
Evan Kranzler 2021-04-22 19:31:06 -04:00
parent a8096fc0a7
commit cd4f11e909
66 changed files with 168 additions and 242 deletions

View file

@ -44,7 +44,8 @@ public class LimitedTimesPerTurnActivatedAbility extends ActivatedAbilityImpl {
public String getRule() {
StringBuilder sb = new StringBuilder(super.getRule()).append(" Activate ");
if (condition != null) {
sb.append("only ").append(condition.toString()).append(" and ");
String message = condition.toString();
sb.append("only ").append(message.startsWith("if ") || message.startsWith("during") ? message : "if " + message).append(" and ");
}
if (getTiming() == TimingRule.SORCERY) {
sb.append("only as a sorcery and ");