mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-15 10:18:01 +00:00
- Removed a debug print line in Scry AI.
This commit is contained in:
@@ -1933,7 +1933,6 @@ public class ComputerUtil {
|
||||
int cmc = c.isSplitCard() ? Math.min(c.getCMC(Card.SplitCMCMode.LeftSplitCMC), c.getCMC(Card.SplitCMCMode.RightSplitCMC))
|
||||
: c.getCMC();
|
||||
int maxCastable = ComputerUtilMana.getAvailableManaEstimate(player, false) + landsInHand.size();
|
||||
System.out.println("Scry: cmc = " + cmc + ", maxCastable = " + maxCastable + ", threshold = " + uncastableCMCThreshold);
|
||||
if (cmc - maxCastable >= uncastableCMCThreshold) {
|
||||
bottom = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user