1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:47:24 +08:00

Merge pull request #19200 from tsunyoku/perfect-autopilot-incompatible

Fix "Perfect" mod not marking "Autopilot" as incompatible
This commit is contained in:
Salman Ahmed 2022-07-18 06:54:54 +03:00 committed by GitHub
commit eb3410ce79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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[] { typeof(OsuModAutopilot) }).ToArray();
}
}