Skip to content

Commit 6744107

Browse files
authored
Merge ppy/master: Obsolete Mod.ScoreMultiplier
2 parents 8b96b3c + 926f1c9 commit 6744107

84 files changed

Lines changed: 6 additions & 159 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

osu.Game.Rulesets.Catch/Mods/CatchModFlashlight.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ namespace osu.Game.Rulesets.Catch.Mods
1313
{
1414
public partial class CatchModFlashlight : ModFlashlight<CatchHitObject>
1515
{
16-
public override double ScoreMultiplier => UsesDefaultConfiguration ? 1.12 : 1;
17-
1816
public override BindableFloat SizeMultiplier { get; } = new BindableFloat(1)
1917
{
2018
MinValue = 0.5f,

osu.Game.Rulesets.Catch/Mods/CatchModFloatingFruits.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ public class CatchModFloatingFruits : Mod, IApplicableToDrawableRuleset<CatchHit
1616
public override string Name => "Floating Fruits";
1717
public override string Acronym => "FF";
1818
public override LocalisableString Description => "The fruits are... floating?";
19-
public override double ScoreMultiplier => 1;
2019
public override IconUsage? Icon => OsuIcon.ModFloatingFruits;
2120

2221
public void ApplyToDrawableRuleset(DrawableRuleset<CatchHitObject> drawableRuleset)

osu.Game.Rulesets.Catch/Mods/CatchModHardRock.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ namespace osu.Game.Rulesets.Catch.Mods
1010
{
1111
public class CatchModHardRock : ModHardRock, IApplicableToBeatmapProcessor
1212
{
13-
public override double ScoreMultiplier => UsesDefaultConfiguration ? 1.12 : 1;
14-
1513
public void ApplyToBeatmapProcessor(IBeatmapProcessor beatmapProcessor)
1614
{
1715
var catchProcessor = (CatchBeatmapProcessor)beatmapProcessor;

osu.Game.Rulesets.Catch/Mods/CatchModHidden.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ namespace osu.Game.Rulesets.Catch.Mods
1616
public class CatchModHidden : ModHidden, IApplicableToDrawableRuleset<CatchHitObject>
1717
{
1818
public override LocalisableString Description => @"Play with fading fruits.";
19-
public override double ScoreMultiplier => UsesDefaultConfiguration ? 1.06 : 1;
2019

2120
private const double fade_out_offset_multiplier = 0.6;
2221
private const double fade_out_duration_multiplier = 0.44;

osu.Game.Rulesets.Catch/Mods/CatchModMovingFast.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ public partial class CatchModMovingFast : Mod, IApplicableToDrawableRuleset<Catc
2323
public override string Acronym => "MF";
2424
public override LocalisableString Description => "Dashing by default, slow down!";
2525
public override ModType Type => ModType.Fun;
26-
public override double ScoreMultiplier => 1;
2726
public override IconUsage? Icon => OsuIcon.ModMovingFast;
2827
public override Type[] IncompatibleMods => new[] { typeof(ModAutoplay), typeof(ModRelax) };
2928

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ 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 => 0.9;
1817
public override bool Ranked => UsesDefaultConfiguration;
1918

2019
public void ApplyToBeatmapConverter(IBeatmapConverter beatmapConverter)

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ public class ManiaModConstantSpeed : Mod, IApplicableToDrawableRuleset<ManiaHitO
1818

1919
public override string Acronym => "CS";
2020

21-
public override double ScoreMultiplier => 0.9;
22-
2321
public override LocalisableString Description => "No more tricky speed changes!";
2422

2523
public override IconUsage? Icon => OsuIcon.ModConstantSpeed;

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ public class ManiaModCover : ManiaModWithPlayfieldCover
2020

2121
public override LocalisableString Description => @"Decrease the playfield's viewing area.";
2222

23-
public override double ScoreMultiplier => 1;
24-
2523
protected override CoverExpandDirection ExpandDirection => Direction.Value;
2624

2725
public override Type[] IncompatibleMods => base.IncompatibleMods.Concat(new[]

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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,5 @@ namespace osu.Game.Rulesets.Mania.Mods
77
{
88
public class ManiaModDoubleTime : ModDoubleTime, IManiaRateAdjustmentMod
99
{
10-
// For now, all rate-increasing mods should be given a 1x multiplier in mania because it doesn't always
11-
// make the map harder and is more of a personal preference.
12-
// In the future, we can consider adjusting this by experimenting with not applying the hitwindow leniency.
13-
public override double ScoreMultiplier => 1;
1410
}
1511
}

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ public class ManiaModDualStages : Mod, IPlayfieldTypeMod, IApplicableToBeatmapCo
1717
public override LocalisableString Description => @"Double the stages, double the fun!";
1818
public override IconUsage? Icon => OsuIcon.ModDualStages;
1919
public override ModType Type => ModType.Conversion;
20-
public override double ScoreMultiplier => 1;
2120

2221
private bool isForCurrentRuleset;
2322

0 commit comments

Comments
 (0)