Limit to 50 comparisons

This commit is contained in:
2021-04-25 21:12:53 -04:00
parent 4c8ea0e755
commit a3375adef5

View File

@@ -45,7 +45,7 @@ class Decision {
}
}
shuffleArray(decisions);
return decisions;
return decisions.slice(0, 50);
}
}