From d1e69917ea2fd4c4fe7dc414a8ea1b26286a9349 Mon Sep 17 00:00:00 2001 From: Anthony M <47640864+IDeletedSystem64@users.noreply.github.com> Date: Wed, 20 Jan 2021 21:05:38 -0600 Subject: [PATCH] Remove userinfo.js This command is causing too many issues and will be readded soon. --- commands/userinfo.js | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 commands/userinfo.js diff --git a/commands/userinfo.js b/commands/userinfo.js deleted file mode 100644 index 39a8346..0000000 --- a/commands/userinfo.js +++ /dev/null @@ -1,42 +0,0 @@ -module.exports = { - - name: "userinfo", - description: "Gets info about an user, such as ID, Discord Join date and more.", - execute(client, message, args) { - - const taggedUser = message.mentions.users.first(); - const embed = { - "title": "Everything you've ever wanted to know about taggedUser.username!", - "color": 172544, - "footer": { - "icon_url": "https://media.discordapp.net/attachments/549707869138714635/793524910172667964/Screenshot_26.png", - "text": "Made with ❤ in Illinois | Anitrox © 2018-2021 IDeletedSystem64" - }, - // This should get the user icon to display as the command thumbnail. - "thumbnail": { - "url": "https://cdn.discordapp.com/embed/avatars/0.png" - }, - "fields": [ - { - "name": "Full Username", - "value": taggedUser.tag - }, - { - "name": "User ID", - "value": "``" + taggedUser.id + "``" - }, - { - "name": "User Joined Discord", - "value": taggedUser.CreatedAt, - "inline": true - }, - { - "name": "User Joined Server", - "value": "tba", - "inline": true - } - ] - }; - message.channel.send({ embed }); - } - }