Crash at startup when using Thaumic Augmentation
Null-151 opened this issue ยท 2 comments
Just like the title says, this mod causes a crash if that mod is present
Crashlog: https://mclo.gs/ZfhEyGd
Thaumic Augmentation dev here. This crash happens because my coremod looks for getItemStackFromSlot to insert instructions after, and you seem to delete it and replace it with a hook to your own code. Please don't delete code like that unless you have no other choice - it causes anything else (like TA) that also wants to inject code to have a hard time. Instead, I suggest you leave the original call in, but add a call to a static function that takes the result of getItemStackFromSlot and returns the new value that should be used.