From eb7166aa2fbc113c09914676f80a64daca84fa34 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Mon, 8 Jan 2018 09:57:09 +0400 Subject: [PATCH] * Pirate's Pillage - Fixed wrong random discard (see #4365) --- Mage.Sets/src/mage/cards/p/PiratesPillage.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/p/PiratesPillage.java b/Mage.Sets/src/mage/cards/p/PiratesPillage.java index 294f37a42d4..6e2373502da 100644 --- a/Mage.Sets/src/mage/cards/p/PiratesPillage.java +++ b/Mage.Sets/src/mage/cards/p/PiratesPillage.java @@ -46,7 +46,7 @@ public class PiratesPillage extends CardImpl { super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{R}"); // As an additional cost to cast Pirate's Pillage, discard a card. - this.getSpellAbility().addCost(new DiscardCardCost(true)); + this.getSpellAbility().addCost(new DiscardCardCost(false)); // Draw two cards and create two colorless Treasure artifacts with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool." this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(2));