Skip to content

Commit

Permalink
Increase welcome message timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
encode42 committed May 4, 2024
1 parent a2d7ebb commit 8910d3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/discord/events/fixWelcomes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function isDuplicate(username: string) {
continue;
}

if ((now - joinMessage.timestamp) / 1000 < 3) {
if ((now - joinMessage.timestamp) / 1000 < 30) {
return true;
}
}
Expand Down

0 comments on commit 8910d3f

Please sign in to comment.