Fabric mixin incompablity.
modmuss50 opened this issue ยท 2 comments
Hello! I had an issue posted on my issue tracker about RebornCore being incompatible with AnimalNet.
After looking at your mixin AnimalNetMixinCrafting
you are using @Overwrite
. This replaces the whole method and makes it impossible for other mixins to inject into it thus casuing a crash with reborn core.
It seems like you are trying to achieve something very similar to what I have in Reborn Core.
Above I have linked to an example of using @Inject
to inject after the itemstack.oncraft call. By using the method that I linked it would allow both mods to make the same change while being compatible. And it would reduce the amount of code you had to copy from vanilla.
I would be happy to make a PR to fix the issue if you would like. Thanks.