mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 04:52:57 +08:00
Merge pull request #5435 from peppy/system-mode-type
Move TouchDevice mod to "system" type
This commit is contained in:
commit
849629708b
@ -11,6 +11,8 @@ namespace osu.Game.Rulesets.Osu.Mods
|
||||
public override string Acronym => "TD";
|
||||
public override double ScoreMultiplier => 1;
|
||||
|
||||
public override ModType Type => ModType.System;
|
||||
|
||||
public override bool Ranked => true;
|
||||
}
|
||||
}
|
||||
|
@ -138,6 +138,12 @@ namespace osu.Game.Rulesets.Osu
|
||||
new MultiMod(new ModWindUp<OsuHitObject>(), new ModWindDown<OsuHitObject>()),
|
||||
};
|
||||
|
||||
case ModType.System:
|
||||
return new Mod[]
|
||||
{
|
||||
new OsuModTouchDevice(),
|
||||
};
|
||||
|
||||
default:
|
||||
return new Mod[] { };
|
||||
}
|
||||
|
@ -9,6 +9,7 @@ namespace osu.Game.Rulesets.Mods
|
||||
DifficultyIncrease,
|
||||
Conversion,
|
||||
Automation,
|
||||
Fun
|
||||
Fun,
|
||||
System
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user