diff --git a/osu.Game/Rulesets/Scoring/Legacy/LegacyScoreParser.cs b/osu.Game/Rulesets/Scoring/Legacy/LegacyScoreParser.cs index 998d2aa0b7..9ebb62a368 100644 --- a/osu.Game/Rulesets/Scoring/Legacy/LegacyScoreParser.cs +++ b/osu.Game/Rulesets/Scoring/Legacy/LegacyScoreParser.cs @@ -143,7 +143,10 @@ namespace osu.Game.Rulesets.Scoring.Legacy throw new InvalidOperationException($"Legacy replay cannot be converted for the ruleset: {currentRuleset.Description}"); convertible.ConvertFrom(legacyFrame, currentBeatmap); - return (ReplayFrame)convertible; + var frame = (ReplayFrame)convertible; + frame.Time = legacyFrame.Time; + + return frame; } } }