mirror of
https://github.com/correl/mage.git
synced 2025-03-17 09:16:26 -09:00
Minor change.
This commit is contained in:
parent
87e953f6ba
commit
1c9e7d653d
1 changed files with 5 additions and 9 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue