1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-29 07:29:53 +08:00

added OsuModHoldOff to incompatible to respective mods

This commit is contained in:
Givikap120
2024-08-25 18:08:04 +03:00
Unverified
parent 9fe03551f2
commit 3cecd04632
2 changed files with 3 additions and 2 deletions
@@ -26,7 +26,7 @@ namespace osu.Game.Rulesets.Osu.Mods
public override ModType Type => ModType.DifficultyIncrease;
public override LocalisableString Description => @"Once you start a slider, follow precisely or get a miss.";
public override double ScoreMultiplier => 1.0;
public override Type[] IncompatibleMods => new[] { typeof(ModClassic), typeof(OsuModTargetPractice) };
public override Type[] IncompatibleMods => new[] { typeof(ModClassic), typeof(OsuModTargetPractice), typeof(OsuModHoldOff) };
public void ApplyToDrawableHitObject(DrawableHitObject drawable)
{
@@ -48,7 +48,8 @@ namespace osu.Game.Rulesets.Osu.Mods
typeof(OsuModSpunOut),
typeof(OsuModStrictTracking),
typeof(OsuModSuddenDeath),
typeof(OsuModDepth)
typeof(OsuModDepth),
typeof(OsuModHoldOff)
}).ToArray();
[SettingSource("Seed", "Use a custom seed instead of a random one", SettingControlType = typeof(SettingsNumberBox))]