Skip to content

Commit

Permalink
Fix the cookie
Browse files Browse the repository at this point in the history
  • Loading branch information
nayakrujul committed Jul 4, 2024
1 parent e077094 commit ef28ab6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/folders-classic.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;` +
Expand Down

0 comments on commit ef28ab6

Please sign in to comment.