From 5208d58b0277af7136021cce17b7a65b0f8deb65 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 8 Apr 2021 22:32:25 -0400 Subject: [PATCH] Fix lint --- commands/search/yu-gi-oh.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/yu-gi-oh.js b/commands/search/yu-gi-oh.js index 2213ff61..9443f24a 100644 --- a/commands/search/yu-gi-oh.js +++ b/commands/search/yu-gi-oh.js @@ -66,7 +66,7 @@ module.exports = class YuGiOhCommand extends Command { true ); } - embed.addField('❯ TCGPlayer Price', `$${data.card_prices[0].tcgplayer_price}`) + embed.addField('❯ TCGPlayer Price', `$${data.card_prices[0].tcgplayer_price}`); return msg.embed(embed); } catch (err) { return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);