From 86c14c88533b913eb2f96b7f92338ebf09618687 Mon Sep 17 00:00:00 2001 From: lilyissillyyy Date: Thu, 18 Sep 2025 16:12:26 -0400 Subject: [PATCH] Change where import is decaled --- structures/JeopardyScrape.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structures/JeopardyScrape.js b/structures/JeopardyScrape.js index 28425d26..d733cf86 100644 --- a/structures/JeopardyScrape.js +++ b/structures/JeopardyScrape.js @@ -70,6 +70,7 @@ module.exports = class JeopardyScrape { const file = await JSON.parseAsync(read); if (typeof file !== 'object' || Array.isArray(file)) return null; if (!file.clues || !file.gameIDs || !file.seasons) return null; + this.imported = true; for (const season of file.seasons) { if (typeof season !== 'string') continue; if (this.seasons.includes(season)) continue; @@ -85,7 +86,6 @@ module.exports = class JeopardyScrape { if (this.clues.some(c => c.question === clue.question && c.answer === clue.answer)) continue; this.clues.push(clue); } - this.imported = true; return file; }