From 9f7ffa0dbbf7eebd5655f1e94b791046739b0995 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 7 Apr 2024 01:33:18 -0400 Subject: [PATCH] Fix lint --- 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 e4401a21..d4a2045b 100644 --- a/commands/search/magic.js +++ b/commands/search/magic.js @@ -62,7 +62,7 @@ module.exports = class MagicCommand extends Command { .setThumbnail(card.card_faces ? card.card_faces[0].image_uris.art_crop : card.image_uris.art_crop) .setDescription(`${manaCost} ${card.type_line}\n\n${oracleText}`) .setAuthor('Scryfall', logos.scryfall, 'https://scryfall.com/') - .setTitle(card.name) + .setTitle(card.name); if (card.power && card.toughness) { embed.addField('❯ Power', card.power, true); embed.addField('❯ Toughness', card.toughness, true);