feat(achievements): remove useless achievements

This commit is contained in:
2026-02-04 16:54:54 +01:00
parent a809d8c42d
commit 12a340c5e6
5 changed files with 9 additions and 8 deletions

View File

@@ -151,7 +151,6 @@ const resetGame = () => {
score = 0;
lives = MAX_LIVES;
isNewBest = false;
achievements.unlock("taptap_play");
};
const showDeathScreen = () => {
@@ -201,7 +200,6 @@ onClick((mx, my) => {
highScore.value = score;
isNewBest = true;
}
if (score === 10) achievements.unlock("taptap_score_10");
if (score === 20) achievements.unlock("taptap_score_20");
break;
}