File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
osu.Game.Rulesets.Taiko/Difficulty Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,15 @@ protected override DifficultyAttributes CreateDifficultyAttributes(IBeatmap beat
8787 double combinedRating = combinedDifficultyValue ( rhythm , colour , stamina ) ;
8888 double starRating = rescale ( combinedRating * 1.4 ) ;
8989
90+ // TODO: This is temporary measure as we don't detect abuse of multiple-input playstyles of converts within the current system.
91+ if ( beatmap . BeatmapInfo . Ruleset . OnlineID == 0 )
92+ {
93+ starRating *= 0.925 ;
94+ // For maps with low colour variance and high stamina requirement, multiple inputs are more likely to be abused.
95+ if ( colourRating < 2 && staminaRating > 8 )
96+ starRating *= 0.80 ;
97+ }
98+
9099 HitWindows hitWindows = new TaikoHitWindows ( ) ;
91100 hitWindows . SetDifficulty ( beatmap . Difficulty . OverallDifficulty ) ;
92101
You can’t perform that action at this time.
0 commit comments