mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Devs: added todo with mana calculation freezes (Cascading Cataracts)
This commit is contained in:
parent
eb345f0acd
commit
fbb08ab1a8
1 changed files with 3 additions and 0 deletions
|
@ -589,7 +589,10 @@ public class ManaOptions extends ArrayList<Mana> {
|
|||
list.add(s);
|
||||
}
|
||||
}
|
||||
|
||||
// Remove fully included variations
|
||||
// TODO: research too many manas and freeze (put 1 card to slow down, put 3 cards to freeze here)
|
||||
// battlefield:Human:Cascading Cataracts:1
|
||||
for (int i = this.size() - 1; i >= 0; i--) {
|
||||
for (int ii = 0; ii < i; ii++) {
|
||||
Mana moreValuable = Mana.getMoreValuableMana(this.get(i), this.get(ii));
|
||||
|
|
Loading…
Reference in a new issue