Skip to content

Commit

Permalink
Disable FML Early Loading to get Forge 1.14+ works
Browse files Browse the repository at this point in the history
  • Loading branch information
khanhduytran0 authored Dec 13, 2020
1 parent 4fbd68b commit a666178
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/src/main/java/net/kdt/pojavlaunch/Tools.java
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@ public static void getJavaArgs(Context ctx, List<String> javaArgList) {

overrideableArgList.add("-Dnet.minecraft.clientmodname=" + Tools.APP_NAME);

// Disable FML Early Loading Screen to get Forge 1.14+ works
overrideableArgList.add("-Dfml.earlyprogresswindow", "false");

// Override args
for (String argOverride : LauncherPreferences.PREF_CUSTOM_JAVA_ARGS.split(" ")) {
for (int i = 0; i < overrideableArgList.size(); i++) {
Expand Down

0 comments on commit a666178

Please sign in to comment.