From d7d7d019f3c7d158556cbf8851387610e36d9d9b Mon Sep 17 00:00:00 2001 From: yukirij Date: Tue, 20 Aug 2024 17:24:52 -0700 Subject: [PATCH] Adjust auto play selection. --- www/js/interface.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/interface.js b/www/js/interface.js index c51152c..a6500bb 100644 --- a/www/js/interface.js +++ b/www/js/interface.js @@ -1085,7 +1085,7 @@ const INTERFACE = { // Select random from ties. let selection = 0; 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++; } else { break;