From 21ba81c79900331e7d211d6810dc5e9438503d08 Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Mon, 6 Nov 2023 17:51:56 -0500 Subject: [PATCH] Fix a bug where returning to a week in Story Mode would not play dialog --- source/funkin/play/PlayState.hx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/funkin/play/PlayState.hx b/source/funkin/play/PlayState.hx index 4542b9f98..856941e88 100644 --- a/source/funkin/play/PlayState.hx +++ b/source/funkin/play/PlayState.hx @@ -1564,6 +1564,9 @@ class PlayState extends MusicBeatSubState regenNoteData(); + var event:ScriptEvent = new ScriptEvent(CREATE, false); + ScriptEventDispatcher.callEvent(currentSong, event); + generatedMusic = true; }