Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove point bonus for riddles answered after 24 hours
  • Loading branch information
regalijan committed May 28, 2024
1 parent b5ffc89 commit 616acc2
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions app/routes/events-team_.report.tsx
Expand Up @@ -65,11 +65,6 @@ export async function loader({ context }: { context: RequestContext }) {

if (event.type === "gamenight" && event.reached_minimum_player_count)
memberMap[event.created_by].points += 10;
if (
event.type === "rotw" &&
event.answered_at - event.performed_at >= 86400000
)
memberMap[event.created_by].points += 10;
}

return memberMap;
Expand Down

0 comments on commit 616acc2

Please sign in to comment.