diff --git a/ProjectLighthouse/Controllers/SlotsController.cs b/ProjectLighthouse/Controllers/SlotsController.cs index 9a0d810d..9d48f57e 100644 --- a/ProjectLighthouse/Controllers/SlotsController.cs +++ b/ProjectLighthouse/Controllers/SlotsController.cs @@ -93,7 +93,7 @@ namespace LBPUnion.ProjectLighthouse.Controllers public async Task Lbp1CoolSlots([FromQuery] int page) { const int pageSize = 30; - return await CoolSlots(page * pageSize, pageSize); + return await CoolSlots((page - 1) * pageSize, pageSize); } [HttpGet("slots/lbp2cool")]