Hey Zenkardo,
This crash seems to be an issue with JourneyMap. Looking at the crash report:
Caused by: org.spongepowered.asm.mixin.throwables.MixinApplyError: Mixin [journeymap.mixins.json:client.ClientPacketListenerMixin from mod journeymap] from phase [DEFAULT] in config [journeymap.mixins.json] FAILED during APPLY
...
Caused by: org.spongepowered.asm.mixin.transformer.throwables.InvalidMixinException: @Shadow field field_3690 was not located in the target class net.minecraft.class_634. Using refmap journeymap-refmap.json
It seems that shadow field field_3690
from JourneyMap's ClientPacketListenerMixin
could not be found in Minecraft's class_634
(which is probably ClientPacketListener
).
From your mods folder, it seems that you have multiple versions of JourneyMap installed:
journeymap-1-20.1-5.9.9-fabric.jar
journeymap-1.20-5.9.7-fabric.jar
journeymap-1.20-5.9.7-forge.jar
journeymap-1.20-5.9.12-forge.jar
We can see from the filenames that these JourneyMap versions are meant for Minecraft 1.20.1 with Fabric, 1.20 with Fabric, and 1.20 with Forge. None of these JourneyMap versions seem to be meant to work with your actual game version: Minecraft 1.20.4 with Fabric. Aside from that, I would always recommend using just one version of each mod, not multiple.
So, to fix this crash, you would need to remove those four versions of JourneyMap and, assuming you still want JourneyMap, install a different version that is meant for 1.20.4 with Fabric. You can find such versions here: https://modrinth.com/mod/journeymap/versions?l=fabric&g=1.20.4
However, JourneyMap is not the only incompatible mod that is visible in your mods folder. You also have AutoGG-4.0.3 (1.8.9).jar
and SkyblockAddons-1.8.9-1.5.5.jar
, which both seem to be meant for Minecraft 1.8.9, as well as Autotip-3.0.1 [1.8-1.12.2].jar
, which seems to be meant for Minecraft 1.8 - 1.12.2.
You will likely have to remove those mods as well to make your installation work. If more modern versions of those mods exist, you can try installing those instead.
Hope this helps!