aboutsummaryrefslogtreecommitdiff
path: root/commands/avatarurl.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/avatarurl.js')
-rw-r--r--commands/avatarurl.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/commands/avatarurl.js b/commands/avatarurl.js
index 7f9c256..293a1a4 100644
--- a/commands/avatarurl.js
+++ b/commands/avatarurl.js
@@ -1,6 +1,6 @@
/** **************************************
*
- * AvatarURL: Command for AleeBot
+ * avatarurl: Command for AleeBot
* Copyright (C) 2017-2020 Alee Productions
*
* This program is free software: you can redistribute it and/or modify
@@ -18,16 +18,16 @@
*
* *************************************/
module.exports.run = async (client, message) => {
- message.reply(message.author.avatarURL);
+ message.reply(message.author.avatarURL());
};
exports.conf = {
- aliases: [],
- guildOnly: false,
+ aliases: [],
+ guildOnly: false,
};
exports.help = {
- name: 'avatarurl',
- description: 'Sends you your avatar picture.',
- usage: 'avatarurl',
- category: '- Fun Commands',
+ name: 'avatarurl',
+ description: 'Sends you your avatar picture.',
+ usage: 'avatarurl',
+ category: '- Fun Commands',
};