mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 07:06:35 +09:00
Fix converted frames not getting time values
This commit is contained in:
@ -143,7 +143,10 @@ namespace osu.Game.Rulesets.Scoring.Legacy
|
|||||||
throw new InvalidOperationException($"Legacy replay cannot be converted for the ruleset: {currentRuleset.Description}");
|
throw new InvalidOperationException($"Legacy replay cannot be converted for the ruleset: {currentRuleset.Description}");
|
||||||
convertible.ConvertFrom(legacyFrame, currentBeatmap);
|
convertible.ConvertFrom(legacyFrame, currentBeatmap);
|
||||||
|
|
||||||
return (ReplayFrame)convertible;
|
var frame = (ReplayFrame)convertible;
|
||||||
|
frame.Time = legacyFrame.Time;
|
||||||
|
|
||||||
|
return frame;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user