diff --git a/ProjectLighthouse/Controllers/GameApi/Slots/SlotsController.cs b/ProjectLighthouse/Controllers/GameApi/Slots/SlotsController.cs index 26084d73..90cde11e 100644 --- a/ProjectLighthouse/Controllers/GameApi/Slots/SlotsController.cs +++ b/ProjectLighthouse/Controllers/GameApi/Slots/SlotsController.cs @@ -33,7 +33,7 @@ public class SlotsController : ControllerBase return query.Where(s => s.GameVersion == gameVersion); } - return query.Where(s => s.GameVersion <= gameVersion); + return query.Where(s => s.GameVersion <= gameVersion && !s.SubLevel); } [HttpGet("slots/by")]