1 | That's quite a crash you've got there! The error java.util.ConcurrentModificationException usually points to a problem where the game is trying to modify a list of things (in this case, likely entities) at the same time it's trying to go through that list.
|
2 | Looking at the stack trace, it seems to be happening within the entity management system (PersistentEntitySectionManager and ChunkMap). This could be caused by a few things, often related to mods interacting in unexpected ways.
|
3 | Here's a breakdown of what might be going on and some steps you can take to troubleshoot:
|
4 | Potential Causes:
|
5 | Mod Conflicts: This is the most likely culprit given the number of mods you have installed. Some mods might be trying to manipulate entities or chunk data in a way that isn't thread-safe or compatible with other mods.
|
6 | Lithium Mod: The crash report shows mixins from the lithium mod involved in entity management. While Lithium is generally an optimization mod, it can sometimes cause issues with other mods that heavily modify entity behavior or chunk loading.
|
7 | ModernFix Mod: Similarly, modernfix is also listed in the mixins related to chunk loading and entity management. While it aims to fix issues, it could potentially have a conflict in your specific mod setup.
|
8 | Entity Ticking Issues: Something might be causing entities to be added or removed from the world in a way that disrupts the game's internal processes.
|
9 | Troubleshooting Steps:
|
10 | Check Incompatible Mods: Your crash report explicitly flags several mods as "incompatible":
|
11 | supermartijn642configlib
|
12 | playeranimator
|
13 | modernfix
|
14 | fakename
|
15 | cloth_config
|
16 | lmft
|
17 | w2pets
|
18 | fairylights
|
19 | curios
|
20 | searchables
|
21 | mr_dungeons_andtaverns
|
22 | worldedit
|
23 | toms_storage
|
24 | pehkui
|
25 | caelus
|
26 | epherolib
|
27 | emotecraft
|
28 | voicechat
|
29 | spectrelib
|
30 | fastpaintings
|
31 | mantle
|
32 | croptopia
|
33 | polymorph
|
34 | immersive_melodies
|
35 | ars_nouveau
|
36 | palladiumcore
|
37 | vc_gliders
|
38 | immersive_aircraft
|
39 | dungeon_crawl_dimensional_patch
|
40 | sophisticatedcore
|
41 | structureessentials
|
42 | citadel
|
43 | alexsmobs
|
44 | mixinextras
|
45 | sophisticatedbackpacks
|
46 | melody
|
47 | konkrete
|
48 | chipped
|
49 | flowerymooblooms
|
50 | endrem
|
51 | lionfishapi
|
52 | cataclysm
|
53 | simplehats
|
54 | resourcefullib
|
55 | architectury
|
56 | doapi
|
57 | vinery
|
58 | ftblibrary
|
59 | nethervinery
|
60 | farm_and_charm
|
61 | candlelight
|
62 | bakery
|
63 | beachparty
|
64 | ftbessentials
|
65 | brewery
|
66 | cupboard
|
67 | mr_clover
|
68 | amendments
|
69 | comicsbubbleschat
|
70 | sophisticatedstorage
|
71 | additionallanterns
|
72 | createfood
|
73 | journeymap
|
74 | comforts
|
75 | cpm
|
76 | toofast
|
77 | friendsandfoes
|
78 | tconstruct
|
79 | alexscaves
|
80 | moonlight
|
81 | regions_unexplored
|
82 | emotetweaks
|
83 | mixinsquared
|
84 | jade
|
85 | brutalbosses
|
86 | ars_elemental
|
87 | irons_spellbooks
|
88 | betterarcheology
|
89 | solcarrot
|
90 | expandability
|
91 | itemblacklist
|
92 | spark
|
93 | dcintegration
|
94 | vmod
|
95 | createdeco
|
96 | crafttweaker
|
97 | clumps
|
98 | servercore
|
99 | immersive_optimization
|
100 | connectivity
|
101 | fastasyncworldsave
|
102 | kotlinforforge
|
103 | observable
|
104 | radium
|
105 | You should remove all of these incompatible mods. They are very likely contributing to your issues.
|
106 | Test with Essential Mods Only: After removing the incompatible mods, try running your server with only the core mods like Forge and any essential API mods that other mods depend on (like Geckolib, KumaAPI, etc.). If the server runs without crashing, you know the issue lies with one of the other mods.
|
107 | Gradually Add Mods Back: If the server runs fine with the bare minimum, start adding your other mods back in small groups. After adding each group, restart the server and see if the crash reappears. This will help you pinpoint which mod or combination of mods is causing the conflict.
|
108 | Look for Mod Updates: Once you identify a problematic mod (or mods), check if there are any updates available. Mod authors often release updates to fix bugs and improve compatibility with other mods and newer Minecraft versions.
|
109 | Check Mod Configuration: Some mods have configuration files that allow you to adjust their behavior. It's worth looking at the configs of the mods involved in the crash (especially Lithium and ModernFix, and any mods that affect entities or chunks) to see if there are any settings that might be causing issues.
|
110 | Consider Removing Optimization Mods Temporarily: While optimization mods like Lithium and Radium aim to improve performance, they sometimes achieve this by making significant changes to the game's internal workings, which can lead to incompatibilities. Try removing them temporarily to see if the crashes stop.
|
111 | Given the sheer number of incompatible mods listed, I strongly recommend starting by removing all of them. That alone might resolve your issue. Let me know how it goes after that, and if you still encounter crashes, we can dive deeper into the remaining mods. Good luck!
|