From 6803a753e8c1ffde43bb983ec0b1d373efbd4bac Mon Sep 17 00:00:00 2001 From: JordanSantiagoYT Date: Tue, 24 Dec 2024 00:26:35 -0500 Subject: [PATCH] add a small warning upon the first startup untested, but this was added to let people know that i don't work on mobile in case they have a mobile-related issue --- source/TitleState.hx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/TitleState.hx b/source/TitleState.hx index 7beb85153db..9505b14061d 100644 --- a/source/TitleState.hx +++ b/source/TitleState.hx @@ -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');