fixed banding lands text

This commit is contained in:
Evan Kranzler 2020-04-23 20:33:20 -04:00
parent ef0d2151d8
commit 0f5d025699
2 changed files with 2 additions and 2 deletions

View file

@ -69,7 +69,7 @@ public class BandsWithOtherAbility extends StaticAbility {
if (subtype != null) {
return sb.append(' ').append(subtype.getDescription()).append('s').toString();
} else if (supertype != null) {
return sb.append(' ').append(supertype.toString()).append(" creatures").toString();
return sb.append(' ').append(supertype.toString().toLowerCase()).append(" creatures").toString();
} else if (bandingName != null) {
return sb.append(" creatures named ").append(bandingName).toString();
}