Crash on startup
brisingraerowing opened this issue ยท 5 comments
Mod Version: 3.6.0.2
Forge Version: 14.23.5.2847
Link to client log:
Link to crash log:
Description:
Abrupt crash during game startup when DS tries to initialize its biome registry.
Has DS ever worked with this pack, or was DS recently added and the problem occured?
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: com/shinoow/abyssalcraft/common/util/BiomeUtil (java.lang.ClassNotFoundException: The specified class 'com.shinoow.abyssalcraft.common.util.BiomeUtil' was not found)
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: zmaster587/advancedRocketry/util/BiomeHandler (java.lang.ClassNotFoundException: The specified class 'zmaster587.advancedRocketry.util.BiomeHandler' was not found)
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: zmaster587/advancedRocketry/network/PacketBiomeIDChange (java.lang.ClassNotFoundException: The specified class 'zmaster587.advancedRocketry.network.PacketBiomeIDChange' was not found)
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: com/cutievirus/creepingnether/entity/CorruptorAbstract (java.lang.ClassNotFoundException: The specified class 'com.cutievirus.creepingnether.entity.CorruptorAbstract' was not found)
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: com/rwtema/extrautils2/biome/BiomeManip (java.lang.ClassNotFoundException: The specified class 'com.rwtema.extrautils2.biome.BiomeManip' was not found)
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: com/rwtema/extrautils2/dimensions/workhousedim/WorldProviderSpecialDim (java.lang.ClassNotFoundException: The specified class 'com.rwtema.extrautils2.dimensions.workhousedim.WorldProviderSpecialDim' was not found)
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: androsa/gaiadimension/world/layer/GenLayerGDRiverMix (java.lang.ClassNotFoundException: The specified class 'androsa.gaiadimension.world.layer.GenLayerGDRiverMix' was not found)
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: climateControl/DimensionManager (java.lang.ClassNotFoundException: The specified class 'climateControl.DimensionManager' was not found)
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: thaumcraft/common/lib/utils/Utils (java.lang.ClassNotFoundException: The specified class 'thaumcraft.common.lib.utils.Utils' was not found)
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: thebetweenlands/common/block/terrain/BlockSpreadingDeath (java.lang.ClassNotFoundException: The specified class 'thebetweenlands.common.block.terrain.BlockSpreadingDeath' was not found)
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: thebetweenlands/common/world/gen/layer/GenLayerVoronoiZoomInstanced (java.lang.ClassNotFoundException: The specified class 'thebetweenlands.common.world.gen.layer.GenLayerVoronoiZoomInstanced' was not found)
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: cn/mcmod/tofucraft/world/gen/layer/GenLayerRiverMix (java.lang.ClassNotFoundException: The specified class 'cn.mcmod.tofucraft.world.gen.layer.GenLayerRiverMix' was not found)
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: cn/mcmod/tofucraft/world/gen/layer/GenLayerTofuVoronoiZoom (java.lang.ClassNotFoundException: The specified class 'cn.mcmod.tofucraft.world.gen.layer.GenLayerTofuVoronoiZoom' was not found)
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: net/tropicraft/core/common/worldgen/genlayer/GenLayerTropiVoronoiZoom (java.lang.ClassNotFoundException: The specified class 'net.tropicraft.core.common.worldgen.genlayer.GenLayerTropiVoronoiZoom' was not found)
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: com/sk89q/worldedit/blocks/BaseBlock (java.lang.ClassNotFoundException: The specified class 'com.sk89q.worldedit.blocks.BaseBlock' was not found)
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: team/chisel/client/TextureStitcher$MagicStitchingSprite (java.lang.ClassNotFoundException: The specified class 'team.chisel.client.TextureStitcher$MagicStitchingSprite' was not found)
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: openblocks/client/renderer/tileentity/TileEntityTankRenderer (java.lang.ClassNotFoundException: The specified class 'openblocks.client.renderer.tileentity.TileEntityTankRenderer' was not found)
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: slimeknights/tconstruct/library/client/GuiUtil (java.lang.ClassNotFoundException: The specified class 'slimeknights.tconstruct.library.client.GuiUtil' was not found)
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: slimeknights/tconstruct/library/client/RenderUtil (java.lang.ClassNotFoundException: The specified class 'slimeknights.tconstruct.library.client.RenderUtil' was not found)
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: morph/avaritia/client/render/item/HaloRenderItem (java.lang.ClassNotFoundException: The specified class 'morph.avaritia.client.render.item.HaloRenderItem' was not found)
[16:13:14] [Client thread/WARN] [mixin]: Error loading class: morph/avaritia/client/render/item/WrappedItemRenderer (java.lang.ClassNotFoundException: The specified class 'morph.avaritia.client.render.item.WrappedItemRenderer' was not found)
I've rummaged through the debug log, and found that several DS mixins aren't being processed for some reason, including BiomeMixin. Now to figure out which mod is breaking things.
That was the first time I ran the pack creating it (I needed to generate the config files).
I was having similar issues with JEID not working, and found that the LootingVI mod breaks things by loading Forge registries when coremods are loaded. Removing it fixed the crashes.
Thanks for revisiting and reporting what you found. This is why the Forge guys are so hardass about coremods and mod behavior. Luckily in Forge for 1.14+ they changed coremodding so crap like this won't happen. Of course, with async mod loading a whole different set of issues can crop up. :)