The problem is that this error is perfectly generic -- unless someone notices a mod known for causing this error, they won't be able to help.Can i provide some other info about the crash to help figure out the issue?
Are there more logs somewhere?
Alone i wont be able to fix this and the support page have not answered.
However:
- the error is a concurrent modification (someone modified a hashmap at the same time someone else was iterating it)
- this generally happens when multiple threads are involved (one thread alters the hashmap while another thread is iterating it)
- almost none of the mods you have do anything that would involve multi-threading, except...
- Zan's Minimap probably has a separate thread on which it generates its map.
So I posit the following possibility:
- Zan's reads the world chunks in one thread
- Minecraft receives new chunks in another thread (the main thread, in fact) and writes them to its client-side cache
Try replacing Zan's with MapWriter or JourneyMap and see if it stops derping.
Edit: That said, this should be a more common error if it's really Zan's Minimap causing it -- lots of folks run that and Mystcraft together. I think.