forked from Kelder/ceneka-bot-battle
change to 60 seconds
This commit is contained in:
parent
8d38b87989
commit
6212ff3cb9
1 changed files with 3 additions and 5 deletions
|
@ -96,7 +96,6 @@
|
|||
const margin = 20
|
||||
|
||||
for (const [_, bot] of Object.entries(bots)) {
|
||||
console.log(bot)
|
||||
ctx.lineWidth = 4
|
||||
ctx.strokeStyle = bot.color_ring
|
||||
ctx.beginPath()
|
||||
|
@ -104,7 +103,6 @@
|
|||
for (let i = 1; i < bot.x.length; i++) {
|
||||
ctx.lineTo(getX(width, margin, 0, graph_data.game, bot.x[i]), getY(height, margin, graph_data.min_elo, graph_data.max_elo, bot.y[i]))
|
||||
}
|
||||
console.log("stroking")
|
||||
ctx.stroke()
|
||||
}
|
||||
} catch (err) {
|
||||
|
@ -118,9 +116,9 @@
|
|||
canvas.height = canvas.clientHeight * window.devicePixelRatio;
|
||||
}
|
||||
|
||||
// Poll the server every 5 seconds
|
||||
setInterval(fetchLeaderboardData, 5000);
|
||||
setInterval(draw_graph, 5000);
|
||||
// Poll the server every 60 seconds
|
||||
setInterval(fetchLeaderboardData, 60_000);
|
||||
setInterval(draw_graph, 60_000);
|
||||
|
||||
// Initial load
|
||||
fetchLeaderboardData();
|
||||
|
|
Loading…
Reference in a new issue