diff --git a/CHANGELOG.md b/CHANGELOG.md index 718e33774..8d48303e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Clear section button to note editor - Swap button in note editor - a new boot text or two -- automatic check for when you're on an old version of the game! +- automatic check for when you're on an old version of the game! ### Changed - Made Spookeez on Normal easier. - Mouse is now visible in note editor diff --git a/source/MenuCharacter.hx b/source/MenuCharacter.hx index e25c892f9..361aede1f 100644 --- a/source/MenuCharacter.hx +++ b/source/MenuCharacter.hx @@ -22,7 +22,7 @@ class MenuCharacter extends FlxSprite animation.addByPrefix('dad', "Dad idle dance BLACK LINE", 24); animation.addByPrefix('spooky', "spooky dance idle BLACK LINES", 24); animation.addByPrefix('pico', "Pico Idle Dance", 24); - animation.addByPrefix('mom', "Mom Idle Black Lines smol", 24); + animation.addByPrefix('mom', "Mom Idle BLACK LINES", 24); animation.play(character); updateHitbox(); diff --git a/source/MenuItem.hx b/source/MenuItem.hx index 6c18fc89f..17a5f6305 100644 --- a/source/MenuItem.hx +++ b/source/MenuItem.hx @@ -23,7 +23,7 @@ class MenuItem extends FlxSpriteGroup week.animation.addByPrefix('week1', "WEEK1 select", 24); week.animation.addByPrefix('week2', "week2 select", 24); week.animation.addByPrefix('week3', "Week 3 press", 24); - week.animation.addByPrefix('week3', "Week 4 press", 24); + week.animation.addByPrefix('week4', "Week 4 press", 24); add(week); week.animation.play('week' + weekNum); diff --git a/source/StoryMenuState.hx b/source/StoryMenuState.hx index bc48cb717..7c3129f96 100644 --- a/source/StoryMenuState.hx +++ b/source/StoryMenuState.hx @@ -8,6 +8,7 @@ import flixel.group.FlxGroup; import flixel.math.FlxMath; import flixel.text.FlxText; import flixel.tweens.FlxTween; +import flixel.util.FlxColor; import flixel.util.FlxTimer; import lime.net.curl.CURLCode; @@ -74,6 +75,9 @@ class StoryMenuState extends MusicBeatState grpWeekText = new FlxTypedGroup(); add(grpWeekText); + var blackBarThingie:FlxSprite = new FlxSprite().makeGraphic(FlxG.width, 56, FlxColor.BLACK); + add(blackBarThingie); + grpWeekCharacters = new FlxTypedGroup(); grpLocks = new FlxTypedGroup(); diff --git a/source/TitleState.hx b/source/TitleState.hx index a91ed235f..e89a91b9c 100644 --- a/source/TitleState.hx +++ b/source/TitleState.hx @@ -64,7 +64,9 @@ class TitleState extends MusicBeatState if (FlxG.save.data.weekUnlocked != null) { - StoryMenuState.weekUnlocked = FlxG.save.data.weekUnlocked; + // FIX LATER!!! + // WEEK UNLOCK PROGRESSION!! + // StoryMenuState.weekUnlocked = FlxG.save.data.weekUnlocked; if (StoryMenuState.weekUnlocked.length < 4) StoryMenuState.weekUnlocked.insert(0, true);