Skip to content

Commit

Permalink
Update modulo for default avatars by id (#2475)
Browse files Browse the repository at this point in the history
  • Loading branch information
MinnDevelopment committed Jun 8, 2023
1 parent 8ec0812 commit c56cde1
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -47,7 +47,7 @@ public String getAsMention()
@Override
public String getDefaultAvatarId()
{
return String.valueOf((id >> 22) % 5);
return String.valueOf((id >> 22) % 6);
}

@Override
Expand Down

0 comments on commit c56cde1

Please sign in to comment.