mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +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
|
||||
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) {
|
||||
|
||||
Reference in New Issue
Block a user