mirror of
https://github.com/ppy/osu.git
synced 2025-02-05 02:03:04 +08:00
Make spinners easier for now
The underlying spin counting doesn't match stabnle, so they have been near impossible to complete until now.
This commit is contained in:
parent
16212fce19
commit
5cb6963940
@ -24,6 +24,9 @@ namespace osu.Game.Rulesets.Osu.Objects
|
|||||||
base.ApplyDefaults(controlPointInfo, difficulty);
|
base.ApplyDefaults(controlPointInfo, difficulty);
|
||||||
|
|
||||||
SpinsRequired = (int)(Duration / 1000 * BeatmapDifficulty.DifficultyRange(difficulty.OverallDifficulty, 3, 5, 7.5));
|
SpinsRequired = (int)(Duration / 1000 * BeatmapDifficulty.DifficultyRange(difficulty.OverallDifficulty, 3, 5, 7.5));
|
||||||
|
|
||||||
|
// spinning doesn't match 1:1 with stable, so let's fudge them easier for the time being.
|
||||||
|
SpinsRequired = (int)(SpinsRequired * 0.6);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user