subtypes part 2

This commit is contained in:
igoudt 2017-05-18 09:59:30 +02:00
parent c44c301f5b
commit 19db21c672
651 changed files with 1538 additions and 1255 deletions

View file

@ -83,7 +83,7 @@ public class FetchLandActivatedAbility extends ActivatedAbilityImpl {
private String subTypeNames(Set<SubType> subTypes) {
StringBuilder sb = new StringBuilder();
for (SubType subType: subTypes) {
sb.append(subType).append(" or ");
sb.append(subType.getDescription()).append(" or ");
}
return sb.substring(0, sb.length() - 4);
}