From: Steinar H. Gunderson Date: Thu, 11 Feb 2021 22:16:55 +0000 (+0100) Subject: Fix display of splice points and tablebase wins after the last changes. X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=2aa91cd2fb004acb50be5668556c5f6b79dd0b9c Fix display of splice points and tablebase wins after the last changes. --- 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) {