forked from External/mage
* Some changes to improve mana use of AI.
This commit is contained in:
parent
c3d0297045
commit
3972695428
7 changed files with 297 additions and 62 deletions
|
|
@ -103,7 +103,11 @@ public abstract class ActivatedManaAbilityImpl extends ActivatedAbilityImpl impl
|
|||
}
|
||||
}
|
||||
}
|
||||
return netMana;
|
||||
ArrayList<Mana> netManaCopy = new ArrayList<>();
|
||||
for (Mana mana : netMana) {
|
||||
netManaCopy.add(mana.copy());
|
||||
}
|
||||
return netManaCopy;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue