Skip to content

Commit

Permalink
Fixes achievements
Browse files Browse the repository at this point in the history
  • Loading branch information
aweell committed Nov 26, 2024
1 parent ffcc1ab commit 7e49694
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/pages/advent-calendar-2024/utils/achievement-config.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,17 @@ export const achievementsConfig = [
description: "Complete all game days",
icon: IconBugFilled,
check: (newCompletedDays) => {
const gameDays = ["2023-12-01", "2023-12-08", "2023-12-15", "2023-12-22"]; //CAMBIAR ESTO A LOS DÍAS DE JUEGOSSS
const gameDays = [
"2024-12-02",
"2024-12-03",
"2024-12-05",
"2024-12-10",
"2024-12-11",
"2024-12-13",
"2024-12-17",
"2024-12-18",
"2024-12-20",
];
return gameDays.every((day) => newCompletedDays.includes(day));
},
message:
Expand Down

0 comments on commit 7e49694

Please sign in to comment.