fix lines per minutes

This commit is contained in:
Adrien MALINGREY 2023-04-25 09:08:47 +02:00
parent cc44b69b3b
commit 7b3db0b58d

2
app.js
View File

@ -866,7 +866,7 @@ function gameOver() {
let time = stats.time
goTimeCell.innerText = stats.timeFormat.format(time)
gototalClearedLines.innerText = stats.totalClearedLines
gototalClearedLinesPM.innerText = (stats.totalClearedLines * 60 / time).toFixed(2)
gototalClearedLinesPM.innerText = (stats.totalClearedLines * 60000 / time).toFixed(2)
goNbQuatris.innerText = stats.nbQuatris
goNbTSpin.innerText = stats.nbTSpin
goMaxCombo.innerText = stats.maxCombo