Fixed various rule texts

This commit is contained in:
Evan Kranzler 2017-09-09 10:16:26 -04:00
parent 44a10a1f5c
commit f43950c4b8
25 changed files with 61 additions and 67 deletions

View file

@ -108,6 +108,7 @@ public class EntersBattlefieldAbility extends StaticAbility {
if (abilityRule != null && !abilityRule.isEmpty()) {
return abilityRule;
}
return (optional ? "you may have " : "") + "{this} enter" + (optional ? "" : "s") + " the battlefield" + super.getRule();
String superRule = super.getRule();
return (optional ? "you may have " : "") + "{this} enter" + (optional ? "" : "s") + " the battlefield" + (superRule.charAt(0) == ' ' ? "" : " ") + superRule;
}
}