summaryrefslogtreecommitdiff
path: root/src/commands/avatarurl.js
blob: 87e9321d9a8104a6dd38efcdc70cda10ac1e7ecc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports.run = async (client, message) => {
    message.reply(message.author.avatarURL);
};
  
exports.conf = {
  aliases: [],
  guildOnly: false,
};
exports.help = {
  name: 'avatarurl',
  description: 'Sends you your avatar picture.',
  usage: 'avatarurl',
  category: '- Fun Commands',
};