From 5851d94b6c49c8e0ad809f340e7031c0f340cd80 Mon Sep 17 00:00:00 2001 From: MtH Date: Sat, 3 Apr 2021 02:03:53 +0200 Subject: [PATCH] sort notes on countdown, fixes layering issue on thorns --- source/PlayState.hx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/PlayState.hx b/source/PlayState.hx index 0987aa96e..89b193b0e 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -1029,6 +1029,8 @@ class PlayState extends MusicBeatState } else if (dad.curCharacter == 'spooky' && !dad.animation.curAnim.name.startsWith("sing")) dad.dance(); + if (generatedMusic) + notes.sort(sortNotes, FlxSort.DESCENDING); var introAssets:Map> = new Map>(); introAssets.set('default', ['ready', "set", "go"]);