diff options
Diffstat (limited to 'commands')
| -rw-r--r-- | commands/avatarurl.js | 2 |
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 = { |
