aboutsummaryrefslogtreecommitdiff
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rw-r--r--commands/avatarurl.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/avatarurl.js b/commands/avatarurl.js
index 293a1a4..7c50e2c 100644
--- a/commands/avatarurl.js
+++ b/commands/avatarurl.js
@@ -18,7 +18,7 @@
*
* *************************************/
module.exports.run = async (client, message) => {
- message.reply(message.author.avatarURL());
+ message.reply(message.author.avatarURL({ dynamic: true, format: 'png', size: 1024 }));
};
exports.conf = {