Update CausticTar.java

This commit is contained in:
cbt33 2013-10-15 21:36:01 -04:00
parent a2a2a40dac
commit 2363931250

View file

@ -69,7 +69,7 @@ public class CausticTar extends CardImpl<CausticTar> {
// Enchanted land has "{tap}: Target player loses 3 life."
Ability tarAbility = new SimpleActivatedAbility(Zone.BATTLEFIELD, new LoseLifeTargetEffect(3), new TapSourceCost());
tarAbility.addTarget(new TargetPlayer());
tarAbility.addTarget(new TargetPlayer(true));
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(tarAbility, AttachmentType.AURA, Duration.WhileOnBattlefield)));
}