- Mulligan sign got inverted somewhere during testing.

This commit is contained in:
Sol
2016-06-23 20:57:36 +00:00
parent 3deea21ca2
commit 259c6750fb

View File

@@ -1580,7 +1580,7 @@ public class ComputerUtil {
// Computer mulligans if there are no cards with converted mana cost of 0 in its hand
public static boolean wantMulligan(Player ai) {
final CardCollectionView handList = ai.getCardsIn(ZoneType.Hand);
return scoreHand(handList, ai) > 0;
return scoreHand(handList, ai) <= 0;
}
public static CardCollection getPartialParisCandidates(Player ai) {