From 840a70bbd487fdd1befbc805110774d875886c79 Mon Sep 17 00:00:00 2001 From: baz Date: Mon, 18 Mar 2024 20:47:58 +0000 Subject: [PATCH] Add footer to user command --- commands/100-games/user.js | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/100-games/user.js b/commands/100-games/user.js index 45294ed..a051691 100644 --- a/commands/100-games/user.js +++ b/commands/100-games/user.js @@ -30,6 +30,7 @@ module.exports = { embed.setColor(0x6441a5); embed.setTitle(`User Info for ${user.displayName}`); embed.setThumbnail(user.avatarURL()); + embed.setFooter({ text: 'The Ochulus • 100 Games Challenge', iconURL: interaction.client.user.avatarURL() }); if (planNum >= 0) embed.addFields({ name: 'Planned', value: `${planNum} game(s)`, inline: true }); if (playNum >= 0) embed.addFields({ name: 'Now Playing', value: `${playNum} game(s)`, inline: true });