Incompatibility with yarn development environments
MattiDragon opened this issue ยท 0 comments
Modern industrialization is currently incompatible with mod development environments using yarn due to a remapping conflict. It seems like the fix is to simply rename a single method. I encountered this while investigating MattiDragon/ExtendedDrawers#66 that might be related to this mod.
HackySlot
has methods called getStack
and setStack
. The issue arises when an attempt is made to remap modern industrialization to yarn because the yarn names for getItem
and set
are getStack
and setStack
respectively. So, because the signatures match exactly we'd end up with two of the same method. This causes fabric loader to abort the remapping as it should. Renaming the method should fix this.
Similar to Technici4n/Modern-Dynamics#73