From 8e9f503ff44ba330f4fec0e923eec115ea7a6ce1 Mon Sep 17 00:00:00 2001 From: Ashley Graves Date: Sat, 12 Oct 2024 14:02:48 +0200 Subject: [PATCH] hq quote pfp --- src/commands/fun/quote.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/fun/quote.js b/src/commands/fun/quote.js index a1fbcd1..29870e4 100644 --- a/src/commands/fun/quote.js +++ b/src/commands/fun/quote.js @@ -21,7 +21,7 @@ module.exports = { const msg = interaction.targetMessage; const user = msg.author; - const avatar = `https://cdn.discordapp.com/avatars/${user.id}/${user.avatar}.png`; + const avatar = `https://cdn.discordapp.com/avatars/${user.id}/${user.avatar}.png?size=1024`; console.log("Generating quote image"); try { const data = await createQuoteImage(avatar, user.username, msg.content, true, interaction.client.users.cache); @@ -37,4 +37,4 @@ module.exports = { interaction.followUp(e.toString()); } }, -}; \ No newline at end of file +};