
crash on startup
zedner opened this issue ยท 15 comments
Edited with pastebin:
http://pastebin.com/KAFTaW1t
Well then, that's a problem...
For now, you can copy all this into it to (hopefully) avoid the crash.
Alright, so did some more testing. It does not happen alone. Only with other mods. That is why I couldn't reproduce. Hum...
To explain what happened:
Other mods are doing stupid shit. They query OreDictionary.getOres(entry)
without checking OreDictionary.doesOreNameExist(entry)
first. The latter checks if the entry exists without adding anything to the dictionary. The former checks if it exists and if not, it will add an entry with an empty list.
By querying OreDictionary.getOres(entry)
blindly, it spams the OreDict with values that shouldn't be there.