From a2932e4ec6bb26b646bb0161df5c09442a991f8c Mon Sep 17 00:00:00 2001 From: outofthecoral <83247263+outofthecoral@users.noreply.github.com> Date: Sat, 5 Jun 2021 10:11:04 -0400 Subject: [PATCH] Re-adds the story mode cutscene for Winter Horrorland Cutscene switch didn't change with the song name to add spaces so the cutscene didn't play. --- source/PlayState.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/PlayState.hx b/source/PlayState.hx index 2d82860..de1a317 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -991,7 +991,7 @@ class PlayState extends MusicBeatState { switch (curSong.toLowerCase()) { - case "winter-horrorland": + case "winter horrorland": var blackScreen:FlxSprite = new FlxSprite(0, 0).makeGraphic(Std.int(FlxG.width * 2), Std.int(FlxG.height * 2), FlxColor.BLACK); add(blackScreen); blackScreen.scrollFactor.set();