mirror of
https://github.com/ppy/osu.git
synced 2025-01-21 06:02:56 +08:00
Fix incorrect base
call causing import optimisation to not work
This commit is contained in:
parent
ace57a9ee9
commit
0be75cc4ed
@ -324,7 +324,7 @@ namespace osu.Game.Beatmaps
|
|||||||
|
|
||||||
protected override bool CanSkipImport(BeatmapSetInfo existing, BeatmapSetInfo import)
|
protected override bool CanSkipImport(BeatmapSetInfo existing, BeatmapSetInfo import)
|
||||||
{
|
{
|
||||||
if (!base.CanReuseExisting(existing, import))
|
if (!base.CanSkipImport(existing, import))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
return existing.Beatmaps.Any(b => b.OnlineBeatmapID != null);
|
return existing.Beatmaps.Any(b => b.OnlineBeatmapID != null);
|
||||||
|
Loading…
Reference in New Issue
Block a user