mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
fix error
This commit is contained in:
parent
842612a37a
commit
769097cfa3
1 changed files with 10 additions and 9 deletions
|
|
@ -844,8 +844,8 @@ public abstract class AbstractCommander extends Constructed {
|
||||||
|| cn.equals("yawgmoth's will")
|
|| cn.equals("yawgmoth's will")
|
||||||
|| cn.equals("zealous conscripts")
|
|| cn.equals("zealous conscripts")
|
||||||
|| cn.equals("zur the enchanter")) {
|
|| cn.equals("zur the enchanter")) {
|
||||||
thisMaxPower = Math.max(thisMaxPower, 12);
|
thisMaxPower = Math.max(thisMaxPower, 12);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Parts of infinite combos
|
// Parts of infinite combos
|
||||||
if (cn.equals("animate artifact") || cn.equals("animar, soul of element")
|
if (cn.equals("animate artifact") || cn.equals("animar, soul of element")
|
||||||
|
|
@ -905,10 +905,10 @@ public abstract class AbstractCommander extends Constructed {
|
||||||
|| cn.equals("workhorse") || cn.equals("worldgorger dragon")
|
|| cn.equals("workhorse") || cn.equals("worldgorger dragon")
|
||||||
|| cn.equals("worthy cause") || cn.equals("yawgmoth's will")
|
|| cn.equals("worthy cause") || cn.equals("yawgmoth's will")
|
||||||
|| cn.equals("zealous conscripts")) {
|
|| cn.equals("zealous conscripts")) {
|
||||||
thisMaxPower = Math.max(thisMaxPower, 15);
|
thisMaxPower = Math.max(thisMaxPower, 15);
|
||||||
numberInfinitePieces++;
|
numberInfinitePieces++;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Game changers
|
// Game changers
|
||||||
if (cn.equals("ad nauseam")
|
if (cn.equals("ad nauseam")
|
||||||
|| cn.equals("ancient tomb")
|
|| cn.equals("ancient tomb")
|
||||||
|
|
@ -950,9 +950,10 @@ public abstract class AbstractCommander extends Constructed {
|
||||||
|| cn.equals("vorinclex, voice of hunger")
|
|| cn.equals("vorinclex, voice of hunger")
|
||||||
|| cn.equals("winota, joiner of forces")
|
|| cn.equals("winota, joiner of forces")
|
||||||
|| cn.equals("yuriko, the tiger's shadow")) {
|
|| cn.equals("yuriko, the tiger's shadow")) {
|
||||||
thisMaxPower = Math.max(thisMaxPower, 20);
|
thisMaxPower = Math.max(thisMaxPower, 20);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ObjectColor color = null;
|
ObjectColor color = null;
|
||||||
for (Card commander : deck.getSideboard()) {
|
for (Card commander : deck.getSideboard()) {
|
||||||
int thisMaxPower = 0;
|
int thisMaxPower = 0;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue