diff --git a/commands/edit-meme/dislike.js b/commands/edit-meme/dislike.js index bc19a7c5..1b4d6cc1 100644 --- a/commands/edit-meme/dislike.js +++ b/commands/edit-meme/dislike.js @@ -34,7 +34,7 @@ module.exports = class DislikeCommand extends Command { key: 'image', prompt: 'What image would you like to edit?', type: 'image', - default: msg => msg.author.displayAvatarURL({ format: 'png', size: 1028 }) + default: msg => msg.author.displayAvatarURL({ format: 'png', size: 1024 }) } ] }); diff --git a/commands/edit-meme/like.js b/commands/edit-meme/like.js index f4361f95..0d2a3dcb 100644 --- a/commands/edit-meme/like.js +++ b/commands/edit-meme/like.js @@ -34,7 +34,7 @@ module.exports = class LikeCommand extends Command { key: 'image', prompt: 'What image would you like to edit?', type: 'image', - default: msg => msg.author.displayAvatarURL({ format: 'png', size: 1028 }) + default: msg => msg.author.displayAvatarURL({ format: 'png', size: 1024 }) } ] });