1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-22 08:29:57 +08:00

Change wrong overwrite type in ScheduleScreen

This commit is contained in:
CloneWith
2025-09-04 17:30:10 +08:00
Unverified
parent 1c608e779d
commit ae0f9619b9
@@ -9,6 +9,7 @@ using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Localisation;
using osu.Game.Graphics;
using osu.Game.Tournament.Components;
using osu.Game.Tournament.Models;
@@ -264,7 +265,7 @@ namespace osu.Game.Tournament.Screens.Schedule
{
}
protected override string Format() => Date < DateTimeOffset.Now
protected override LocalisableString Format() => Date < DateTimeOffset.Now
? $"Started {base.Format()}"
: $"Starting {base.Format()}";
}