Skip to content

Commit

Permalink
Fix: Set Fabric-Loom-Remap: false.
Browse files Browse the repository at this point in the history
Should help to avoid conflicting version issues.
  • Loading branch information
LlamaLad7 committed Jul 9, 2024
1 parent e5653a7 commit fda51ef
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions platform/fabric/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,10 @@ tasks.withType<ProcessResources> {
filesMatching("fabric.mod.json") {
expand("version" to version)
}
}

tasks.named<Jar>("jar") {
manifest.attributes(
"Fabric-Loom-Remap" to "false",
)
}

0 comments on commit fda51ef

Please sign in to comment.