From e6fb8ba4f07acea084f0059d88d00361625c835a Mon Sep 17 00:00:00 2001 From: StartsMercury <89975834+StartsMercury@users.noreply.github.com> Date: Sun, 20 Oct 2024 13:08:39 +0800 Subject: [PATCH] Gradle: fix run quilt task --- build.gradle | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 53ecc76..e2c710d 100644 --- a/build.gradle +++ b/build.gradle @@ -209,13 +209,9 @@ tasks.register("runQuilt", JavaExec) { jvmArgs = [ // Allows stuff to be found through the classpath - "-Dloader.development=false", + "-Dloader.development=true", // Defines path to Cosmic Reach "-Dloader.gameJarPath=" + configurations.cosmicreach.asPath, - // Let Quilt know to include our build and the other mods - "-Dloader.addMods=" + [ shadowJar.archiveFile.get().asFile ].tap { - addAll(configurations.gameMod) - }.join(File.pathSeparator) ] }