Fix date being updated on replays unexpectedly

This commit is contained in:
Dean Herbert
2021-07-19 19:28:35 +09:00
parent f16b4957aa
commit b3f60c8253
3 changed files with 3 additions and 8 deletions

View File

@ -338,7 +338,6 @@ namespace osu.Game.Rulesets.Scoring
score.MaxCombo = HighestCombo.Value;
score.Accuracy = Accuracy.Value;
score.Rank = Rank.Value;
score.Date = DateTimeOffset.Now;
foreach (var result in Enum.GetValues(typeof(HitResult)).OfType<HitResult>().Where(r => r.IsScorable()))
score.Statistics[result] = GetStatistic(result);