mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 17:35:10 +08:00
Apply Review Changes
This commit is contained in:
parent
d94e30bed3
commit
94294ba351
@ -14,7 +14,7 @@ namespace osu.Game.Rulesets.Taiko.Difficulty.Skills
|
||||
/// </summary>
|
||||
public class SingleKeyStamina
|
||||
{
|
||||
private double previousHitTime = -1;
|
||||
private double previousHitTime;
|
||||
|
||||
/// <summary>
|
||||
/// Similar to <see cref="StrainDecaySkill.StrainValueOf(DifficultyHitObject)"/>
|
||||
|
@ -76,6 +76,7 @@ namespace osu.Game.Rulesets.Taiko.Difficulty
|
||||
double staminaPenalty = simpleColourPenalty(staminaRating, colourRating);
|
||||
staminaRating *= staminaPenalty;
|
||||
|
||||
//TODO : This is a temporary fix for the stamina rating of converts, due to their low colour variance.
|
||||
if (beatmap.BeatmapInfo.Ruleset.OnlineID == 0 && colourRating < 0.05)
|
||||
{
|
||||
staminaPenalty *= 0.25;
|
||||
|
Loading…
Reference in New Issue
Block a user