1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-14 05:47:20 +08:00

minor balancing update

This commit is contained in:
Givikap120 2024-03-23 02:35:11 +02:00
parent 333bfd2490
commit cead94de77
2 changed files with 2 additions and 3 deletions

View File

@ -225,7 +225,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty
accuracyValue *= 1.02;
// Visual indication bonus
double visualIndicationBonus = 1.0 + 0.1 * logistic((8.0 - attributes.ApproachRate) / 6);
double visualIndicationBonus = 1.0 + 0.1 * logistic(8.0 - attributes.ApproachRate);
accuracyValue *= visualIndicationBonus;
if (score.Mods.Any(h => h is OsuModHidden))

View File

@ -83,8 +83,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Skills
return difficulty;
}
public static double DifficultyToPerformance(double difficulty) => Math.Pow(difficulty, 4) * 6.0;
public static double DifficultyToPerformance(double difficulty) => difficulty < 1 ? difficulty * 6.0 : Math.Pow(difficulty, 4) * 6.0;
}
public class ReadingHidden : OsuStrainSkill