Merge branch 'master' into master

This commit is contained in:
Cameron Taylor
2020-11-25 00:22:22 -08:00
committed by GitHub
7 changed files with 30 additions and 11 deletions

View File

@ -116,8 +116,10 @@ class MainMenuState extends MusicBeatState
#if linux
Sys.command('/usr/bin/xdg-open', ["https://ninja-muffin24.itch.io/funkin", "&"]);
#else
FlxG.openURL('https://ninja-muffin24.itch.io/funkin');
#end
}
else
{
@ -151,7 +153,9 @@ class MainMenuState extends MusicBeatState
trace("Story Menu Selected");
case 'freeplay':
FlxG.switchState(new FreeplayState());
trace("Freeplay Menu Selected");
case 'options':
FlxG.switchState(new OptionsMenu());
}