From 7e2c0e484024fdd3993c41ec2fede919940aca68 Mon Sep 17 00:00:00 2001 From: Jack Date: Wed, 16 Sep 2020 23:20:20 +0100 Subject: [PATCH] removed 'already' and 'place' --- public/js/script.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public/js/script.js b/public/js/script.js index 841211592..ec0335b30 100644 --- a/public/js/script.js +++ b/public/js/script.js @@ -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) {