From 39e13b64caebc7f99dc193a22bb0b6aed8c0d70d Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 20 Apr 2024 14:30:18 -0400 Subject: [PATCH] Use full magic image --- commands/search/magic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/magic.js b/commands/search/magic.js index fc118959..b6f43143 100644 --- a/commands/search/magic.js +++ b/commands/search/magic.js @@ -62,7 +62,7 @@ module.exports = class MagicCommand extends Command { const embed = new EmbedBuilder() .setURL(card.scryfall_uri) .setColor(0x2B253A) - .setThumbnail(card.card_faces ? card.card_faces[0].image_uris.art_crop : card.image_uris.art_crop) + .setThumbnail(card.card_faces ? card.card_faces[0].image_uris.normal : card.image_uris.normal) .setDescription(`${manaCost} ${card.type_line}\n\n${oracleText}`) .setAuthor({ name: 'Scryfall', iconURL: logos.scryfall, url: 'https://scryfall.com/' }) .setTitle(card.name);