mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-10-03 06:39:16 +00:00
Sort team picks by the time they were team picked (#980)
This commit is contained in:
parent
983b1e9984
commit
a2eaedc85b
16 changed files with 136 additions and 21 deletions
|
@ -61,7 +61,7 @@ public struct ApiSlot
|
|||
MoveRequired = slot.MoveRequired,
|
||||
FirstUploaded = slot.FirstUploaded,
|
||||
LastUpdated = slot.LastUpdated,
|
||||
TeamPick = slot.TeamPick,
|
||||
TeamPick = slot.TeamPickTime != 0,
|
||||
Location = slot.Location,
|
||||
GameVersion = slot.GameVersion,
|
||||
Plays = slot.Plays,
|
||||
|
|
|
@ -31,7 +31,7 @@ public struct MinimalApiSlot
|
|||
Type = slot.Type,
|
||||
Name = slot.Name,
|
||||
IconHash = slot.IconHash,
|
||||
TeamPick = slot.TeamPick,
|
||||
TeamPick = slot.TeamPickTime != 0,
|
||||
IsAdventure = slot.IsAdventurePlanet,
|
||||
Location = slot.Location,
|
||||
GameVersion = slot.GameVersion,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue