Minor change.

This commit is contained in:
LevelX2 2015-07-04 22:16:56 +02:00
parent 87e953f6ba
commit 1c9e7d653d

View file

@ -25,7 +25,6 @@
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.abilities.effects.common.cost;
import mage.abilities.Ability;
@ -39,12 +38,10 @@ import mage.constants.Outcome;
import mage.game.Game;
import mage.util.CardUtil;
/**
*
* @author LevelX2
*/
public class SpellCostReductionSourceEffect extends CostModificationEffectImpl {
private final int amount;
@ -66,7 +63,6 @@ public class SpellCostReductionSourceEffect extends CostModificationEffectImpl {
this.staticText = sb.toString();
}
public SpellCostReductionSourceEffect(int amount, Condition condition) {
super(Duration.WhileOnBattlefield, Outcome.Benefit, CostModificationType.REDUCE_COST);
this.amount = amount;
@ -76,7 +72,7 @@ public class SpellCostReductionSourceEffect extends CostModificationEffectImpl {
this.staticText = sb.toString();
}
protected SpellCostReductionSourceEffect(SpellCostReductionSourceEffect effect) {
protected SpellCostReductionSourceEffect(final SpellCostReductionSourceEffect effect) {
super(effect);
this.amount = effect.amount;
this.manaCostsToReduce = effect.manaCostsToReduce;