Skip to content

Commit 7e373f6

Browse files
authored
Merge pull request #30506 from smoogipoo/mania-key-mod-multiplier
Add default multiplier for mania key mods
2 parents 9694eef + 1d232dc commit 7e373f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

osu.Game.Rulesets.Mania/Mods/ManiaKeyMod.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public abstract class ManiaKeyMod : Mod, IApplicableToBeatmapConverter
1414
public override string Acronym => Name;
1515
public abstract int KeyCount { get; }
1616
public override ModType Type => ModType.Conversion;
17-
public override double ScoreMultiplier => 1; // TODO: Implement the mania key mod score multiplier
17+
public override double ScoreMultiplier => 0.9;
1818
public override bool Ranked => UsesDefaultConfiguration;
1919

2020
public void ApplyToBeatmapConverter(IBeatmapConverter beatmapConverter)

0 commit comments

Comments
 (0)