From efe5611c76def766d596e92aa0308b0639200a74 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 25 Nov 2012 20:00:42 +0100 Subject: [PATCH] Added missing change to Mycosynth Fiend because of change to OpponentsPoisonCountersCount. --- Mage.Sets/src/mage/sets/newphyrexia/MycosynthFiend.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/newphyrexia/MycosynthFiend.java b/Mage.Sets/src/mage/sets/newphyrexia/MycosynthFiend.java index 4122d676c6..22f80d371b 100644 --- a/Mage.Sets/src/mage/sets/newphyrexia/MycosynthFiend.java +++ b/Mage.Sets/src/mage/sets/newphyrexia/MycosynthFiend.java @@ -53,7 +53,7 @@ public class MycosynthFiend extends CardImpl { this.power = new MageInt(2); this.toughness = new MageInt(2); - DynamicValue value = OpponentsPoisonCountersCount.getInstance(); + DynamicValue value = new OpponentsPoisonCountersCount(); this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostSourceEffect(value, value, Duration.WhileOnBattlefield))); }