mirror of
https://github.com/ppy/osu.git
synced 2025-01-06 13:22:59 +08:00
Limit upcoming matches displayed to 8
This commit is contained in:
parent
434feb5ac6
commit
9934a97bd0
@ -116,7 +116,7 @@ namespace osu.Game.Tournament.Screens.Schedule
|
||||
.SelectMany(m => m.ConditionalMatches.Where(cp => m.Acronyms.TrueForAll(a => cp.Acronyms.Contains(a))));
|
||||
|
||||
upcoming = upcoming.Concat(conditionals);
|
||||
upcoming = upcoming.OrderBy(p => p.Date.Value).Take(12);
|
||||
upcoming = upcoming.OrderBy(p => p.Date.Value).Take(8);
|
||||
|
||||
mainContainer.Child = new FillFlowContainer
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user