Skip to content

Commit

Permalink
slight attempt at balancing
Browse files Browse the repository at this point in the history
  • Loading branch information
kwotaq committed Feb 2, 2025
1 parent 895b52a commit ba6d9b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static double EvaluateDifficultyOf(DifficultyHitObject current, IReadOnly

if (currApproachRate < 450)
{
preemptDifficulty += Math.Pow(450 - currApproachRate, 2.5) / 60000;
preemptDifficulty += Math.Pow(450 - currApproachRate, 2.5) / 50000.0;

// Buff spacing.
preemptDifficulty *= currVelocity;
Expand Down
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Osu/Difficulty/Skills/Reading.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Skills
{
public class Reading : OsuStrainSkill
{
private double skillMultiplier => 7.9;
private double skillMultiplier => 7.1;
private double currentStrain;
private double strainDecayBase => 0.2;

Expand Down

0 comments on commit ba6d9b4

Please sign in to comment.