From 2e8f8952f30f9a0e784bfdf021800b35500066b4 Mon Sep 17 00:00:00 2001 From: MaciejkaG Date: Sat, 6 Apr 2024 21:27:46 +0200 Subject: [PATCH] Minor bug fixes --- public/assets/js/socket-game.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/assets/js/socket-game.js b/public/assets/js/socket-game.js index 316c4e0..4f2e146 100644 --- a/public/assets/js/socket-game.js +++ b/public/assets/js/socket-game.js @@ -284,6 +284,8 @@ function updateLateInfo() { var currentAccuracy = 0; function updateAccuracy(val) { + val = Math.round(val); + var obj = $(".ownBoardInfo #accuracy").get(0); const start = currentAccuracy !== null ? currentAccuracy : val;