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); }