Unknown Log

#KeEWCHf
111 lines
Raw
1That'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.
2Looking 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.
3Here's a breakdown of what might be going on and some steps you can take to troubleshoot:
4Potential Causes:
5Mod 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.
6Lithium 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.
7ModernFix 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.
8Entity 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.
9Troubleshooting Steps:
10Check Incompatible Mods: Your crash report explicitly flags several mods as "incompatible":
11supermartijn642configlib
12playeranimator
13modernfix
14fakename
15cloth_config
16lmft
17w2pets
18fairylights
19curios
20searchables
21mr_dungeons_andtaverns
22worldedit
23toms_storage
24pehkui
25caelus
26epherolib
27emotecraft
28voicechat
29spectrelib
30fastpaintings
31mantle
32croptopia
33polymorph
34immersive_melodies
35ars_nouveau
36palladiumcore
37vc_gliders
38immersive_aircraft
39dungeon_crawl_dimensional_patch
40sophisticatedcore
41structureessentials
42citadel
43alexsmobs
44mixinextras
45sophisticatedbackpacks
46melody
47konkrete
48chipped
49flowerymooblooms
50endrem
51lionfishapi
52cataclysm
53simplehats
54resourcefullib
55architectury
56doapi
57vinery
58ftblibrary
59nethervinery
60farm_and_charm
61candlelight
62bakery
63beachparty
64ftbessentials
65brewery
66cupboard
67mr_clover
68amendments
69comicsbubbleschat
70sophisticatedstorage
71additionallanterns
72createfood
73journeymap
74comforts
75cpm
76toofast
77friendsandfoes
78tconstruct
79alexscaves
80moonlight
81regions_unexplored
82emotetweaks
83mixinsquared
84jade
85brutalbosses
86ars_elemental
87irons_spellbooks
88betterarcheology
89solcarrot
90expandability
91itemblacklist
92spark
93dcintegration
94vmod
95createdeco
96crafttweaker
97clumps
98servercore
99immersive_optimization
100connectivity
101fastasyncworldsave
102kotlinforforge
103observable
104radium
105You should remove all of these incompatible mods. They are very likely contributing to your issues.
106Test 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.
107Gradually 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.
108Look 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.
109Check 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.
110Consider 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.
111Given 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!
This log will be saved for 90 days from their last view.
Report abuse