From dae075396fb8335f0ec98e5e47a19ba6c457d1b3 Mon Sep 17 00:00:00 2001 From: lilyissillyyy Date: Sun, 14 Sep 2025 00:19:44 -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 f5c9e6ca..722c8153 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)) continue; + if (this.clues.includes(clue.question)) continue; this.clues.push(clue); } this.imported = true;