Add extension Count to list

This commit is contained in:
Christopher Cookman 2023-09-21 14:39:15 -06:00
parent 78baffbb9a
commit 0a99ffc6bd
Signed by: ChrisChrome
GPG key ID: A023A26E42C33A42

View file

@ -492,7 +492,12 @@ dcClient.on('ready', async () => {
embeds: [{ embeds: [{
"title": "Extension List", "title": "Extension List",
"color": 0x00ff00, "color": 0x00ff00,
"description": `${extensionList1}` // Get the number of extensions
"description": `${extensions.length} extensions`,
"fields": [{
"name": "Extensions",
"value": `${extensionList1}`
}]
}] }]
}); });
}) })