Skip to content

Commit

Permalink
various shit
Browse files Browse the repository at this point in the history
  • Loading branch information
x8c8r committed Jul 19, 2024
1 parent f52bd6d commit 8d47872
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion source/FreeplayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class FreeplayState extends MusicBeatState
newSong("Monster", "Monster", 2, "monster"),

newSong("Pico", "Pico", 3, "pico"),
newSong("Philly", "Philly Nice", 3, "pico"),
newSong("Philly", "Philly", 3, "pico"),
newSong("Blammed", "Blammed", 3, "pico"),

newSong("Satin-Panties", "Satin Panties", 4, "mom"),
Expand Down
3 changes: 2 additions & 1 deletion source/OptionsMenu.hx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ class OptionsMenu extends MusicBeatState
}


if (controls.ACCEPT)
if (FlxG.keys.justPressed.ENTER)
{
changeOption(options[curSelected], curSelected);
}
Expand Down Expand Up @@ -259,6 +259,7 @@ class OptionsMenu extends MusicBeatState

if (update) {
var cur = values.indexOf(curValue)+1;
trace(values[cur] == null ? values[0] : values[cur]);
option[2] = values[cur] == null ? values[0] : values[cur];

SaveManagement.setOption(name, option[2]);
Expand Down
2 changes: 1 addition & 1 deletion source/PauseSubState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class PauseSubState extends MusicBeatSubstate
case "Restart Song":
FlxG.resetState();
case "Exit to menu":
if (comingFromFreeplay)
if (comingFromFreeplay && FlxG.save.data.unlockedFreeplay)
returnToFreeplay();
else
FlxG.switchState(new MainMenuState());
Expand Down
6 changes: 3 additions & 3 deletions source/SongCard.hx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class SongCard extends FlxTypedGroup<FlxSprite>{
case 'pico':
setName("Pico V3", "thomicfee");
case 'philly':
setName("Philly Nice V3", "Didgie");
setName("Philly V3", "Didgie");
case 'blammed':
setName("Blammed V3", "x8c8r");
// Week 4
Expand All @@ -87,7 +87,7 @@ class SongCard extends FlxTypedGroup<FlxSprite>{
case 'high':
setName("High V3", "jo560hs");
case 'milf':
setName("M.I.L.F. V3", "Xarion");
setName("MILF V3", "Xarion");
// Week 5
case 'cocoa':
setName("Cocoa V3", "Didgie");
Expand Down Expand Up @@ -119,7 +119,7 @@ class SongCard extends FlxTypedGroup<FlxSprite>{
case 'dotdotdot':
setName("Dotdotdot", "Didgie");
case 'do-you-get-the-refrance':
setName("do you get the refrance", "x8c8r");
setName("Do You Get The Refrance?", "x8c8r");
case 'stop-right-there-criminal-scum':
setName("Stop right there criminal scum", "PoeDev");
case 'bopcityfansong':
Expand Down

0 comments on commit 8d47872

Please sign in to comment.