aboutsummaryrefslogtreecommitdiff
path: root/src/commands/avatarurl.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/avatarurl.js')
-rw-r--r--src/commands/avatarurl.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/commands/avatarurl.js b/src/commands/avatarurl.js
new file mode 100644
index 0000000..87e9321
--- /dev/null
+++ b/src/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: 'Sends you your avatar picture.',
+ usage: 'avatarurl',
+ category: '- Fun Commands',
+};