From ef28ab6afe449231a766b1d3c1be8d15c9c45d7b Mon Sep 17 00:00:00 2001 From: nayakrujul Date: Thu, 4 Jul 2024 15:35:05 +0530 Subject: [PATCH] Fix the cookie --- scripts/folders-classic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/folders-classic.js b/scripts/folders-classic.js index 71c30e5..6c31f38 100644 --- a/scripts/folders-classic.js +++ b/scripts/folders-classic.js @@ -227,7 +227,7 @@ function finish_classic_game() { } function set_quickfire_high_score(score) { - let currenths = get_cookies()["vtp6HighScore_quickFire"]; + let currenths = get_cookies()["vtp6HighScore_quick_fire"]; if (currenths === undefined || score > +currenths.slice(0, -1)) { document.cookie = `vtp6HighScore_quickFire=${score.toFixed(1)}s;` +