1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 11:02:57 +08:00

restore original global multiplier so people dont mald

This commit is contained in:
Xexxar 2021-11-06 19:22:30 +00:00
parent 6f5cfe3268
commit 9b8b6846e9

View File

@ -43,7 +43,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty
countMiss = Score.Statistics.GetValueOrDefault(HitResult.Miss);
effectiveMissCount = calculateEffectiveMissCount();
double multiplier = 1.1; // This is being adjusted to keep the final pp value scaled around what it used to be when changing things.
double multiplier = 1.12; // This is being adjusted to keep the final pp value scaled around what it used to be when changing things.
// Custom multipliers for NoFail and SpunOut.
if (mods.Any(m => m is OsuModNoFail))