mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-11 00:03:44 +08:00
removed 'already' and 'place'
This commit is contained in:
parent
3b5f5d4b10
commit
7e2c0e4840
1 changed files with 4 additions and 4 deletions
|
@ -2014,12 +2014,12 @@ function showResult(difficultyFailed = false) {
|
|||
glb.insertedAt
|
||||
);
|
||||
let str = getPositionString(glb.insertedAt + 1);
|
||||
globalLbString = `global: ${str} place`;
|
||||
globalLbString = `global: ${str}`;
|
||||
} else {
|
||||
globalLbDiff = glbMemory - glb.foundAt;
|
||||
updateLbMemory(config.mode, mode2, "global", glb.foundAt);
|
||||
let str = getPositionString(glb.foundAt + 1);
|
||||
globalLbString = `global: already ${str}`;
|
||||
globalLbString = `global: ${str}`;
|
||||
}
|
||||
}
|
||||
if (!dontShowGlobalDiff) {
|
||||
|
@ -2057,12 +2057,12 @@ function showResult(difficultyFailed = false) {
|
|||
dlb.insertedAt
|
||||
);
|
||||
let str = getPositionString(dlb.insertedAt + 1);
|
||||
dailyLbString = `daily: ${str} place`;
|
||||
dailyLbString = `daily: ${str}`;
|
||||
} else {
|
||||
dailyLbDiff = dlbMemory - dlb.foundAt;
|
||||
updateLbMemory(config.mode, mode2, "daily", dlb.foundAt);
|
||||
let str = getPositionString(dlb.foundAt + 1);
|
||||
dailyLbString = `daily: already ${str}`;
|
||||
dailyLbString = `daily: ${str}`;
|
||||
}
|
||||
}
|
||||
if (!dontShowDailyDiff) {
|
||||
|
|
Loading…
Reference in a new issue