- Fixed logic of last commit.

This commit is contained in:
Sloth
2015-07-19 08:21:36 +00:00
parent 595739699b
commit d01910cdaa

View File

@@ -1468,8 +1468,8 @@ public class ComputerUtil {
}); });
// mulligan when at the threshold, with a no land hand // mulligan when at the threshold, with a no land hand
if (handList.size() == aic.getIntProperty(AiProps.MULLIGAN_THRESHOLD) && lands.isEmpty()) { if (handList.size() == aic.getIntProperty(AiProps.MULLIGAN_THRESHOLD) && !lands.isEmpty()) {
return true; return false;
} }
return lands.size() < 2 ; return lands.size() < 2 ;