From 2dc7bbaf0813b9c004ffef2b60d6b7a475b1ad80 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Fri, 29 Aug 2014 14:59:58 +0200 Subject: [PATCH] * Aether Vial - Added info about added counter to game log. --- Mage.Sets/src/mage/sets/darksteel/AEtherVial.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/darksteel/AEtherVial.java b/Mage.Sets/src/mage/sets/darksteel/AEtherVial.java index 232bd3d1cb..b675857cc8 100644 --- a/Mage.Sets/src/mage/sets/darksteel/AEtherVial.java +++ b/Mage.Sets/src/mage/sets/darksteel/AEtherVial.java @@ -61,7 +61,7 @@ public class AEtherVial extends CardImpl { this.expansionSetCode = "DST"; // At the beginning of your upkeep, you may put a charge counter on AEther Vial. - this.addAbility(new BeginningOfUpkeepTriggeredAbility(new AddCountersSourceEffect(CounterType.CHARGE.createInstance()), TargetController.YOU, true)); + this.addAbility(new BeginningOfUpkeepTriggeredAbility(new AddCountersSourceEffect(CounterType.CHARGE.createInstance(), true), TargetController.YOU, true)); // {tap}: You may put a creature card with converted mana cost equal to the number of charge counters on AEther Vial from your hand onto the battlefield. this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new AEtherVialEffect(), new TapSourceCost())); }