From 2aa91cd2fb004acb50be5668556c5f6b79dd0b9c Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Thu, 11 Feb 2021 23:16:55 +0100 Subject: [PATCH] Fix display of splice points and tablebase wins after the last changes. --- www/js/remoteglot.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/www/js/remoteglot.js b/www/js/remoteglot.js index 4045bb5..353d7b1 100644 --- a/www/js/remoteglot.js +++ b/www/js/remoteglot.js @@ -664,8 +664,8 @@ var add_pv = function(start_fen, pv, move_num, toplay, scores, start_display_mov if (scores !== null && scores.length >= 1 && scores[scores.length - 1].score !== undefined && scores[scores.length - 1].score !== null && - scores[scores.length - 1].score[0] === "tb") { - splicepos = Math.abs(scores[scores.length - 1].score[1]); + scores[scores.length - 1].score[0] === 'T') { + splicepos = scores[scores.length - 1].score[1]; } return print_pv(display_lines.length - 1, splicepos, opt_limit, opt_showlast); } @@ -2158,7 +2158,7 @@ var format_long_score = function(score) { if (score[1] == 0) { return "Won for white (tablebase)"; } else { - return "White wins in " + Math.ceil(score[1]); + return "White wins in " + Math.ceil(score[1] / 2); } } else if (score[0] === 't') { if (score[1] == -1) { -- 2.39.2