Skip to content

Commit

Permalink
lower gametime criterium to 50% (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
therungg authored Dec 19, 2023
1 parent 6c10262 commit 57c3d17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/games/[game]/game.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const Game: React.FunctionComponent<GameProps> = ({ data }) => {
!data.global?.forceRealTime &&
data.statsGameTime &&
data.statsGameTime.categoryLeaderboards.length >
data.stats.categoryLeaderboards.length * 0.9
data.stats.categoryLeaderboards.length * 0.5
);
});

Expand Down

0 comments on commit 57c3d17

Please sign in to comment.