diff --git a/commands/100-games/globalbeatlist.js b/commands/100-games/globalbeatlist.js index 508239a..0b3d1d6 100644 --- a/commands/100-games/globalbeatlist.js +++ b/commands/100-games/globalbeatlist.js @@ -14,6 +14,8 @@ module.exports = { const beatenGamesDatabaseEntries = await getAllBeatenGames(); let desc = ''; + desc = desc.concat('__Total: ', beatenGamesDatabaseEntries.length, '__\n'); + if (!beatenGamesDatabaseEntries || beatenGamesDatabaseEntries.length == 0) { desc = 'No games beaten yet.'; } else { @@ -27,9 +29,8 @@ module.exports = { const embed = new EmbedBuilder() .setColor(0x6441a5) - .setAuthor({ name: `${user.displayName}`, iconURL: user.avatarURL() }) .setThumbnail(interaction.client.user.avatarURL()) - .setTitle('Global Beat List') + .setTitle('The 100 Games Challenge Global Beat List') .setDescription(desc) .setFooter({ text: 'The Ochulus • 100 Games Challenge', iconURL: interaction.client.user.avatarURL() }) .setTimestamp();