address test failure

This commit is contained in:
Gabe Livengood 2023-01-17 10:22:58 -05:00
parent 23ea77cb74
commit dfbbc4002c
2 changed files with 15 additions and 1 deletions

View File

@ -0,0 +1,14 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Linq;
using osu.Game.Rulesets.Mods;
namespace osu.Game.Rulesets.Osu.Mods
{
public class OsuModAccuracyChallenge : ModAccuracyChallenge
{
public override Type[] IncompatibleMods => base.IncompatibleMods.Append(typeof(OsuModAutopilot)).ToArray();
}
}

View File

@ -165,7 +165,7 @@ public override IEnumerable<Mod> GetModsFor(ModType type)
new OsuModHidden(),
new MultiMod(new OsuModFlashlight(), new OsuModBlinds()),
new OsuModStrictTracking(),
new ModAccuracyChallenge(),
new OsuModAccuracyChallenge(),
};
case ModType.Conversion: