Merge pull request #10664 from peppy/catcher-moonwalking-in-replays-fix

Fix osu!catch replay conversion applying left movements to wrong frame
This commit is contained in:
Bartłomiej Dach 2020-11-04 00:17:18 +01:00 committed by GitHub
commit a395ca5e15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,7 +52,7 @@ namespace osu.Game.Rulesets.Catch.Replays
if (Position > lastCatchFrame.Position) if (Position > lastCatchFrame.Position)
lastCatchFrame.Actions.Add(CatchAction.MoveRight); lastCatchFrame.Actions.Add(CatchAction.MoveRight);
else if (Position < lastCatchFrame.Position) else if (Position < lastCatchFrame.Position)
Actions.Add(CatchAction.MoveLeft); lastCatchFrame.Actions.Add(CatchAction.MoveLeft);
} }
} }