From 21dc962710898a1bedb25170ccd4bee98ec7627c Mon Sep 17 00:00:00 2001 From: lilyissillyyy Date: Fri, 22 Aug 2025 22:17:46 -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 115cb566..c56c8858 100644 --- a/structures/JeopardyScrape.js +++ b/structures/JeopardyScrape.js @@ -101,7 +101,7 @@ module.exports = class JeopardyScrape { const seasons = await this.fetchSeasons(); for (const season of seasons) { if (this.seasons.includes(season) && latestSeason !== season) continue; - if (!latestSeason === season) this.seasons.push(season); + if (latestSeason !== season) this.seasons.push(season); const games = await this.fetchSeason(season); for (const gameID of games) { if (this.gameIDs.includes(gameID)) continue;