mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-02-09 21:17:19 +00:00
tutorial patch
This commit is contained in:
parent
edd4fc5b58
commit
88ada9d345
|
@ -124,7 +124,9 @@ class StoryMenuState extends MusicBeatState
|
||||||
weekCharacterThing.setGraphicSize(Std.int(weekCharacterThing.width * 0.5));
|
weekCharacterThing.setGraphicSize(Std.int(weekCharacterThing.width * 0.5));
|
||||||
weekCharacterThing.updateHitbox();
|
weekCharacterThing.updateHitbox();
|
||||||
case 'pico':
|
case 'pico':
|
||||||
weekCharacterThing.y += 60;
|
weekCharacterThing.y += 170;
|
||||||
|
weekCharacterThing.flipX = true;
|
||||||
|
weekCharacterThing.x -= 40;
|
||||||
}
|
}
|
||||||
|
|
||||||
grpWeekCharacters.add(weekCharacterThing);
|
grpWeekCharacters.add(weekCharacterThing);
|
||||||
|
|
|
@ -65,11 +65,15 @@ class TitleState extends MusicBeatState
|
||||||
StoryMenuState.weekUnlocked = FlxG.save.data.weekUnlocked;
|
StoryMenuState.weekUnlocked = FlxG.save.data.weekUnlocked;
|
||||||
|
|
||||||
if (StoryMenuState.weekUnlocked.length < 4)
|
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
|
#if SKIP_TO_PLAYSTATE
|
||||||
FlxG.switchState(new ChartingState());
|
FlxG.switchState(new StoryMenuState());
|
||||||
#else
|
#else
|
||||||
startIntro();
|
startIntro();
|
||||||
#end
|
#end
|
||||||
|
|
Loading…
Reference in a new issue