1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 15:27:24 +08:00

added OsuModHoldOff to incompatible to respective mods

This commit is contained in:
Givikap120 2024-08-25 18:08:04 +03:00
parent 9fe03551f2
commit 3cecd04632
2 changed files with 3 additions and 2 deletions

View File

@ -26,7 +26,7 @@ namespace osu.Game.Rulesets.Osu.Mods
public override ModType Type => ModType.DifficultyIncrease; public override ModType Type => ModType.DifficultyIncrease;
public override LocalisableString Description => @"Once you start a slider, follow precisely or get a miss."; public override LocalisableString Description => @"Once you start a slider, follow precisely or get a miss.";
public override double ScoreMultiplier => 1.0; 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) public void ApplyToDrawableHitObject(DrawableHitObject drawable)
{ {

View File

@ -48,7 +48,8 @@ namespace osu.Game.Rulesets.Osu.Mods
typeof(OsuModSpunOut), typeof(OsuModSpunOut),
typeof(OsuModStrictTracking), typeof(OsuModStrictTracking),
typeof(OsuModSuddenDeath), typeof(OsuModSuddenDeath),
typeof(OsuModDepth) typeof(OsuModDepth),
typeof(OsuModHoldOff)
}).ToArray(); }).ToArray();
[SettingSource("Seed", "Use a custom seed instead of a random one", SettingControlType = typeof(SettingsNumberBox))] [SettingSource("Seed", "Use a custom seed instead of a random one", SettingControlType = typeof(SettingsNumberBox))]