* Flash of Insight - Fixed that its effect did not work from gaveyard.

This commit is contained in:
LevelX2 2016-01-31 09:50:46 +01:00
parent 3f898aa67b
commit 37cbc50a58
2 changed files with 23 additions and 27 deletions

View file

@ -55,7 +55,6 @@ public class ExileXFromYourGraveCost extends VariableCostImpl {
public ExileXFromYourGraveCost(final ExileXFromYourGraveCost cost) {
super(cost);
this.amountPaid = cost.amountPaid;
this.filter = cost.filter;
}
@ -78,5 +77,4 @@ public class ExileXFromYourGraveCost extends VariableCostImpl {
TargetCardInYourGraveyard target = new TargetCardInYourGraveyard(xValue, filter);
return new ExileFromGraveCost(target);
}
}