2 small fixes
parent
b6779a6ec0
commit
9d03783792
|
@ -47,7 +47,7 @@ dependencies {
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
manifest {
|
manifest {
|
||||||
attributes 'Implementation-MinecraftVersionInfo': version + " Build(" + build + ")"
|
attributes 'Implementation-Version': version + " Build(" + build + ")"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -62,7 +62,7 @@ public class ModRemapper {
|
||||||
|
|
||||||
Path[] classpath = classpathFiles.stream().map(File::toPath).toArray(Path[]::new);
|
Path[] classpath = classpathFiles.stream().map(File::toPath).toArray(Path[]::new);
|
||||||
|
|
||||||
File mixinMapFile = extension.getMinecraftProvider().jarProvider.MINECRAFT_MAPPED_JAR;
|
File mixinMapFile = extension.getMinecraftProvider().pomfProvider.MAPPINGS_MIXIN_EXPORT;
|
||||||
Path mixinMapPath = mixinMapFile.toPath();
|
Path mixinMapPath = mixinMapFile.toPath();
|
||||||
|
|
||||||
TinyRemapper.Builder remapperBuilder = TinyRemapper.newRemapper();
|
TinyRemapper.Builder remapperBuilder = TinyRemapper.newRemapper();
|
||||||
|
|
Loading…
Reference in New Issue