1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 15:53:21 +08:00

Remove map count (not returned by API)

This commit is contained in:
smoogipoo 2020-01-14 14:37:24 +09:00
parent cb1984a3c3
commit 05702af905

View File

@ -38,7 +38,6 @@ namespace osu.Game.Overlays.Rankings
private readonly InfoColumn startDateColumn; private readonly InfoColumn startDateColumn;
private readonly InfoColumn endDateColumn; private readonly InfoColumn endDateColumn;
private readonly InfoColumn mapCountColumn;
private readonly InfoColumn participants; private readonly InfoColumn participants;
public SpotlightSelector() public SpotlightSelector()
@ -76,7 +75,6 @@ namespace osu.Game.Overlays.Rankings
{ {
startDateColumn = new InfoColumn(@"Start Date"), startDateColumn = new InfoColumn(@"Start Date"),
endDateColumn = new InfoColumn(@"End Date"), endDateColumn = new InfoColumn(@"End Date"),
mapCountColumn = new InfoColumn(@"Map Count"),
participants = new InfoColumn(@"Participants"), participants = new InfoColumn(@"Participants"),
} }
} }
@ -102,7 +100,6 @@ namespace osu.Game.Overlays.Rankings
{ {
startDateColumn.Value = dateToString(spotlight.NewValue.StartDate); startDateColumn.Value = dateToString(spotlight.NewValue.StartDate);
endDateColumn.Value = dateToString(spotlight.NewValue.EndDate); endDateColumn.Value = dateToString(spotlight.NewValue.EndDate);
// mapCountColumn.Value = spotlight.NewValue.ParticipantCount.ToString();
participants.Value = spotlight.NewValue.ParticipantCount.ToString(); participants.Value = spotlight.NewValue.ParticipantCount.ToString();
} }