1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 10:43:04 +08:00

Fix group ends potentially not being updated correctly

This commit is contained in:
smoogipoo 2019-11-05 19:31:48 +09:00
parent 1ef2b81041
commit 6c58faf30c

View File

@ -49,6 +49,8 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections
FollowPointGroup nextGroup = groups[index + 1];
group.End = nextGroup.Start;
}
else
group.End = null;
if (index > 0)
{