From 334f279ec214f45dfebb2b28a439f2ab62e7946a Mon Sep 17 00:00:00 2001 From: Cameron Taylor Date: Fri, 11 Dec 2020 08:49:06 -0500 Subject: [PATCH] tutorial patch --- source/StoryMenuState.hx | 4 +++- source/TitleState.hx | 8 ++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/source/StoryMenuState.hx b/source/StoryMenuState.hx index d0ae3ef066..b881fa9cc1 100644 --- a/source/StoryMenuState.hx +++ b/source/StoryMenuState.hx @@ -124,7 +124,9 @@ class StoryMenuState extends MusicBeatState weekCharacterThing.setGraphicSize(Std.int(weekCharacterThing.width * 0.5)); weekCharacterThing.updateHitbox(); case 'pico': - weekCharacterThing.y += 60; + weekCharacterThing.y += 170; + weekCharacterThing.flipX = true; + weekCharacterThing.x -= 40; } grpWeekCharacters.add(weekCharacterThing); diff --git a/source/TitleState.hx b/source/TitleState.hx index 6d43402c50..26bb4405bb 100644 --- a/source/TitleState.hx +++ b/source/TitleState.hx @@ -65,11 +65,15 @@ class TitleState extends MusicBeatState StoryMenuState.weekUnlocked = FlxG.save.data.weekUnlocked; if (StoryMenuState.weekUnlocked.length < 4) - StoryMenuState.weekUnlocked.insert(0, false); + StoryMenuState.weekUnlocked.insert(0, true); + + // QUICK PATCH OOPS! + if (!StoryMenuState.weekUnlocked[0]) + StoryMenuState.weekUnlocked[0] = true; } #if SKIP_TO_PLAYSTATE - FlxG.switchState(new ChartingState()); + FlxG.switchState(new StoryMenuState()); #else startIntro(); #end