1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-05 03:13:22 +08:00
This commit is contained in:
Dean Herbert 2024-12-02 19:24:10 -06:00 committed by GitHub
commit 62c6e688d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -84,10 +84,12 @@ namespace osu.Game.Audio
{
if (!string.IsNullOrEmpty(Suffix))
yield return $"Gameplay/{Bank}-{Name}{Suffix}";
else
{
yield return $"Gameplay/{Bank}-{Name}";
yield return $"Gameplay/{Bank}-{Name}";
yield return $"Gameplay/{Name}";
yield return $"Gameplay/{Name}";
}
}
}