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