Jump to content

Recommended Posts

Posted (edited)

I have made a functional mod which keeps crashing due to a "ConcurrentModificationException" whenever I repeatedly use the Sonar items. The source is at GitHub here: https://github.com/thetdw2000/sonarmod

I suspect that it's caused by the SonarThread class, but I have no idea how to fix it or what's causing it.

crash-2018-05-22_21.10.40-client.txtFetching info...

Edited by thetdw2000
Added crash report
Posted

Can you post your crash report please?

This is my Forum Signature, I am currently attempting to transform it into a small guide for fixing easier issues using spoiler blocks to keep things tidy.

 

As the most common issue I feel I should put this outside the main bulk:

The only official source for Forge is https://files.minecraftforge.net, and the only site I trust for getting mods is CurseForge.

If you use any site other than these, please take a look at the StopModReposts project and install their browser extension, I would also advise running a virus scan.

 

For players asking for assistance with Forge please expand the spoiler below and read the appropriate section(s) in its/their entirety.

  Reveal hidden contents

 

Posted
  On 5/23/2018 at 7:48 AM, diesieben07 said:

The sonar mod is completely broken. They are accessing the world from a separate thread. They need to fix their mod.

Expand  

That didn't seem to be the problem before; I could access the world from the separate thread before I added in the sounds. Is there some taboo about doing this? If so, what is the preferred method?

Posted
  On 5/23/2018 at 11:59 AM, diesieben07 said:

Minecraft's code is not thread safe.

You cannot access the world from other threads. If you need to, you need to copy the world data somewhere else in the main thread and then hand over that copy to the other thread.

Expand  

I get that, but that still doesn't explain why it's crashing when it doesn't start a thread (when the player doesn't have coal). Why is that happening?

Posted
  On 5/23/2018 at 12:08 PM, diesieben07 said:

You are playing sounds from the SonarThread as well. If you do things from multiple threads but you are interacting with non thread-safe code, any number of things can happen. In your case playing the sound from the SonarThread causes the crash when the main thread tries to play sound as well.

Expand  

So the EntityPlayer class is also not thread safe? Because I never played sounds from the World class.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.