mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00: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.canFizzle = ability.canFizzle;
|
||||
this.targetAdjuster = ability.targetAdjuster;
|
||||
this.costAdjuster = ability.costAdjuster;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -70,6 +70,7 @@ public class StackAbility extends StackObjImpl implements Ability {
|
|||
this.expansionSetCode = stackAbility.expansionSetCode;
|
||||
this.targetAdjuster = stackAbility.targetAdjuster;
|
||||
this.targetChanged = stackAbility.targetChanged;
|
||||
this.costAdjuster = stackAbility.costAdjuster;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue