mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-07 12:28:39 +00:00
Fix sublevels showing on vita
This commit is contained in:
parent
0fb7120dfc
commit
dc690f7cfb
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue