1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 11:07:25 +08:00

Merge pull request #30456 from smoogipoo/revert-taiko-convert-diffcalc-change

Bring back convert nerf to fix overweighted taiko difficulty
This commit is contained in:
Dean Herbert 2024-11-04 20:00:58 +09:00 committed by GitHub
commit 795477372f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -91,6 +91,15 @@ namespace osu.Game.Rulesets.Taiko.Difficulty
double combinedRating = combinedDifficultyValue(rhythm, colour, stamina);
double starRating = rescale(combinedRating * 1.4);
// TODO: This is temporary measure as we don't detect abuse of multiple-input playstyles of converts within the current system.
if (beatmap.BeatmapInfo.Ruleset.OnlineID == 0)
{
starRating *= 0.925;
// For maps with low colour variance and high stamina requirement, multiple inputs are more likely to be abused.
if (colourRating < 2 && staminaRating > 8)
starRating *= 0.80;
}
HitWindows hitWindows = new TaikoHitWindows();
hitWindows.SetDifficulty(beatmap.Difficulty.OverallDifficulty);