Fix TimeRate not being considered for performance calculation

This commit is contained in:
smoogipoo
2018-05-14 11:15:14 +09:00
parent 9515eb4281
commit e1b8a1589b
3 changed files with 35 additions and 6 deletions

View File

@ -14,7 +14,7 @@ namespace osu.Game.Beatmaps
protected readonly IBeatmap Beatmap;
protected readonly Mod[] Mods;
protected double TimeRate = 1;
protected double TimeRate { get; private set; } = 1;
protected DifficultyCalculator(IBeatmap beatmap, Mod[] mods = null)
{