Does not work in dev environment
Jkosio23 opened this issue ยท 3 comments
Whenever I try to build my dev environment with mouse tweaks its calling for an obfuscated class, which, when in a dev environment, is obviously deobfuscated and gets its proper name.
Since 1.13 I changed the build files to do the standard things for Forge and Fabric so hopefully this is no longer an issue.
So the issue here is that I need the final .jar to be obfuscated for it to work on a LiteLoader-only setup (no Forge) because LiteLoader doesn't do deobfuscation. I'm not sure if there's a way to set up build.gradle
to additionally output a deobfuscated .jar, some help would be welcome with this.
Building a deobfuscated jar is not really a good choice because it will fail when the mcp mappings between the projects are not exactly the same.
I think setting this to "searge" should let it build into an obfuscated format that will work because Forge can automatically deobfuscate it in the dev environment:
Line 48 in ad6f36c
I am not sure how to build for both types of obfuscated environments using MixinGradle though, maybe someone who is more knowledgeable about mixins will know.