mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
added missing cost to Priest of Forgotten Gods
This commit is contained in:
parent
12e4bcb0ab
commit
8b2cae6176
2 changed files with 18 additions and 5 deletions
|
|
@ -1,9 +1,6 @@
|
|||
|
||||
package mage.abilities.costs.common;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.ActivatedAbilityImpl;
|
||||
import mage.abilities.costs.Cost;
|
||||
|
|
@ -14,13 +11,16 @@ import mage.game.Game;
|
|||
import mage.game.permanent.Permanent;
|
||||
import mage.target.common.TargetControlledPermanent;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
*/
|
||||
public class SacrificeTargetCost extends CostImpl {
|
||||
|
||||
List<Permanent> permanents = new ArrayList<>();
|
||||
private final List<Permanent> permanents = new ArrayList<>();
|
||||
|
||||
public SacrificeTargetCost(TargetControlledPermanent target) {
|
||||
this.addTarget(target);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue