* Star Compass - fixed wrong text (#10182)

This commit is contained in:
Oleg Agafonov 2023-04-09 09:43:31 +04:00
parent f7b32cadd7
commit 2ff2f69628

View file

@ -16,7 +16,7 @@ import mage.constants.TargetController;
*/
public final class StarCompass extends CardImpl {
private static final FilterControlledPermanent filter = new FilterControlledLandPermanent();
private static final FilterControlledPermanent filter = new FilterControlledLandPermanent("basic land");
static {
filter.add(SuperType.BASIC.getPredicate());
@ -27,6 +27,7 @@ public final class StarCompass extends CardImpl {
// Star Compass enters the battlefield tapped.
this.addAbility(new EntersBattlefieldTappedAbility());
// {T}: Add one mana of any color that a basic land you control could produce.
this.addAbility(new AnyColorLandsProduceManaAbility(TargetController.YOU, true, filter));
}