1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-09 18:04:10 +08:00

Merge pull request #744 from EVAST9919/mod_fix

Fixed IncompatibleMods for OsuModAutoplay
This commit is contained in:
Dean Herbert
2017-05-15 12:06:43 +09:00
committed by GitHub
Unverified
+1 -1
View File
@@ -92,7 +92,7 @@ namespace osu.Game.Rulesets.Osu.Mods
public class OsuModAutoplay : ModAutoplay<OsuHitObject>
{
public override Type[] IncompatibleMods => base.IncompatibleMods.Concat(new[] { typeof(OsuModAutopilot) }).ToArray();
public override Type[] IncompatibleMods => base.IncompatibleMods.Concat(new[] { typeof(OsuModAutopilot), typeof(OsuModSpunOut) }).ToArray();
protected override Score CreateReplayScore(Beatmap<OsuHitObject> beatmap) => new Score
{