mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 11:28:00 +08:00
Add more specific checks
This commit is contained in:
parent
c7c5837ec1
commit
b5ba74a628
@ -253,7 +253,7 @@ namespace osu.Game.Beatmaps
|
||||
/// <returns>A <see cref="WorkingBeatmap"/> instance correlating to the provided <see cref="BeatmapInfo"/>.</returns>
|
||||
public WorkingBeatmap GetWorkingBeatmap(BeatmapInfo beatmapInfo, WorkingBeatmap previous = null)
|
||||
{
|
||||
if (previous != null && previous.BeatmapInfo.ID == beatmapInfo.ID)
|
||||
if (beatmapInfo?.ID > 0 && previous != null && previous.BeatmapInfo?.ID == beatmapInfo.ID)
|
||||
return previous;
|
||||
|
||||
if (beatmapInfo?.BeatmapSet == null || beatmapInfo == DefaultBeatmap?.BeatmapInfo)
|
||||
|
Loading…
Reference in New Issue
Block a user