Blood Magic

Blood Magic

90M Downloads

No deobfuscated version

Alex-hawks opened this issue ยท 1 comments

commented

It makes a lot easier to develop addons or compatibility for mods if there is a deobfuscated, but compiled version of the mod to add as a library. To build a deobfuscated file as the output, all you have to do is add

task deobfJar(type: Jar) {
    from sourceSets.main.output
    classifier = 'deobf'
}

as the next task after javadocJar and addArtifact deobfJar to project inside curseforge

commented

Use the normal jar.