mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 08:27:49 +08:00
added OsuModHoldOff to incompatible to respective mods
This commit is contained in:
parent
9fe03551f2
commit
3cecd04632
@ -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)
|
||||||
{
|
{
|
||||||
|
@ -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))]
|
||||||
|
Loading…
Reference in New Issue
Block a user