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("zealous conscripts")
|
||||
|| cn.equals("zur the enchanter")) {
|
||||
thisMaxPower = Math.max(thisMaxPower, 12);
|
||||
}
|
||||
thisMaxPower = Math.max(thisMaxPower, 12);
|
||||
}
|
||||
|
||||
// Parts of infinite combos
|
||||
if (cn.equals("animate artifact") || cn.equals("animar, soul of element")
|
||||
|
|
@ -905,9 +905,9 @@ public abstract class AbstractCommander extends Constructed {
|
|||
|| cn.equals("workhorse") || cn.equals("worldgorger dragon")
|
||||
|| cn.equals("worthy cause") || cn.equals("yawgmoth's will")
|
||||
|| cn.equals("zealous conscripts")) {
|
||||
thisMaxPower = Math.max(thisMaxPower, 15);
|
||||
numberInfinitePieces++;
|
||||
}
|
||||
thisMaxPower = Math.max(thisMaxPower, 15);
|
||||
numberInfinitePieces++;
|
||||
}
|
||||
|
||||
// Game changers
|
||||
if (cn.equals("ad nauseam")
|
||||
|
|
@ -950,8 +950,9 @@ public abstract class AbstractCommander extends Constructed {
|
|||
|| cn.equals("vorinclex, voice of hunger")
|
||||
|| cn.equals("winota, joiner of forces")
|
||||
|| cn.equals("yuriko, the tiger's shadow")) {
|
||||
thisMaxPower = Math.max(thisMaxPower, 20);
|
||||
}
|
||||
thisMaxPower = Math.max(thisMaxPower, 20);
|
||||
}
|
||||
}
|
||||
|
||||
ObjectColor color = null;
|
||||
for (Card commander : deck.getSideboard()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue