Skip to content

Commit

Permalink
Adjust target and hold off mod multipliers
Browse files Browse the repository at this point in the history
  • Loading branch information
smoogipoo committed Nov 1, 2022
1 parent 00bd77c commit 3740729
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Mania/Mods/ManiaModHoldOff.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class ManiaModHoldOff : Mod, IApplicableAfterBeatmapConversion

public override string Acronym => "HO";

public override double ScoreMultiplier => 1;
public override double ScoreMultiplier => 0.9;

public override LocalisableString Description => @"Replaces all hold notes with normal notes.";

Expand Down
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Osu/Mods/OsuModTarget.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class OsuModTarget : ModWithVisibilityAdjustment, IApplicableToDrawableRu
public override ModType Type => ModType.Conversion;
public override IconUsage? Icon => OsuIcon.ModTarget;
public override LocalisableString Description => @"Practice keeping up with the beat of the song.";
public override double ScoreMultiplier => 1;
public override double ScoreMultiplier => 0.1;

public override Type[] IncompatibleMods => base.IncompatibleMods.Concat(new[]
{
Expand Down

0 comments on commit 3740729

Please sign in to comment.