X-Git-Url: https://git.sesse.net/?p=remoteglot;a=blobdiff_plain;f=www%2Fjs%2Fremoteglot.js;h=353d7b14b7dc6136b6650c8390b5a5e7ed94852c;hp=4045bb54f7cdce2306d43d138f741c2cae5c71d9;hb=2aa91cd2fb004acb50be5668556c5f6b79dd0b9c;hpb=23c6ef78cb21c7dac5a6a43c8f3c2875efa76891 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) {