ConcurrentModificationException happened at SoundManagerReplacement.java:240
Lothrazar opened this issue ยท 2 comments
Mod Version: DynamicSurroundings-1.12.2-3.4.8.5.jar
*Forge Version:*14.23.1.2601
Link to crash log (if applicable): https://pastebin.com/sHmeQHwc
Description: I was just in a cave near a skeleton grinder so lots of mobs were dying
For clarity. The most common reason this occurs is if a misbehaving mod tries to play a sound within a thread other than the client thread. I would imagine the most common case is when mod logic running server side wants to play sound. That's a no-no - it crosses the side boundry. I was recently looking at source code for a mod that did this very thing.
My next BETA will have some guards in place in hopes of handling the situation rather than crashing and burning. Ideally mod authors should fix their code. But that doesn't help you. :)