fix error

This commit is contained in:
theelk801 2025-03-28 15:20:41 -04:00
parent 842612a37a
commit 769097cfa3

View file

@ -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,9 +905,9 @@ 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")
@ -950,8 +950,9 @@ 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()) {