mirror of
https://github.com/ppy/osu.git
synced 2024-12-13 04:32:57 +08:00
Remove touch mod addition to mania
Feels a bit pointless? I dunno.
This commit is contained in:
parent
636e200471
commit
f781dc3300
@ -163,9 +163,6 @@ namespace osu.Game.Rulesets.Mania
|
||||
|
||||
if (mods.HasFlagFast(LegacyMods.ScoreV2))
|
||||
yield return new ModScoreV2();
|
||||
|
||||
if (mods.HasFlagFast(LegacyMods.TouchDevice))
|
||||
yield return new ModTouchDevice();
|
||||
}
|
||||
|
||||
public override LegacyMods ConvertToLegacyMods(Mod[] mods)
|
||||
@ -228,10 +225,6 @@ namespace osu.Game.Rulesets.Mania
|
||||
case ManiaModRandom:
|
||||
value |= LegacyMods.Random;
|
||||
break;
|
||||
|
||||
case ModTouchDevice:
|
||||
value |= LegacyMods.TouchDevice;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@ -303,7 +296,6 @@ namespace osu.Game.Rulesets.Mania
|
||||
case ModType.System:
|
||||
return new Mod[]
|
||||
{
|
||||
new ModTouchDevice(),
|
||||
new ModScoreV2(),
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user