mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-31 21:22:28 +00:00
Add unimplemented LBP3 login field (#495)
* Add unsupported LBP3 features * Add GameApiExternal config url * Add more exempt urls to digest check * Make exemptPathList static
This commit is contained in:
parent
3ad211e5c8
commit
ded7628085
6 changed files with 28 additions and 7 deletions
|
@ -214,8 +214,8 @@ public class ScoreController : ControllerBase
|
|||
var rankedScores = this.database.Scores
|
||||
.Where(s => s.SlotId == slotId && s.Type == type)
|
||||
.Where(s => s.ChildSlotId == 0 || s.ChildSlotId == childId)
|
||||
.Where(s => playerIds == null || playerIds.Any(id => s.PlayerIdCollection.Contains(id)))
|
||||
.AsEnumerable()
|
||||
.Where(s => playerIds == null || playerIds.Any(id => s.PlayerIdCollection.Contains(id)))
|
||||
.OrderByDescending(s => s.Points)
|
||||
.ThenBy(s => s.ScoreId)
|
||||
.ToList()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue