diff options
Diffstat (limited to 'commands/avatarurl.js')
| -rw-r--r-- | commands/avatarurl.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/commands/avatarurl.js b/commands/avatarurl.js new file mode 100644 index 0000000..fce4e00 --- /dev/null +++ b/commands/avatarurl.js @@ -0,0 +1,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', +}; |
