mirror of
https://github.com/ppy/osu.git
synced 2025-01-06 10:22:54 +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))
|
if (mods.HasFlagFast(LegacyMods.ScoreV2))
|
||||||
yield return new ModScoreV2();
|
yield return new ModScoreV2();
|
||||||
|
|
||||||
if (mods.HasFlagFast(LegacyMods.TouchDevice))
|
|
||||||
yield return new ModTouchDevice();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public override LegacyMods ConvertToLegacyMods(Mod[] mods)
|
public override LegacyMods ConvertToLegacyMods(Mod[] mods)
|
||||||
@ -228,10 +225,6 @@ namespace osu.Game.Rulesets.Mania
|
|||||||
case ManiaModRandom:
|
case ManiaModRandom:
|
||||||
value |= LegacyMods.Random;
|
value |= LegacyMods.Random;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ModTouchDevice:
|
|
||||||
value |= LegacyMods.TouchDevice;
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -303,7 +296,6 @@ namespace osu.Game.Rulesets.Mania
|
|||||||
case ModType.System:
|
case ModType.System:
|
||||||
return new Mod[]
|
return new Mod[]
|
||||||
{
|
{
|
||||||
new ModTouchDevice(),
|
|
||||||
new ModScoreV2(),
|
new ModScoreV2(),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user