Merge pull request #140 from lynxplay/bugfix/include-flightrecorder-config

This commit is contained in:
Shane Freeder 2022-03-09 16:15:01 +00:00 committed by GitHub
commit 1ac512a5b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,7 +57,7 @@ open class AllTasks(
val copyResources by tasks.registering<CopyResources> {
inputJar.set(applyMergedAt.flatMap { it.outputJar })
vanillaJar.set(extractFromBundler.flatMap { it.serverJar })
includes.set(listOf("/data/**", "/assets/**", "version.json", "yggdrasil_session_pubkey.der", "pack.mcmeta"))
includes.set(listOf("/data/**", "/assets/**", "version.json", "yggdrasil_session_pubkey.der", "pack.mcmeta", "flightrecorder-config.jfc"))
outputJar.set(cache.resolve(FINAL_REMAPPED_JAR))
}