From 3d4d137970270a22014997d3755fa060365abbe7 Mon Sep 17 00:00:00 2001 From: fireshoes Date: Tue, 12 Jan 2016 16:34:04 -0600 Subject: [PATCH] Fixed Wandering Fumarole calling the wrong token on its activated ability. --- .../src/mage/sets/oathofthegatewatch/WanderingFumarole.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/oathofthegatewatch/WanderingFumarole.java b/Mage.Sets/src/mage/sets/oathofthegatewatch/WanderingFumarole.java index ce050519cb..66773d0e60 100644 --- a/Mage.Sets/src/mage/sets/oathofthegatewatch/WanderingFumarole.java +++ b/Mage.Sets/src/mage/sets/oathofthegatewatch/WanderingFumarole.java @@ -63,7 +63,7 @@ public class WanderingFumarole extends CardImpl { // {2}{U}{R}: Until end of turn, Wandering Fumarole becomes a 1/4 blue and red Elemental creature with // "0: Switch this creature's power and toughness until end of turn." It's still a land. - Effect effect = new BecomesCreatureSourceEffect(new HissingQuagmireToken(), "land", Duration.EndOfTurn); + Effect effect = new BecomesCreatureSourceEffect(new WanderingFumaroleToken(), "land", Duration.EndOfTurn); effect.setText("{this} becomes a 1/4 blue and red Elemental creature with \"0: Switch this creature's power and toughness until end of turn.\" It's still a land"); this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new ManaCostsImpl("{2}{U}{R}"))); }