diff --git a/osu.Game/Beatmaps/BeatmapManager.cs b/osu.Game/Beatmaps/BeatmapManager.cs
index abb1f5a93c..5e975de77c 100644
--- a/osu.Game/Beatmaps/BeatmapManager.cs
+++ b/osu.Game/Beatmaps/BeatmapManager.cs
@@ -281,9 +281,8 @@ namespace osu.Game.Beatmaps
///
/// The beatmap to lookup.
/// The currently loaded . Allows for optimisation where elements are shared with the new beatmap. May be returned if beatmapInfo requested matches
- /// Whether to bypass the cache and return a new instance.
/// A instance correlating to the provided .
- public WorkingBeatmap GetWorkingBeatmap(BeatmapInfo beatmapInfo, WorkingBeatmap previous = null, bool bypassCache = false)
+ public WorkingBeatmap GetWorkingBeatmap(BeatmapInfo beatmapInfo, WorkingBeatmap previous = null)
{
if (beatmapInfo?.ID > 0 && previous != null && previous.BeatmapInfo?.ID == beatmapInfo.ID)
return previous;
@@ -302,14 +301,9 @@ namespace osu.Game.Beatmaps
lock (workingCache)
{
- BeatmapManagerWorkingBeatmap working;
-
- if (!bypassCache)
- {
- working = workingCache.FirstOrDefault(w => w.BeatmapInfo?.ID == beatmapInfo.ID);
- if (working != null)
- return working;
- }
+ var working = workingCache.FirstOrDefault(w => w.BeatmapInfo?.ID == beatmapInfo.ID);
+ if (working != null)
+ return working;
beatmapInfo.Metadata ??= beatmapInfo.BeatmapSet.Metadata;