mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Fix #6671
This commit is contained in:
parent
086b42212d
commit
de3f7cbbfb
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ public abstract class AbilityImpl implements Ability {
|
|||
this.zone = ability.zone;
|
||||
this.name = ability.name;
|
||||
this.usesStack = ability.usesStack;
|
||||
this.manaCosts = ability.manaCosts;
|
||||
this.manaCosts = ability.manaCosts.copy();
|
||||
this.manaCostsToPay = ability.manaCostsToPay.copy();
|
||||
this.costs = ability.costs.copy();
|
||||
for (Watcher watcher : ability.getWatchers()) {
|
||||
|
|
Loading…
Reference in a new issue