We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a78e28 commit 64c8e75Copy full SHA for 64c8e75
src/modules/gametree.js
@@ -359,7 +359,9 @@ export function getBoard(tree, id) {
359
}
360
361
const visits = node.data.VISITS || null
362
- const winrate = (node.data.WINRATE && node.data.WINRATE * 100) || null
+ const winrate =
363
+ (node.data.WINRATE && (0.5 + sign * (node.data.WINRATE - 0.5)) * 100) ||
364
+ null
365
const scoreLead =
366
(node.data.SCORELEAD && node.data.SCORELEAD * sign) || null
367
0 commit comments