Skip to content

Commit

Permalink
port: unlock all challenges properly
Browse files Browse the repository at this point in the history
  • Loading branch information
fgsfdsfgs committed Nov 26, 2023
1 parent 45a44cd commit 3a1d085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game/gamefile.c
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ void gamefileUnlockEverything(void)
// unlock all challenges
for (i = 0; i < ARRAYCOUNT(g_MpChallenges); ++i) {
for (j = 0; j < MAX_PLAYERS; ++j) {
g_MpChallenges[i].completions[j] = 0x0f;
g_MpChallenges[i].completions[j] = 0xff;
}
}
challengeDetermineUnlockedFeatures();
Expand Down

0 comments on commit 3a1d085

Please sign in to comment.