mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
[FIX] Fix SacrificeTargetCost().
This commit is contained in:
parent
b7570cf28f
commit
7b7d07fe1b
1 changed files with 1 additions and 2 deletions
|
@ -34,7 +34,6 @@ import java.util.UUID;
|
|||
import mage.abilities.Ability;
|
||||
import mage.abilities.costs.CostImpl;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.Zone;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.target.common.TargetControlledPermanent;
|
||||
|
@ -72,7 +71,7 @@ public class SacrificeTargetCost extends CostImpl {
|
|||
return false;
|
||||
}
|
||||
permanents.add(permanent.copy());
|
||||
paid |= game.getPlayer(ability.getControllerId()).moveCardToGraveyardWithInfo(permanent, sourceId, game, Zone.BATTLEFIELD);
|
||||
paid |= permanent.sacrifice(sourceId, game);
|
||||
}
|
||||
if (!paid && targets.get(0).getNumberOfTargets() == 0) {
|
||||
paid = true; // e.g. for Devouring Rage
|
||||
|
|
Loading…
Reference in a new issue