Adjust auto play selection.

This commit is contained in:
yukirij 2024-08-20 17:24:52 -07:00
parent 87693291f3
commit d7d7d019f3

View File

@ -1085,7 +1085,7 @@ const INTERFACE = {
// Select random from ties. // Select random from ties.
let selection = 0; let selection = 0;
for(let i = 1; i < moves.length; ++i) { for(let i = 1; i < moves.length; ++i) {
if(moves[i].score + 10 >= moves[i-1].score) { if(moves[i].score + 6 >= moves[i-1].score) {
selection++; selection++;
} else { } else {
break; break;