fix
This commit is contained in:
parent
e7a765fc23
commit
c698baeecd
1 changed files with 9 additions and 2 deletions
11
commands.ts
11
commands.ts
|
@ -94,8 +94,15 @@ We highly encourage asking authors that opted out to stop doing so.
|
||||||
{
|
{
|
||||||
title: `${mems.length} total members!`,
|
title: `${mems.length} total members!`,
|
||||||
description: `${
|
description: `${
|
||||||
mems.filter((m) => m.presence?.status !== 'offline').length
|
mems.filter(
|
||||||
} online members`,
|
(m) =>
|
||||||
|
m.presence?.status === 'online' ||
|
||||||
|
m.presence?.status === 'idle' ||
|
||||||
|
m.presence?.status === 'dnd'
|
||||||
|
).length
|
||||||
|
} online members, and ${
|
||||||
|
mems.filter((m) => m.presence?.status === 'invisible').length
|
||||||
|
} members that are pretending to be offline`,
|
||||||
color: 'GOLD',
|
color: 'GOLD',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue