Increase random move selection of auto play.

This commit is contained in:
yukirij 2024-08-20 17:17:55 -07:00
parent ab7fbe470d
commit 655ec28e14

View File

@ -1091,7 +1091,7 @@ const INTERFACE = {
break;
}
}
selection = Math.min(moves.length, selection + 1);
selection = Math.min(moves.length, selection + 2);
return moves[Math.floor(Math.random() * selection)];
}