From d4c2497ae2192f6b65ef189f4b6a2c6117b3ab6b Mon Sep 17 00:00:00 2001 From: lilyissillyyy Date: Sun, 14 Sep 2025 00:46:15 -0400 Subject: [PATCH] Fix --- structures/JeopardyScrape.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structures/JeopardyScrape.js b/structures/JeopardyScrape.js index 28790803..abb77008 100644 --- a/structures/JeopardyScrape.js +++ b/structures/JeopardyScrape.js @@ -81,7 +81,7 @@ module.exports = class JeopardyScrape { } for (const clue of file.clues) { if (typeof clue !== 'object' || Array.isArray(clue)) continue; - if (this.clues.includes(clue.question)) continue; + if (this.clues.some(c => c.question === clue.question && c.answer === clue.answer)) continue; this.clues.push(clue); } this.imported = true;