Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

My Linux server occassionally crashes with a ConcurrentModificationException.

Details here: http://pastebin.com/KfvE7Vt3

 

I'm only using forge and my own mod on this Server and I have no idea whether this is a bug in forge or with my mod.

 

[Edit:] Ok apparently it happens during server join. Here is the fml logs: http://pastebin.com/38JCw45L

 

How can I debug this?

Hi

 

Multithreading bugs are an absolute pain to debug.  You could try using an earlier version of Forge and seeing if the problem goes away.  Otherwise, you need to look carefully in your code (at.tyron.vintagecraft.WorldGen.Helper.WorldProviderVC ? ) to see if it's modifying the same object that triggers the error

        at net.minecraft.world.World.func_175650_b(World.java:3126)

        at net.minecraft.world.chunk.Chunk.func_76631_c(Chunk.java:952)

(I'm using a different forge version so those line numbers don't match mine)

 

It looks like you might be adding chunks, entities, or tileentities in the wrong thread.

 

-TGG

 

 

 

 

  • Author

Thank you for the reply TheGreyGhost, I now have a guess as to why this crash is happening.

 

1. I'm using EntityJoinWorldEvent to occasionally add another mob to a spawning mob

2. EntityJoinWorldEvent is also fired during chunk loading - which loops through the chunk entitylist -> probably gets modified due to my code adding another entity

 

I'm going to switch over to LivingSpawnEvent, that should probably fix the problem!

Here's my reply to another thread which may also prove useful to you, and you can also look up ConcurrentModificationException on Google to find many great explanations.

 

Basically, a CME usually happens with Collections when one thread is iterating over the collection and another thread tries to modify the same collection. Easy fix is to synchronize your iteration, or, if you are the one modifying it, use thread-safe operations e.g. Iterator.

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.