Sort team picks by the time they were team picked (#980)

This commit is contained in:
Josh 2024-02-23 08:38:02 -06:00 committed by GitHub
commit a2eaedc85b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 136 additions and 21 deletions

View file

@ -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,

View file

@ -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,