summaryrefslogtreecommitdiff
path: root/commands/avatarurl.js
blob: fce4e0095aa587a8328b7f510b60e95c0903b80b (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: 'Displays your avatar.',
  usage: 'avatarurl',
  category: '- General Commands',
};