This commit is contained in:
Ryan Cao 2022-06-02 19:49:09 +08:00
parent e7a765fc23
commit c698baeecd
No known key found for this signature in database
GPG key ID: 528A2C1B6656B97F

View file

@ -94,8 +94,15 @@ We highly encourage asking authors that opted out to stop doing so.
{
title: `${mems.length} total members!`,
description: `${
mems.filter((m) => m.presence?.status !== 'offline').length
} online members`,
mems.filter(
(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',
},
],