From dc690f7cfb4cfb180f92026a9a10b005be894c7e Mon Sep 17 00:00:00 2001 From: jvyden Date: Wed, 16 Feb 2022 14:11:22 -0500 Subject: [PATCH] Fix sublevels showing on vita --- ProjectLighthouse/Controllers/GameApi/Slots/SlotsController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProjectLighthouse/Controllers/GameApi/Slots/SlotsController.cs b/ProjectLighthouse/Controllers/GameApi/Slots/SlotsController.cs index 90aff8f5..04d94441 100644 --- a/ProjectLighthouse/Controllers/GameApi/Slots/SlotsController.cs +++ b/ProjectLighthouse/Controllers/GameApi/Slots/SlotsController.cs @@ -30,7 +30,7 @@ public class SlotsController : ControllerBase if (gameVersion == GameVersion.LittleBigPlanetVita || gameVersion == GameVersion.LittleBigPlanetPSP || gameVersion == GameVersion.Unknown) { - return query.Where(s => s.GameVersion == gameVersion); + return query.Where(s => s.GameVersion == gameVersion && !s.SubLevel); } return query.Where(s => s.GameVersion <= gameVersion && !s.SubLevel);