We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95fe79d commit 28011aeCopy full SHA for 28011ae
src/patcher/java/net/minecraftforge/gradle/patcher/task/TaskReobfuscateJar.java
@@ -99,7 +99,7 @@ public void apply() throws IOException {
99
if (getClasspath() == null) {
100
java.setClasspath(getProject().files(jar));
101
} else {
102
- java.setClasspath(getProject().files(getClasspath(), jar));
+ java.setClasspath(getProject().files(jar, getClasspath()));
103
}
104
java.setWorkingDir(workDir);
105
java.setMain(mainClass);
0 commit comments