Skip to content

Commit 28011ae

Browse files
committed
Fix classpath order in Reobf Task
1 parent 95fe79d commit 28011ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/patcher/java/net/minecraftforge/gradle/patcher/task/TaskReobfuscateJar.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public void apply() throws IOException {
9999
if (getClasspath() == null) {
100100
java.setClasspath(getProject().files(jar));
101101
} else {
102-
java.setClasspath(getProject().files(getClasspath(), jar));
102+
java.setClasspath(getProject().files(jar, getClasspath()));
103103
}
104104
java.setWorkingDir(workDir);
105105
java.setMain(mainClass);

0 commit comments

Comments
 (0)