diff --git a/ProjectLighthouse.Servers.Website/Pages/SlotPage.cshtml.cs b/ProjectLighthouse.Servers.Website/Pages/SlotPage.cshtml.cs index f7a6f958..cc06b183 100644 --- a/ProjectLighthouse.Servers.Website/Pages/SlotPage.cshtml.cs +++ b/ProjectLighthouse.Servers.Website/Pages/SlotPage.cshtml.cs @@ -107,7 +107,7 @@ public class SlotPage : BaseLayout .ToListAsync(); this.Scores = await this.Database.Scores.OrderByDescending(s => s.Points) - .ThenByDescending(s => s.ScoreId) + .ThenBy(s => s.ScoreId) .Where(s => s.SlotId == id) .Take(10) .ToListAsync(); @@ -122,4 +122,4 @@ public class SlotPage : BaseLayout return this.Page(); } -} \ No newline at end of file +}