mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2026-01-09 00:45:32 +08:00
reduced the assumed time before restart from half to quarter
This commit is contained in:
parent
1e39a62fd6
commit
b6f9c01d70
1 changed files with 2 additions and 2 deletions
|
|
@ -467,7 +467,7 @@ function refreshAccountPage() {
|
|||
tt = parseFloat(result.timeDuration);
|
||||
}
|
||||
if(result.restartCount != null){
|
||||
tt += (tt/2) * result.restartCount;
|
||||
tt += (tt/4) * result.restartCount;
|
||||
}
|
||||
totalSeconds += tt;
|
||||
|
||||
|
|
@ -518,7 +518,7 @@ function refreshAccountPage() {
|
|||
tt = parseFloat(result.timeDuration);
|
||||
}
|
||||
if(result.restartCount != null){
|
||||
tt += (tt/2) * result.restartCount;
|
||||
tt += (tt/4) * result.restartCount;
|
||||
}
|
||||
totalSecondsFiltered += tt;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue