This commit is contained in:
Renan LE CARO 2025-04-07 08:24:17 +02:00
parent 46228a2128
commit 9624c5b351
16 changed files with 518 additions and 52 deletions

View file

@ -78,7 +78,15 @@ migrate("compact_runs_data", () => {
delete r.perks[key]
}
}
if('best_level_score' in r) {
delete r.best_level_score
}
if('worst_level_score' in r) {
delete r.worst_level_score
}
});
localStorage.setItem("breakout_71_runs_history", JSON.stringify(runsHistory));
});