Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/09/20 in all areas

  1. The problem is you execute the updateStorageBlock method recursively, which leads to the execution of the update method and there you add a new tile entity to your list you currently iterating over. This leads to the thrown ConcurrentModificationException because it's not allowed to modifie a list you currently iterating over. A simple fix would be copy the content of the list in a new list and iterate over this copy instead of the original one. But this fix only works if you not need the newly added tile entities.
    1 point
  2. You need to read up on sides. You can't directly access minecraft in your mod constructor like that, as the server has no idea what the client Minecraft class is.
    1 point
  3. 1 point
  4. Are you running Optifine? If so, remove it.
    1 point
×
×
  • Create New...

Important Information

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