fix formatting

This commit is contained in:
Jason Penilla 2023-09-22 18:01:36 -07:00
parent 157abbb72f
commit 88edb5ce16
No known key found for this signature in database
GPG key ID: 0E75A301420E48F8

View file

@ -64,7 +64,10 @@ fun Project.setupServerProject(
val filterProjectDir by tasks.registering<FilterProjectDir> {
inputSrcDir.set(file("src/main/java"))
inputResourcesDir.set(file("src/main/resources"))
vanillaJar.set(parent.layout.file(parent.files(remappedJar).elements.map { it.single().asFile })) // unlink dependency on upstream clone task for patcher (hack); it's implicitly handled when we get upstream data
vanillaJar.set(
// unlink dependency on upstream clone task for patcher (hack); it's implicitly handled when we get upstream data
parent.layout.file(parent.files(remappedJar).elements.map { it.single().asFile })
)
outputJar.set(parent.layout.cache.resolve(FINAL_FILTERED_REMAPPED_JAR))
}