mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 09:17:51 +08:00
Rectify null value call
tired programming is never a good idea
This commit is contained in:
parent
c7ec95c0d0
commit
db6abd86f0
@ -28,7 +28,7 @@ namespace osu.Game.Rulesets.Taiko.Difficulty.Skills
|
||||
}
|
||||
|
||||
double objectStrain = 0.5;
|
||||
objectStrain += speedBonus(current.StartTime - previousHitTime);
|
||||
objectStrain += speedBonus(current.StartTime - previousHitTime.Value);
|
||||
previousHitTime = current.StartTime;
|
||||
return objectStrain;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user