Fix mixin mapping being shared between all projects.

This commit is contained in:
modmuss50
2020-09-04 22:41:11 +01:00
parent 545b0c946b
commit 20be96e733
4 changed files with 7 additions and 7 deletions

View File

@@ -399,4 +399,8 @@ public class LoomGradleExtension {
public boolean isShareCaches() {
return shareCaches;
}
public File getMixinMappings() {
return new File(getProjectBuildCache(), "mixin-map-" + getMinecraftProvider().getMinecraftVersion() + "-" + getMappingsProvider().mappingsVersion + ".tiny");
}
}