1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/avatar.js

16 lines
500 B
JavaScript

module.exports = {
name: 'avatar',
aliases: ['icon', 'pfp'],
description: 'Send the avatar of the user mentionned',
execute(message) {
if (!message.mentions.users.size) {
return message.channel.send(`Your avatar: ${message.author.displayAvatarURL}`);
}
const avatarList = message.mentions.users.map(user => {
return `${user.username}'s avatar: ${user.displayAvatarURL}`;
});
message.channel.send(avatarList);
},
};