From 1d0399e995ed51de3d235950d484860711b1b691 Mon Sep 17 00:00:00 2001 From: Lucky56 <55949451+Lucky-56@users.noreply.github.com> Date: Mon, 7 Jun 2021 05:42:18 +0200 Subject: [PATCH] fixed Winter Horrorland transition not working --- source/PlayState.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/PlayState.hx b/source/PlayState.hx index ba28441..c715ede 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -998,7 +998,7 @@ class PlayState extends MusicBeatState if (isStoryMode) { - switch (curSong.toLowerCase()) + switch (StringTools.replace(curSong," ", "-").toLowerCase()) { case "winter-horrorland": var blackScreen:FlxSprite = new FlxSprite(0, 0).makeGraphic(Std.int(FlxG.width * 2), Std.int(FlxG.height * 2), FlxColor.BLACK);