fix lines per minutes
This commit is contained in:
parent
cc44b69b3b
commit
7b3db0b58d
2
app.js
2
app.js
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user