mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-09-25 10:49:01 +00:00
Add mm pick count to PlanetStats
This commit is contained in:
parent
5fd2d0e0d3
commit
2b1cc62e4d
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ namespace LBPUnion.ProjectLighthouse.Controllers
|
|||
public async Task<IActionResult> PlanetStats()
|
||||
{
|
||||
int totalSlotCount = await this.database.Slots.CountAsync();
|
||||
const int mmPicksCount = 0;
|
||||
int mmPicksCount = await this.database.Slots.CountAsync(s => s.TeamPick);
|
||||
|
||||
return this.Ok
|
||||
(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue