From a2ffd31de86288906a37b24dfd2c4412ec8c4f09 Mon Sep 17 00:00:00 2001 From: Carol Knieriem Date: Thu, 19 Dec 2019 14:42:50 -0500 Subject: [PATCH] remove commented text from original command --- commands/Utility/avatar.js | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/commands/Utility/avatar.js b/commands/Utility/avatar.js index c4b327a..564e8b5 100644 --- a/commands/Utility/avatar.js +++ b/commands/Utility/avatar.js @@ -1,27 +1,3 @@ -/* -exports.run = async (bot, msg) => { - const user = msg.mentions.users.first(); - if (!user) { - throw 'Please mention the user who you want the avatar from.'; - } - - if (!user.avatarURL) { - throw 'That user does not have an avatar.'; - } - - msg.delete(); - (await msg.channel.send({ - embed: bot.utils.embed(`${user.username}'s Avatar`, `[Download](${user.avatarURL})`, [], { image: user.avatarURL }) - })).delete(30000); -}; - -exports.info = { - name: 'avatar', - usage: 'avatar ', - description: 'Gives you the avatar of a user' -}; -*/ - exports.run = async (client, message, args, level) => { let user;