From e430be7bed01a038a90a2ee05df146d917831e97 Mon Sep 17 00:00:00 2001 From: Stefan2008_Official <126715034+Stefan2008Git@users.noreply.github.com> Date: Fri, 10 Nov 2023 19:53:56 +0100 Subject: [PATCH] Don't even use ".PsychEngine" Jordan (#70) That's why is making an to detect assets from ".PsychEngine" because you don't have the correct folder name @JordanSantiagoYT --- source/SUtil.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/SUtil.hx b/source/SUtil.hx index 1cfe67af74d..47ba4e1b0c8 100644 --- a/source/SUtil.hx +++ b/source/SUtil.hx @@ -36,7 +36,7 @@ class SUtil if (aDir != null && aDir.length > 0) return aDir; else - return aDir = Tools.getExternalStorageDirectory() + '/.PsychEngine/'; // i wanna do this to have the ability to use same mods from other ports without making storage full + return aDir = Tools.getExternalStorageDirectory() + '/.JSEngine/'; // i wanna do this to have the ability to use same mods from other ports without making storage full #else return ''; #end