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

@ -32,7 +32,7 @@ public final class AdventurersGuildhouse extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, ""); super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
// Green legendary creatures you control have "bands with other legendary creatures." // Green legendary creatures you control have "bands with other legendary creatures."
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityControlledEffect(new BandsWithOtherAbility(SuperType.LEGENDARY), Duration.WhileOnBattlefield, filter))); this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityControlledEffect(new BandsWithOtherAbility(SuperType.LEGENDARY), Duration.WhileOnBattlefield, filter).withForceQuotes()));
} }
public AdventurersGuildhouse(final AdventurersGuildhouse card) { public AdventurersGuildhouse(final AdventurersGuildhouse card) {

View file

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