diff --git a/commands/games-sp/jeopardy.js b/commands/games-sp/jeopardy.js index 06d1d4bd..4a0c86b0 100644 --- a/commands/games-sp/jeopardy.js +++ b/commands/games-sp/jeopardy.js @@ -1,5 +1,4 @@ const Command = require('../../framework/Command'); -const request = require('node-superfetch'); const { createCanvas, loadImage } = require('@napi-rs/canvas'); const path = require('path'); const { reactIfAble } = require('../../util/Util'); diff --git a/structures/JeopardyScrape.js b/structures/JeopardyScrape.js index b81ba494..c08dc7d2 100644 --- a/structures/JeopardyScrape.js +++ b/structures/JeopardyScrape.js @@ -12,7 +12,7 @@ module.exports = class JeopardyScrape { } async fetchSeasons() { - const { text } = await request.get(`https://j-archive.com/listseasons.php`) + const { text } = await request.get(`https://j-archive.com/listseasons.php`); const $ = cheerio.load(text); const seasons = []; $('table td a').each((j, elem) => {