diff --git a/commands/search/yu-gi-oh.js b/commands/search/yu-gi-oh.js index 1d69c96a..7f9e6007 100644 --- a/commands/search/yu-gi-oh.js +++ b/commands/search/yu-gi-oh.js @@ -25,10 +25,10 @@ module.exports = class YuGiOhCommand extends Command { async run(msg, { query }) { try { const { body } = await snekfetch - .get(`http://yugiohprices.com/api/card_data/${query}`); + .get(`https://yugiohprices.com/api/card_data/${query}`); if (body.status === 'fail') return msg.say('Could not find any results.'); const image = await snekfetch - .get(`http://yugiohprices.com/api/card_image/${query}`); + .get(`https://yugiohprices.com/api/card_image/${query}`); const { data } = body; const embed = new MessageEmbed() .setColor(0xBE5F1F)