diff --git a/commands/100-games/beatGame.js b/commands/100-games/beatGame.js index 3c858a5..ae0796e 100644 --- a/commands/100-games/beatGame.js +++ b/commands/100-games/beatGame.js @@ -24,7 +24,7 @@ module.exports = { body = body.concat('where id = ', gameid, '; '); } else if (gamename) { body = body.concat('search "', gamename, '"; '); - body = body.concat('limit 25; where (category = 0 | category = 4) & version_parent = null;'); + body = body.concat('limit 25; where (category = 0 | category = 4 | category = 8 | category = 9) & version_parent = null;'); } body = body.concat('fields *;'); diff --git a/commands/100-games/searchGames.js b/commands/100-games/searchGames.js index e6bdfc8..9d41cbf 100644 --- a/commands/100-games/searchGames.js +++ b/commands/100-games/searchGames.js @@ -41,7 +41,7 @@ module.exports = { async function searchGamesWithMinimumReview(gamename) { let body = `search "${gamename}"; `; - body = await body.concat('fields *; limit 25; where (category = 0 | category = 4) & version_parent = null & total_rating_count > 0;'); + body = await body.concat('fields *; limit 25; where (category = 0 | category = 4 | category = 8 | category = 9) & version_parent = null & total_rating_count > 0;'); const games = await getGameJson(body);