diff --git a/osu.Game/Modes/Beatmaps/BeatmapConverter.cs b/osu.Game/Modes/Beatmaps/BeatmapConverter.cs
index 3da1dff001..d08eff6583 100644
--- a/osu.Game/Modes/Beatmaps/BeatmapConverter.cs
+++ b/osu.Game/Modes/Beatmaps/BeatmapConverter.cs
@@ -32,6 +32,6 @@ namespace osu.Game.Modes.Beatmaps
///
/// The Beatmap to check.
/// Whether the Beatmap can be converted using this Beatmap Converter.
- public bool CanConvert(Beatmap beatmap) => ValidConversionTypes.All(t => beatmap.HitObjects.Any(h => h.GetType().IsInstanceOfType(t)));
+ public bool CanConvert(Beatmap beatmap) => ValidConversionTypes.All(t => beatmap.HitObjects.Any(h => t.IsInstanceOfType(h)));
}
}