mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 03:22:00 -08:00
fixed an issue with cost adjusters
This commit is contained in:
parent
58de14fbba
commit
92b5535a0e
2 changed files with 2 additions and 0 deletions
|
|
@ -119,6 +119,7 @@ public abstract class AbilityImpl implements Ability {
|
||||||
this.sourceObjectZoneChangeCounter = ability.sourceObjectZoneChangeCounter;
|
this.sourceObjectZoneChangeCounter = ability.sourceObjectZoneChangeCounter;
|
||||||
this.canFizzle = ability.canFizzle;
|
this.canFizzle = ability.canFizzle;
|
||||||
this.targetAdjuster = ability.targetAdjuster;
|
this.targetAdjuster = ability.targetAdjuster;
|
||||||
|
this.costAdjuster = ability.costAdjuster;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -70,6 +70,7 @@ public class StackAbility extends StackObjImpl implements Ability {
|
||||||
this.expansionSetCode = stackAbility.expansionSetCode;
|
this.expansionSetCode = stackAbility.expansionSetCode;
|
||||||
this.targetAdjuster = stackAbility.targetAdjuster;
|
this.targetAdjuster = stackAbility.targetAdjuster;
|
||||||
this.targetChanged = stackAbility.targetChanged;
|
this.targetChanged = stackAbility.targetChanged;
|
||||||
|
this.costAdjuster = stackAbility.costAdjuster;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue