We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b1c781 commit 89b2b7fCopy full SHA for 89b2b7f
source/funkin/play/PlayState.hx
@@ -1424,9 +1424,6 @@ class PlayState extends MusicBeatSubState
1424
// super.dispatchEvent(event) dispatches event to module scripts.
1425
super.dispatchEvent(event);
1426
1427
- // Dispatch event to note kind scripts
1428
- NoteKindManager.callEvent(event);
1429
-
1430
// Dispatch event to stage script.
1431
ScriptEventDispatcher.callEvent(currentStage, event);
1432
@@ -1438,6 +1435,9 @@ class PlayState extends MusicBeatSubState
1438
1435
1439
1436
// Dispatch event to conversation script.
1440
1437
ScriptEventDispatcher.callEvent(currentConversation, event);
+
+ // Dispatch event to note kind scripts
+ NoteKindManager.callEvent(event);
1441
}
1442
1443
/**
0 commit comments