Fixed ability target for Fertilid

This commit is contained in:
Marshall 2015-06-14 14:13:45 -04:00
parent 36a703f21d
commit 5f582e59d3

View file

@ -63,7 +63,7 @@ public class Fertilid extends CardImpl {
// {1}{G}, Remove a +1/+1 counter from Fertilid: Target player searches his or her library for a basic land card and puts it onto the battlefield tapped. Then that player shuffles his or her library.
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(new FilterBasicLandCard()), true, true), new ManaCostsImpl("{1}{G}"));
ability.addCost(new RemoveCountersSourceCost(CounterType.P1P1.createInstance(1)));
this.getSpellAbility().addTarget(new TargetPlayer());
ability.addTarget(new TargetPlayer());
this.addAbility(ability);
}