From 6c14cfb590dbac17e3c0235b1a151d5c8ede9ab2 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sat, 30 May 2015 00:29:46 +0200 Subject: [PATCH] * Avarice Totem - Fixed the non working control changing activated ability. --- Mage.Sets/src/mage/sets/fifthdawn/AvariceTotem.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/fifthdawn/AvariceTotem.java b/Mage.Sets/src/mage/sets/fifthdawn/AvariceTotem.java index c3a165351ca..712d873c4f3 100644 --- a/Mage.Sets/src/mage/sets/fifthdawn/AvariceTotem.java +++ b/Mage.Sets/src/mage/sets/fifthdawn/AvariceTotem.java @@ -51,7 +51,7 @@ public class AvariceTotem extends CardImpl { this.expansionSetCode = "5DN"; // {5}: Exchange control of Avarice Totem and target nonland permanent. - Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new ExchangeControlTargetEffect(Duration.EndOfGame, rule, false), new ManaCostsImpl("{5}")); + Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new ExchangeControlTargetEffect(Duration.EndOfGame, rule, true), new ManaCostsImpl("{5}")); ability.addTarget(new TargetNonlandPermanent()); this.addAbility(ability); }