1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 12:17:26 +08:00

make perfect incompatible with autopilot

This commit is contained in:
tsunyoku 2022-07-17 20:41:43 +01:00
parent f8685bf7d6
commit e13c1254e5

View File

@ -3,11 +3,14 @@
#nullable disable
using System;
using System.Linq;
using osu.Game.Rulesets.Mods;
namespace osu.Game.Rulesets.Osu.Mods
{
public class OsuModPerfect : ModPerfect
{
public override Type[] IncompatibleMods => base.IncompatibleMods.Concat(new Type[] { typeof(OsuModAutopilot) }).ToArray();
}
}