Fix runClient

This commit is contained in:
modmuss50 2018-05-14 14:47:43 +01:00
parent ae97990aaa
commit 66c043f171

View file

@ -86,6 +86,7 @@ public class RunClientTask extends JavaExec {
List<String> args = new ArrayList<>();
args.add("-Djava.library.path=" + Constants.MINECRAFT_NATIVES.get(extension).getAbsolutePath());
args.add("-Dfabric.development=true");
args.add("-XstartOnFirstThread"); //Fixes lwjgl starting on an incorrect thread
return args;
}