Only seek forwards if not already beyond the placed object

This commit is contained in:
Dean Herbert
2020-05-20 21:50:52 +09:00
parent b5a7023312
commit e09a1bf546

View File

@ -257,6 +257,7 @@ namespace osu.Game.Rulesets.Edit
{
EditorBeatmap.Add(hitObject);
if (adjustableClock.CurrentTime < hitObject.StartTime)
adjustableClock.Seek(hitObject.StartTime);
}