We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9646acc commit 95c3fb1Copy full SHA for 95c3fb1
FCLauncher/src/main/java/com/tungsten/fclauncher/utils/FCLPath.java
@@ -66,8 +66,8 @@ public static void loadPaths(Context context) {
66
PLUGIN_DIR = FILES_DIR + "/plugins";
67
BACKGROUND_DIR = FILES_DIR + "/background";
68
CONTROLLER_DIR = Environment.getExternalStorageDirectory().getAbsolutePath() + "/FCL/control";
69
-
70
- PRIVATE_COMMON_DIR = context.getExternalFilesDir(".minecraft").getAbsolutePath();
+
+ PRIVATE_COMMON_DIR = new File(context.getExternalFilesDir(null), ".minecraft").getAbsolutePath();
71
72
AUTHLIB_INJECTOR_PATH = PLUGIN_DIR + "/authlib-injector.jar";
73
LIB_PATCHER_PATH = PLUGIN_DIR + "/MioLibPatcher.jar";
0 commit comments