1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-23 00:20:38 +08:00

Fix looping not being checked

This commit is contained in:
smoogipoo
2019-02-27 17:03:09 +09:00
Unverified
parent 30815ace62
commit 1006c539be
+1 -1
View File
@@ -353,7 +353,7 @@ namespace osu.Game.Overlays
private void currentTrackCompleted() => Schedule(() =>
{
if (!beatmap.Disabled && beatmapSets.Any())
if (!current.Track.Looping && !beatmap.Disabled && beatmapSets.Any())
next();
});