diff --git a/source/ChartingState.hx b/source/ChartingState.hx index ee1ac92..6346c88 100644 --- a/source/ChartingState.hx +++ b/source/ChartingState.hx @@ -90,29 +90,13 @@ class ChartingState extends MusicBeatState override function create() { - if (PlayState.SONG != null) - _song = PlayState.SONG; - else - { - _song = { - song: 'Test', - notes: [], - bpm: 150, - needsVoices: true, - player1: 'bf', - player2: 'dad', - speed: 1, - validScore: false - }; - } - curSection = lastSection; gridBG = FlxGridOverlay.create(GRID_SIZE, GRID_SIZE, GRID_SIZE * 8, GRID_SIZE * 16); add(gridBG); - leftIcon = new HealthIcon(PlayState.SONG.player1); - rightIcon = new HealthIcon(PlayState.SONG.player2); + leftIcon = new HealthIcon('bf'); + rightIcon = new HealthIcon('dad'); leftIcon.scrollFactor.set(1, 1); rightIcon.scrollFactor.set(1, 1); @@ -131,6 +115,22 @@ class ChartingState extends MusicBeatState curRenderedNotes = new FlxTypedGroup(); curRenderedSustains = new FlxTypedGroup(); + if (PlayState.SONG != null) + _song = PlayState.SONG; + else + { + _song = { + song: 'Test', + notes: [], + bpm: 150, + needsVoices: true, + player1: 'bf', + player2: 'dad', + speed: 1, + validScore: false + }; + } + FlxG.mouse.visible = true; FlxG.save.bind('funkin', 'ninjamuffin99'); diff --git a/source/StoryMenuState.hx b/source/StoryMenuState.hx index a7677a5..cdb1c31 100644 --- a/source/StoryMenuState.hx +++ b/source/StoryMenuState.hx @@ -37,7 +37,7 @@ class StoryMenuState extends MusicBeatState public static var weekUnlocked:Array = [true, true, true, true, true, true, true]; var weekCharacters:Array = [ - ['gf', 'bf', ''], + ['', 'bf', 'gf'], ['dad', 'bf', 'gf'], ['spooky', 'bf', 'gf'], ['pico', 'bf', 'gf'], @@ -47,13 +47,13 @@ class StoryMenuState extends MusicBeatState ]; var weekNames:Array = [ - "", + "How to Funk", "Daddy Dearest", "Spooky Month", "PICO", "MOMMY MUST MURDER", "RED SNOW", - "hating simulator ft. moawling" + "Hating Simulator ft. Moawling" ]; var txtWeekTitle:FlxText;