diff --git a/DiscordBot/commands/details.js b/DiscordBot/commands/details.js index 92dbba7..695eb00 100644 --- a/DiscordBot/commands/details.js +++ b/DiscordBot/commands/details.js @@ -16,7 +16,6 @@ module.exports = { .setColor("#56ff00") .setAuthor({ name: interaction.user.tag, iconURL: interaction.user.avatarURL() }) .setFields( - { name: "Discord", value: `<@${user.discordId}>` }, { name: "Created", value: `${new Date(user.created)}`.substring(0, 15) }, { name: "Banned?", value: `${user.banned}` }, { name: "Account ID", value: user.accountId }, @@ -27,4 +26,4 @@ module.exports = { interaction.editReply({ embeds: [embed], ephemeral: true }); } -} \ No newline at end of file +}