mirror of
https://github.com/ppy/osu.git
synced 2025-01-14 00:42:55 +08:00
Change ModType from Fun to Conversion
This commit is contained in:
parent
8a3fa53c26
commit
92f765b958
@ -164,7 +164,8 @@ namespace osu.Game.Rulesets.Osu
|
||||
{
|
||||
new OsuModTarget(),
|
||||
new OsuModDifficultyAdjust(),
|
||||
new OsuModClassic()
|
||||
new OsuModClassic(),
|
||||
new OsuModRandom(),
|
||||
};
|
||||
|
||||
case ModType.Automation:
|
||||
@ -186,7 +187,6 @@ namespace osu.Game.Rulesets.Osu
|
||||
new MultiMod(new ModWindUp(), new ModWindDown()),
|
||||
new OsuModTraceable(),
|
||||
new OsuModBarrelRoll(),
|
||||
new OsuModRandom(),
|
||||
};
|
||||
|
||||
case ModType.System:
|
||||
|
@ -14,7 +14,7 @@ namespace osu.Game.Rulesets.Mods
|
||||
public override string Name => "Random";
|
||||
public override string Acronym => "RD";
|
||||
public override IconUsage? Icon => OsuIcon.Dice;
|
||||
public override ModType Type => ModType.Fun;
|
||||
public override ModType Type => ModType.Conversion;
|
||||
public override string Description => "Practice your reaction time!";
|
||||
public override double ScoreMultiplier => 1;
|
||||
public override bool Ranked => false;
|
||||
|
Loading…
Reference in New Issue
Block a user