1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-05 04:33:39 +08:00

Don't do a recursive fill by default, we don't need it.

This commit is contained in:
Dean Herbert
2016-11-22 22:07:28 +09:00
Unverified
parent 4cf2dd90d6
commit d71550d22a
+1 -1
View File
@@ -144,7 +144,7 @@ namespace osu.Game.Database
var beatmapSetInfo = Query<BeatmapSetInfo>().FirstOrDefault(s => s.BeatmapSetID == beatmapInfo.BeatmapSetID);
//we need metadata
GetChildren(beatmapSetInfo);
GetChildren(beatmapSetInfo, false);
if (beatmapSetInfo == null)
throw new InvalidOperationException($@"Beatmap set {beatmapInfo.BeatmapSetID} is not in the local database.");