diff options
| author | Alee <alee14498@gmail.com> | 2018-04-20 17:49:37 -0400 |
|---|---|---|
| committer | Alee <alee14498@gmail.com> | 2018-04-20 17:49:37 -0400 |
| commit | c4ef0d5d72dd47b76e39fa91a7552c19c8120ad8 (patch) | |
| tree | 6077983d7e178343f841b3eb5b95b66f70b563bf /commands/avatarurl.js | |
| parent | 325f2ee581cd96d1d1812e95812bb6ea9f9606bc (diff) | |
| download | Oswald-master.tar.gz Oswald-master.tar.bz2 Oswald-master.zip | |
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', +}; |
