Skip to content

Commit

Permalink
add a small warning upon the first startup
Browse files Browse the repository at this point in the history
untested, but this was added to let people know that i don't work on mobile in case they have a mobile-related issue
  • Loading branch information
JordanSantiagoYT committed Dec 24, 2024
1 parent a27b9c3 commit 6803a75
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions source/TitleState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,12 @@ class TitleState extends MusicBeatState
swagShader = new ColorSwap();
super.create();

if (!FlxG.save.data.did_warning)
{
FlxG.save.data.did_warning = true;
CoolUtil.showPopUp("Please note that Jordan Santiago does not work on this port!\n\nIf you have any issues or questions with this version, please contact @mcagabe19 (mc.9 on Discord)!\n\n", "Important");
}

#if (CHECK_FOR_UPDATES)
if(ClientPrefs.checkForUpdates && !closedState && !Main.askedToUpdate) {
trace('checking for update');
Expand Down

0 comments on commit 6803a75

Please sign in to comment.