Revert "Fix converters possibly not converting from new-style beatmaps that hold mode-specific objects."

This reverts commit 6821197a6a.
This commit is contained in:
smoogipooo
2017-05-19 17:38:06 +09:00
parent 860b607f45
commit 7b05930fc2
3 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ namespace osu.Game.Rulesets.Mania.Beatmaps
{
public class ManiaBeatmapConverter : BeatmapConverter<ManiaHitObject>
{
protected override IEnumerable<Type> ValidConversionTypes { get; } = new[] { typeof(IHasXPosition), typeof(ManiaHitObject) };
protected override IEnumerable<Type> ValidConversionTypes { get; } = new[] { typeof(IHasXPosition) };
private Pattern lastPattern = new Pattern();
private FastRandom random;