crash with TR grinder recipe still persists
MasterBuilder747 opened this issue ยท 3 comments
I hate to say it, but for some reason the game still crashes with the fixed version of the mod, and I still seems to get the same stacktrace related to OreDictInit:
mod version: 2.2.8.100
yes, sorry for the late reply, I don't use Tech Reborn in my pack anymore so I don't remember the issue, but you couldn't replicate the issue?
I just solved this exact problem with my pack. The cause was JAOPCA registering an oreDic that had nothing in it. In my case I had removed Thermal's Mana Infused Metal from oreMithril.
//Mana Metal is not Mithril!
val oreMithril = ore:oreMithril;
oreMithril.remove(thermalfoundation:ore:8);
val dustMithril = ore:dustMithril;
dustMithril.remove(thermalfoundation:material:72);
val ingotMithril = ore:ingotMithril;
ingotMithril.remove(thermalfoundation:material:136);
val nuggetMithril = ore:nuggetMithril;
nuggetMithril.remove(thermalfoundation:material:200);
val plateMithril = ore:plateMithril;
plateMithril.remove(thermalfoundation:material:328);
val gearMithril = ore:gearMithril;
gearMithril.remove(thermalfoundation:material:264);
val coinMithril = ore:coinMithril;
coinMithril.remove(thermalfoundation:coin:72);
Having this in a Crafttweaker script will cause the crash.