This commit is contained in:
Ean Milligan 2025-04-29 18:02:00 -04:00
parent ed60f10d04
commit 861d1e00cd
1 changed files with 12 additions and 16 deletions

View File

@ -123,25 +123,21 @@ Please see attached file for audit details on cached guilds and members.`,
},
{
name: 'Repeat Guild Owners:',
value:
repeatCounts
.map((ownerCnt, serverIdx) => `${ownerCnt} ${ownerCnt === 1 ? 'person has' : 'people have'} me in ${serverIdx + 1} of their guilds`)
.filter((str) => str)
.join('\n') || 'No Repeat Guild Owners',
value: repeatCounts
.map((ownerCnt, serverIdx) => `${ownerCnt} ${ownerCnt === 1 ? 'person has' : 'people have'} me in ${serverIdx + 1} of their guilds`)
.filter((str) => str)
.join('\n') || 'No Repeat Guild Owners',
},
{
name: 'Guild Size Dist:',
value:
Array.from(guildSizeDist)
.map(
([size, count], idx) =>
`${count} Guild${count === 1 ? ' has' : 's have'} ${
guildSizeDist.has(sizeCats[idx - 1])
? `${size.toLocaleString()} - ${(sizeCats[idx - 1] - 1).toLocaleString()}`
: `at least ${size.toLocaleString()}`
} Member${size === 1 ? '' : 's'}`
)
.join('\n') || 'Not available',
value: Array.from(guildSizeDist)
.map(
([size, count], idx) =>
`${count} Guild${count === 1 ? ' has' : 's have'} ${
guildSizeDist.has(sizeCats[idx - 1]) ? `${size.toLocaleString()} - ${(sizeCats[idx - 1] - 1).toLocaleString()}` : `at least ${size.toLocaleString()}`
} Member${size === 1 ? '' : 's'}`,
)
.join('\n') || 'Not available',
},
],
},