X Tutup
Skip to content

Commit 89b2b7f

Browse files
Az989YTHundrec
authored andcommitted
change event dispatching to match comment order
1 parent 1b1c781 commit 89b2b7f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/funkin/play/PlayState.hx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1424,9 +1424,6 @@ class PlayState extends MusicBeatSubState
14241424
// super.dispatchEvent(event) dispatches event to module scripts.
14251425
super.dispatchEvent(event);
14261426

1427-
// Dispatch event to note kind scripts
1428-
NoteKindManager.callEvent(event);
1429-
14301427
// Dispatch event to stage script.
14311428
ScriptEventDispatcher.callEvent(currentStage, event);
14321429

@@ -1438,6 +1435,9 @@ class PlayState extends MusicBeatSubState
14381435

14391436
// Dispatch event to conversation script.
14401437
ScriptEventDispatcher.callEvent(currentConversation, event);
1438+
1439+
// Dispatch event to note kind scripts
1440+
NoteKindManager.callEvent(event);
14411441
}
14421442

14431443
/**

0 commit comments

Comments
 (0)
X Tutup