Skip to content

Commit

Permalink
Remove touch mod addition to mania
Browse files Browse the repository at this point in the history
Feels a bit pointless? I dunno.
  • Loading branch information
peppy committed May 14, 2024
1 parent 636e200 commit f781dc3
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions osu.Game.Rulesets.Mania/ManiaRuleset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,6 @@ public override IEnumerable<Mod> ConvertFromLegacyMods(LegacyMods mods)

if (mods.HasFlagFast(LegacyMods.ScoreV2))
yield return new ModScoreV2();

if (mods.HasFlagFast(LegacyMods.TouchDevice))
yield return new ModTouchDevice();
}

public override LegacyMods ConvertToLegacyMods(Mod[] mods)
Expand Down Expand Up @@ -228,10 +225,6 @@ public override LegacyMods ConvertToLegacyMods(Mod[] mods)
case ManiaModRandom:
value |= LegacyMods.Random;
break;

case ModTouchDevice:
value |= LegacyMods.TouchDevice;
break;
}
}

Expand Down Expand Up @@ -303,7 +296,6 @@ public override IEnumerable<Mod> GetModsFor(ModType type)
case ModType.System:
return new Mod[]
{
new ModTouchDevice(),
new ModScoreV2(),
};

Expand Down

0 comments on commit f781dc3

Please sign in to comment.