Fix refmap oopsie

This commit is contained in:
quat1024 2023-07-11 04:16:48 -04:00
parent cbfa2b4294
commit 5986d57526
2 changed files with 7 additions and 1 deletions

View File

@ -50,6 +50,12 @@ dependencies {
implementation "com.google.code.findbugs:jsr305:3.0.2"
}
loom {
mixin {
defaultRefmapName = "templates.refmap.json" //see templates.mixins.json. I just like to always specify the name
}
}
processResources {
inputs.property "version", project.version
filesMatching("**/fabric.mod.json") {

View File

@ -16,5 +16,5 @@
"injectors": {
"defaultRequire": 1
},
"refmap": "packages.refmap.json"
"refmap": "templates.refmap.json"
}