From 32805b594bf10af94e86357401c64ebbb9c5ef08 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Fri, 22 May 2020 21:26:08 -0400 Subject: [PATCH] Fix --- commands/edit-meme/dislike.js | 2 +- commands/edit-meme/like.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 }) } ] });