diff --git a/Mage.Sets/src/mage/cards/d/Drought.java b/Mage.Sets/src/mage/cards/d/Drought.java index 99ebb2e083..480212c0e3 100644 --- a/Mage.Sets/src/mage/cards/d/Drought.java +++ b/Mage.Sets/src/mage/cards/d/Drought.java @@ -101,7 +101,9 @@ class DroughtAdditionalCostEffect extends CostModificationEffectImpl { @Override public boolean apply(Game game, Ability source, Ability abilityToModify) { int blackSymbols = abilityToModify.getManaCosts().getMana().getBlack(); - abilityToModify.addCost(new SacrificeTargetCost(new TargetControlledPermanent(blackSymbols, blackSymbols, filter, true))); + TargetControlledPermanent target = new TargetControlledPermanent(blackSymbols, blackSymbols, filter, true); + target.setRequired(false); + abilityToModify.addCost(new SacrificeTargetCost(target)); return true; }