From 951845c0dd743f0f47cb6209a94924537f9a5798 Mon Sep 17 00:00:00 2001 From: lilyissillyyy Date: Sun, 14 Sep 2025 00:17:56 -0400 Subject: [PATCH] Oh... That's the issue??? --- structures/JeopardyScrape.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structures/JeopardyScrape.js b/structures/JeopardyScrape.js index 0a4b3f06..f5c9e6ca 100644 --- a/structures/JeopardyScrape.js +++ b/structures/JeopardyScrape.js @@ -80,7 +80,7 @@ module.exports = class JeopardyScrape { this.gameIDs.push(gameID); } for (const clue of file.clues) { - if (typeof clue !== 'string') continue; + if (typeof clue !== 'object' || Array.isArray(clue)) continue; if (this.clues.includes(clue)) continue; this.clues.push(clue); }