Skip to content

Commit

Permalink
no osint
Browse files Browse the repository at this point in the history
  • Loading branch information
reteps committed Jun 30, 2024
1 parent c9bea6a commit 6c9346c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/leaderboard/calculate.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const calculateScores = (sample) => {
let maxSolveAmount = 0
for (let i = 0; i < allChallenges.length; i++) {
const amt = solveAmount.get(allChallenges[i].id)
if (amt > maxSolveAmount) {
if (amt > maxSolveAmount && allChallenges[i].category !== 'osint') {
maxSolveAmount = amt
}
}
Expand Down

0 comments on commit 6c9346c

Please sign in to comment.