mirror of https://github.com/ppy/osu
Fix osu!catch replay conversion applying left movements to wrong frame
This commit is contained in:
parent
3765c8abb9
commit
71c04472fa
|
@ -52,7 +52,7 @@ public void FromLegacy(LegacyReplayFrame currentFrame, IBeatmap beatmap, ReplayF
|
|||
if (Position > lastCatchFrame.Position)
|
||||
lastCatchFrame.Actions.Add(CatchAction.MoveRight);
|
||||
else if (Position < lastCatchFrame.Position)
|
||||
Actions.Add(CatchAction.MoveLeft);
|
||||
lastCatchFrame.Actions.Add(CatchAction.MoveLeft);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue