-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CTD with version 2.1.1 #77
Comments
Also getting this error; all latest downloads. |
Yep same thing. Hope this can be fixed soonish. |
Same here, FTB - Direwolf20 1.6.4 pack, v1.0.14 with no other modifications. I was in the Overworld everytime it happened.
Unfortunately this ruined my save also somehow (after about the 4th crash, I guess I was lucky that first few times) - http://pastebin.com/F3VuXhjK. |
Indigo Starfish - deleting the .dat in the save folder should fix it. (Just make a backup and remove hats temporarily until a fix is released.) |
Also getting this crash, it's very annoying: http://pastebin.com/wMXKsfva |
I'm getting the same crash. IIRC different tick types are run concurrently. If that's the case, then TickHandlerServer.java:116 (worldtick) may be excecuted while iterating through mobHats (TickHandlerServer.java:127), causing a concurrent modification exception. playerKilledEntity also modifies mobHats, so you'd want to solve the concurrency issue there too, or I'm guessing it might crash some times when killing entities too. |
Setup: Direwolf20 pack 1.6.4, modified with newer versions of the mods and a few small additions.
Version: Hats 2.1.1, iChunUtil 2.4.0
Crashlog: http://codepad.org/BvpRSBFx
Code line: https://github.com/iChun/Hats/blob/master/hats/common/core/TickHandlerServer.java#L127
Exception: java.util.ConcurrentModificationException
I can't say for sure what could be causing such an exception, since I'm new to java and even more so, forge.
But maybe that remove in line 130 is resizing the map, causing it to fall out of sync within the loop?
The text was updated successfully, but these errors were encountered: