mirror of
https://github.com/ppy/osu
synced 2025-01-01 11:52:20 +00:00
Fix converted frames not getting time values
This commit is contained in:
parent
a24e8b02e8
commit
e869f7d05b
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user