Skip to content

Commit

Permalink
Reduce spam account time limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Rian8337 committed Sep 22, 2024
1 parent a3c61a9 commit 796e7cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/events/guildMemberUpdate/utils/onboardingAccountCheck.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ export const run: EventUtil["run"] = async (
const onboardingCompleteDuration = Date.now() - joinedTimestamp;

// Mark the member as a potential alternate account if they complete onboarding within
// 1 minute of their join.
if (onboardingCompleteDuration > 60000) {
// 30 seconds of their join.
if (onboardingCompleteDuration > 30000) {
return;
}

Expand Down

0 comments on commit 796e7cd

Please sign in to comment.