Enable `ShowCodeDetailsInExceptionMessages` (Better null pointers) for all run configs

dev/0.11
modmuss50 2021-05-12 16:01:00 +01:00
parent fc3a5ef052
commit 63bf3aaaa4
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ public class RunConfig {
runConfig.programArgs += "--tweakClass " + ("client".equals(environment) ? Constants.LaunchWrapper.DEFAULT_FABRIC_CLIENT_TWEAKER : Constants.LaunchWrapper.DEFAULT_FABRIC_SERVER_TWEAKER);
} else {
runConfig.mainClass = "net.fabricmc.devlaunchinjector.Main";
runConfig.vmArgs = "-Dfabric.dli.config=" + encodeEscaped(extension.getDevLauncherConfig().getAbsolutePath()) + " -Dfabric.dli.env=" + environment.toLowerCase();
runConfig.vmArgs = "-XX:+ShowCodeDetailsInExceptionMessages -Dfabric.dli.config=" + encodeEscaped(extension.getDevLauncherConfig().getAbsolutePath()) + " -Dfabric.dli.env=" + environment.toLowerCase();
}
if (extension.getLoaderLaunchMethod().equals("launchwrapper")) {