Crash with RFTools: ConcurrentModificationException
AstralSorceress opened this issue ยท 4 comments
RFTools adds recipes during the world load event, causing a ConcurrentModificationException EE3's registration of vanilla recipes with the RecipeRegistry. Removing RFTools fixed the issue.
Well there is not much to say about this, it's a problem with Minecraft not considering multi-threaded scenarios, getRecipeList
should return an immutable copy of the list. Or provide a sync-root. Unfortunately this is not the case. IMHO the best course of action to copy the list on the main thread and then pass it to calculation on the worker threads.
Closing in order to track issues on the unified ticket #993