mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 11:48:02 +00:00
- Mulligan sign got inverted somewhere during testing.
This commit is contained in:
@@ -1580,7 +1580,7 @@ public class ComputerUtil {
|
|||||||
// Computer mulligans if there are no cards with converted mana cost of 0 in its hand
|
// Computer mulligans if there are no cards with converted mana cost of 0 in its hand
|
||||||
public static boolean wantMulligan(Player ai) {
|
public static boolean wantMulligan(Player ai) {
|
||||||
final CardCollectionView handList = ai.getCardsIn(ZoneType.Hand);
|
final CardCollectionView handList = ai.getCardsIn(ZoneType.Hand);
|
||||||
return scoreHand(handList, ai) > 0;
|
return scoreHand(handList, ai) <= 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static CardCollection getPartialParisCandidates(Player ai) {
|
public static CardCollection getPartialParisCandidates(Player ai) {
|
||||||
|
|||||||
Reference in New Issue
Block a user