* Fixed that sacrifice was handled targeted (because of using other method now with sourceId and controllerId).

This commit is contained in:
LevelX2 2014-07-27 15:51:51 +02:00
parent 7af34eb8b1
commit e22174b148
3 changed files with 28 additions and 15 deletions

View file

@ -48,6 +48,7 @@ public class SacrificeTargetCost extends CostImpl {
public SacrificeTargetCost(TargetControlledPermanent target) {
this.addTarget(target);
target.setNotTarget(true); // sacrifice is never targeted
this.text = "Sacrifice " + target.getTargetName();
}