From 082356d07f0de1b55bb30878b81f0ba7be88f6d0 Mon Sep 17 00:00:00 2001 From: jeffwadsworth <> Date: Wed, 2 Jan 2013 16:24:14 -0600 Subject: [PATCH] - Little fix for DiscardCardCost. --- Mage/src/mage/abilities/costs/common/DiscardCardCost.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/src/mage/abilities/costs/common/DiscardCardCost.java b/Mage/src/mage/abilities/costs/common/DiscardCardCost.java index f8c330582a..7138e9056d 100644 --- a/Mage/src/mage/abilities/costs/common/DiscardCardCost.java +++ b/Mage/src/mage/abilities/costs/common/DiscardCardCost.java @@ -37,7 +37,7 @@ import mage.target.common.TargetCardInHand; public class DiscardCardCost extends DiscardTargetCost { public DiscardCardCost() { - this(false); + super(new TargetCardInHand(new FilterCard()), false); } public DiscardCardCost(boolean randomDiscard) {