mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 18:58:00 +00:00
- Fixed logic of last commit.
This commit is contained in:
@@ -1468,8 +1468,8 @@ public class ComputerUtil {
|
||||
});
|
||||
|
||||
// mulligan when at the threshold, with a no land hand
|
||||
if (handList.size() == aic.getIntProperty(AiProps.MULLIGAN_THRESHOLD) && lands.isEmpty()) {
|
||||
return true;
|
||||
if (handList.size() == aic.getIntProperty(AiProps.MULLIGAN_THRESHOLD) && !lands.isEmpty()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return lands.size() < 2 ;
|
||||
|
||||
Reference in New Issue
Block a user