Jump to content

[SOLVED] [1.19.2] Mod Startup Error when Trying to Register MemoryModuleTypes and Activities


TheMajorN

Recommended Posts

Heya, so I'm making a mod that's using custom memory modules and activities, so I'm creating them and registering them as I would with custom blocks/items/etc.  However, Minecraft is crashing on startup.

Here is the memory module class:

public class ModMemoryModules<U> {

    public static final DeferredRegister<MemoryModuleType<?>> MEMORY_MODULES = DeferredRegister.create(ForgeRegistries.MEMORY_MODULE_TYPES, TuffGolem.MOD_ID);

    public static final MemoryModuleType<GlobalPos> ITEM_FRAME_POSITION = register("item_frame_position", GlobalPos.CODEC);
    public static final MemoryModuleType<GlobalPos> SELECTED_ITEM_FRAME_POSITION = register("selected_item_frame_position", GlobalPos.CODEC);
    public static final MemoryModuleType<Integer> ITEM_FRAME_COOLDOWN_TICKS = register("item_frame_cooldown_ticks", Codec.INT);
    public static final MemoryModuleType<Integer> ANIMATE_OR_PETRIFY_COOLDOWN_TICKS = register("animate_or_petrify_cooldown_ticks", Codec.INT);
    public static final MemoryModuleType<UUID> SELECTED_ITEM_FRAME = register("selected_item_frame", UUIDUtil.CODEC);
    public static final MemoryModuleType<Boolean> MID_ANIMATE_OR_PETRIFY = register("mid_animate_or_petrify");

    private final Optional<Codec<ExpirableValue<U>>> codec;

    @VisibleForTesting
    public ModMemoryModules(Optional<Codec<U>> codec) {
        this.codec = codec.map(ExpirableValue::codec);
    }

    public Optional<Codec<ExpirableValue<U>>> getCodec() {
        return this.codec;
    }

    private static <U> MemoryModuleType<U> register(String name, Codec<U> codec) {
        return Registry.register(Registry.MEMORY_MODULE_TYPE, new ResourceLocation(name), new MemoryModuleType<>(Optional.of(codec)));
    }

    private static <U> MemoryModuleType<U> register(String name) {
        return Registry.register(Registry.MEMORY_MODULE_TYPE, new ResourceLocation(name), new MemoryModuleType<>(Optional.empty()));
    }

}

Here's the activity class:

public class ModActivities {

    public static final DeferredRegister<Activity> ACTIVITIES = DeferredRegister.create(ForgeRegistries.ACTIVITIES, TuffGolem.MOD_ID);

    public static final Activity ANIMATE = register("animate");
    public static final Activity PETRIFY = register("petrify");
    public static final Activity PICK_OUT = register("pick_out");
    public static final Activity PUT_BACK = register("put_back");

    private static Activity register(String string) {
        return Registry.register(Registry.ACTIVITY, string, new Activity(string));
    }

}

 

And in the main class, I register them in the main method with:

ModActivities.ACTIVITIES.register(modEventBus);
ModMemoryModules.MEMORY_MODULES.register(modEventBus);

 

 

Here's the error log I get when I start up Minecraft:

2022-10-31 22:23:34,028 main WARN Advanced terminal features are not available in this environment
[22:23:34] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeclientuserdev, --version, MOD_DEV, --assetIndex, 1.19, --assetsDir, C:\Users\Nick\.gradle\caches\forge_gradle\assets, --gameDir, ., --fml.forgeVersion, 43.1.1, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853]
[22:23:34] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.4.1 by Eclipse Adoptium; OS Windows 10 arch amd64 version 10.0
[22:23:34] [main/DEBUG] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev]
[22:23:34] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp]
[22:23:34] [main/DEBUG] [cp.mo.mo.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner]
[22:23:34] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services
[22:23:34] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: 
[22:23:34] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml]
[22:23:34] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading
[22:23:34] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin
[22:23:34] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin
[22:23:34] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml
[22:23:34] [main/DEBUG] [ne.mi.fm.lo.LauncherVersion/CORE]: Found FMLLauncher version 1.0
[22:23:34] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML 1.0 loading
[22:23:34] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found ModLauncher version : 10.0.8+10.0.8+main.0ef7e830
[22:23:34] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7
[22:23:34] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found EventBus version : 6.0.3+6.0.3+master.039e4ea9
[22:23:34] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found Runtime Dist Cleaner
[22:23:34] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found CoreMod version : 5.0.1+15+master.dc5a2922
[22:23:34] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI package implementation version 6.0.0+6.0.0+master.42474703
[22:23:34] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI package specification 5
[22:23:34] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml
[22:23:34] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services
[22:23:34] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing
[22:23:34] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin
[22:23:35] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@6646153
[22:23:35] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/Nick/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.5/9d1c0c3a304ae6697ecd477218fa61b850bf57fc/mixin-0.8.5.jar%23120!/ Service=ModLauncher Env=CLIENT
[22:23:35] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager
[22:23:35] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2)
[22:23:35] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2)
[22:23:35] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2)
[22:23:35] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2)
[22:23:35] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2)
[22:23:35] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin
[22:23:35] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml
[22:23:35] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Setting up basic FML game directories
[22:23:35] [main/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing GAMEDIR directory : C:\Users\Nick\Desktop\Modding\Projects\Tuff-Golem\run
[22:23:35] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path GAMEDIR is C:\Users\Nick\Desktop\Modding\Projects\Tuff-Golem\run
[22:23:35] [main/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing MODSDIR directory : C:\Users\Nick\Desktop\Modding\Projects\Tuff-Golem\run\mods
[22:23:35] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path MODSDIR is C:\Users\Nick\Desktop\Modding\Projects\Tuff-Golem\run\mods
[22:23:35] [main/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing CONFIGDIR directory : C:\Users\Nick\Desktop\Modding\Projects\Tuff-Golem\run\config
[22:23:35] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path CONFIGDIR is C:\Users\Nick\Desktop\Modding\Projects\Tuff-Golem\run\config
[22:23:35] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path FMLCONFIG is C:\Users\Nick\Desktop\Modding\Projects\Tuff-Golem\run\config\fml.toml
[22:23:35] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Loading configuration
[22:23:35] [main/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing default config directory directory : C:\Users\Nick\Desktop\Modding\Projects\Tuff-Golem\run\defaultconfigs
[22:23:35] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Preparing ModFile
[22:23:35] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Preparing launch handler
[22:23:35] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Using forgeclientuserdev as launch service
[22:23:35] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Received command line version data  : VersionInfo[forgeVersion=43.1.1, mcVersion=1.19.2, mcpVersion=20220805.130853, forgeGroup=net.minecraftforge]
[22:23:35] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml
[22:23:35] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'mcp'
[22:23:35] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {srg=srgtomcp:1234}
[22:23:35] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning
[22:23:35] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin
[22:23:35] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin
[22:23:35] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml
[22:23:35] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Initiating mod scan
[22:23:35] [main/DEBUG] [ne.mi.fm.lo.mo.ModListHandler/CORE]: Found mod coordinates from lists: []
[22:23:35] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null)
[22:23:35] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null)
[22:23:35] [main/DEBUG] [ne.mi.fm.lo.ta.CommonLaunchHandler/CORE]: Got mod coordinates examplemod%%C:/Users/Nick/Desktop/Modding/Projects/Tuff-Golem\build\resources\main;examplemod%%C:/Users/Nick/Desktop/Modding/Projects/Tuff-Golem\build\classes\java\main from env
[22:23:35] [main/DEBUG] [ne.mi.fm.lo.ta.CommonLaunchHandler/CORE]: Found supplied mod coordinates [{examplemod=[C:\Users\Nick\Desktop\Modding\Projects\Tuff-Golem\build\resources\main, C:\Users\Nick\Desktop\Modding\Projects\Tuff-Golem\build\classes\java\main]}]
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar with {minecraft} mods - versions {1.19.2}
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\Nick\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.19.2-43.1.1\4ed0d46c3cd0883da364ee1aace4f012ab07f408\javafmllanguage-1.19.2-43.1.1.jar
[22:23:36] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\Nick\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.19.2-43.1.1\4ed0d46c3cd0883da364ee1aace4f012ab07f408\javafmllanguage-1.19.2-43.1.1.jar is missing mods.toml file
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\Nick\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.19.2-43.1.1\f185fdcfb9aa2db13cb366d80f6902bb29b10437\lowcodelanguage-1.19.2-43.1.1.jar
[22:23:36] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\Nick\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.19.2-43.1.1\f185fdcfb9aa2db13cb366d80f6902bb29b10437\lowcodelanguage-1.19.2-43.1.1.jar is missing mods.toml file
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\Nick\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.19.2-43.1.1\5c1fbe775a983c4f8bdba7b491644b50b619f11d\mclanguage-1.19.2-43.1.1.jar
[22:23:36] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\Nick\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.19.2-43.1.1\5c1fbe775a983c4f8bdba7b491644b50b619f11d\mclanguage-1.19.2-43.1.1.jar is missing mods.toml file
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\Nick\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.19.2-43.1.1\4108eba77f38a55539813fecb638eeccf7fd6314\fmlcore-1.19.2-43.1.1.jar
[22:23:36] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\Nick\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.19.2-43.1.1\4108eba77f38a55539813fecb638eeccf7fd6314\fmlcore-1.19.2-43.1.1.jar is missing mods.toml file
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\Nick\Desktop\Modding\Projects\Tuff-Golem\build\resources\main
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file main with {tuffgolem} mods - versions {0.0NONE}
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate /
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file  with {forge} mods - versions {43.1.1}
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\Nick\.gradle\caches\forge_gradle\deobf_dependencies\software\bernie\geckolib\geckolib-forge-1.19\3.1.23_mapped_official_1.19.2\geckolib-forge-1.19-3.1.23_mapped_official_1.19.2.jar
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file geckolib-forge-1.19-3.1.23_mapped_official_1.19.2.jar with {geckolib3} mods - versions {3.1.23}
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\Nick\.gradle\caches\forge_gradle\deobf_dependencies\software\bernie\geckolib\geckolib-forge-1.19\3.1.23_mapped_official_1.19.2\geckolib-forge-1.19-3.1.23_mapped_official_1.19.2.jar
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file geckolib-forge-1.19-3.1.23_mapped_official_1.19.2.jar with {geckolib3} mods - versions {3.1.23}
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.UniqueModListBuilder/]: Found 2 mods for first modid geckolib3, selecting most recent based on version data
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.UniqueModListBuilder/]: Selected file geckolib-forge-1.19-3.1.23_mapped_official_1.19.2.jar for modid geckolib3 with version 3.1.23
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar, it does not contain dependency information.
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from , it does not contain dependency information.
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from geckolib-forge-1.19-3.1.23_mapped_official_1.19.2.jar, it does not contain dependency information.
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from main, it does not contain dependency information.
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from mclanguage-1.19.2-43.1.1.jar, it does not contain dependency information.
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from javafmllanguage-1.19.2-43.1.1.jar, it does not contain dependency information.
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from fmlcore-1.19.2-43.1.1.jar, it does not contain dependency information.
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from lowcodelanguage-1.19.2-43.1.1.jar, it does not contain dependency information.
[22:23:36] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: No dependencies to load found. Skipping!
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar with {minecraft} mods - versions {1.19.2}
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file C:\Users\Nick\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.19.2-43.1.1_mapped_official_1.19.2\forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]]
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate /
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file  with {forge} mods - versions {43.1.1}
[22:23:36] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file / with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]]
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod field_to_method with Javascript path coremods/field_to_method.js
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod field_to_instanceof with Javascript path coremods/field_to_instanceof.js
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod add_bouncer_method with Javascript path coremods/add_bouncer_method.js
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/field_to_method.js
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/field_to_instanceof.js
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/add_bouncer_method.js
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\Nick\.gradle\caches\forge_gradle\deobf_dependencies\software\bernie\geckolib\geckolib-forge-1.19\3.1.23_mapped_official_1.19.2\geckolib-forge-1.19-3.1.23_mapped_official_1.19.2.jar
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file geckolib-forge-1.19-3.1.23_mapped_official_1.19.2.jar with {geckolib3} mods - versions {3.1.23}
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file C:\Users\Nick\.gradle\caches\forge_gradle\deobf_dependencies\software\bernie\geckolib\geckolib-forge-1.19\3.1.23_mapped_official_1.19.2\geckolib-forge-1.19-3.1.23_mapped_official_1.19.2.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[41,)]]
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\Nick\Desktop\Modding\Projects\Tuff-Golem\build\resources\main
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file main with {tuffgolem} mods - versions {0.0NONE}
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file C:\Users\Nick\Desktop\Modding\Projects\Tuff-Golem\build\resources\main with languages [LanguageSpec[languageName=javafml, acceptedVersions=[43,)]]
[22:23:37] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found 3 language providers
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1.0
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider lowcodefml, version 43
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider javafml, version 43
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Configured system mods: [minecraft, forge]
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Found system mod: minecraft
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Found system mod: forge
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.ModSorter/LOADING]: Found 4 mod requirements (4 mandatory, 0 optional)
[22:23:37] [main/DEBUG] [ne.mi.fm.lo.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional)
[22:23:38] [main/DEBUG] [ne.mi.fm.lo.MCPNamingService/CORE]: Loaded 30289 method mappings from methods.csv
[22:23:38] [main/DEBUG] [ne.mi.fm.lo.MCPNamingService/CORE]: Loaded 28897 field mappings from fields.csv
[22:23:38] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers
[22:23:38] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin
[22:23:38] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin
[22:23:38] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml
[22:23:38] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Loading coremod transformers
[22:23:38] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_method.js
[22:23:39] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully
[22:23:39] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_instanceof.js
[22:23:39] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully
[22:23:39] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/add_bouncer_method.js
[22:23:40] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully
[22:23:40] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@623ebac7 to Target : CLASS {Lnet/minecraft/world/level/biome/Biome;} {} {V}
[22:23:40] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@4adc663e to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V}
[22:23:40] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@885e7ff to Target : CLASS {Lnet/minecraft/world/effect/MobEffectInstance;} {} {V}
[22:23:40] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@8bd86c8 to Target : CLASS {Lnet/minecraft/world/level/block/LiquidBlock;} {} {V}
[22:23:40] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@4fa9ab6 to Target : CLASS {Lnet/minecraft/world/item/BucketItem;} {} {V}
[22:23:40] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2d3ef181 to Target : CLASS {Lnet/minecraft/world/level/block/StairBlock;} {} {V}
[22:23:40] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@a2341c6 to Target : CLASS {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V}
[22:23:40] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@6e4c0d8c to Target : CLASS {Lnet/minecraft/world/item/ItemStack;} {} {V}
[22:23:40] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3315d9 to Target : CLASS {Lnet/minecraft/network/play/client/CClientSettingsPacket;} {} {V}
[22:23:40] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml
[22:23:41] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]
[22:23:41] [main/DEBUG] [mixin/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]
[22:23:41] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(minecraft)
[22:23:41] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft)
[22:23:41] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft)
[22:23:41] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft)
[22:23:41] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft)
[22:23:41] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)]
[22:23:41] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(forge)
[22:23:41] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(forge)
[22:23:41] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(forge)
[22:23:41] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(forge)
[22:23:41] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(forge)
[22:23:41] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)]
[22:23:41] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(geckolib3)
[22:23:41] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(geckolib3)
[22:23:41] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(geckolib3)
[22:23:41] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(geckolib3)
[22:23:41] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(geckolib3)
[22:23:41] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(geckolib3)]
[22:23:41] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(tuffgolem)
[22:23:41] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(tuffgolem)
[22:23:41] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(tuffgolem)
[22:23:41] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(tuffgolem)
[22:23:41] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(tuffgolem)
[22:23:41] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(tuffgolem)]
[22:23:41] [main/DEBUG] [mixin/]: inject() running with 5 agents
[22:23:41] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]
[22:23:41] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)]
[22:23:41] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)]
[22:23:41] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(geckolib3)]
[22:23:41] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(tuffgolem)]
[22:23:41] [main/INFO] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclientuserdev' with arguments [--version, MOD_DEV, --gameDir, ., --assetsDir, C:\Users\Nick\.gradle\caches\forge_gradle\assets, --assetIndex, 1.19]
[22:23:41] [main/DEBUG] [mixin/]: Error cleaning class output directory: .mixin.out
[22:23:41] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[DEFAULT]
[22:23:42] [main/DEBUG] [io.ne.ut.in.lo.InternalLoggerFactory/]: Using SLF4J as the default logging framework
[22:23:42] [main/DEBUG] [io.ne.ut.ResourceLeakDetector/]: -Dio.netty.leakDetection.level: simple
[22:23:42] [main/DEBUG] [io.ne.ut.ResourceLeakDetector/]: -Dio.netty.leakDetection.targetRecords: 4
[22:23:43] [main/DEBUG] [os.ut.FileUtil/]: No oshi.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@1a96d94c
[22:23:48] [main/DEBUG] [os.ut.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@1a96d94c
[22:23:51] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/Structure
[22:23:51] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/LiquidBlock
[22:23:51] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/StairBlock
[22:23:51] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/FlowerPotBlock
[22:23:53] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/ItemStack
[22:23:55] [pool-3-thread-1/INFO] [minecraft/DataFixers]: Building unoptimized datafixer
[22:23:57] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/biome/Biome
[22:23:59] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/BucketItem
[22:24:00] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/effect/MobEffectInstance
[22:24:01] [Render thread/WARN] [minecraft/VanillaPackResources]: Assets URL 'union:/C:/Users/Nick/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.19.2-43.1.1_mapped_official_1.19.2/forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/assets/.mcassetsroot' uses unexpected schema
[22:24:01] [Render thread/WARN] [minecraft/VanillaPackResources]: Assets URL 'union:/C:/Users/Nick/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.19.2-43.1.1_mapped_official_1.19.2/forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/data/.mcassetsroot' uses unexpected schema
[22:24:01] [Render thread/INFO] [mojang/YggdrasilAuthenticationService]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[22:24:01] [Render thread/INFO] [minecraft/Minecraft]: Setting user: Dev
[22:24:02] [Render thread/INFO] [minecraft/Minecraft]: Backend library: LWJGL version 3.3.1 build 7
[22:24:06] [Render thread/DEBUG] [ne.mi.co.ForgeI18n/CORE]: Loading I18N data entries: 5641
[22:24:06] [Render thread/DEBUG] [ne.mi.fm.ModWorkManager/LOADING]: Using 4 threads for parallel mod-loading
[22:24:06] [Render thread/DEBUG] [ne.mi.fm.ja.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@1a96d94c - got cpw.mods.cl.ModuleClassLoader@4a183d02
[22:24:06] [Render thread/DEBUG] [ne.mi.fm.ja.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.minecraftforge.common.ForgeMod
[22:24:06] [Render thread/DEBUG] [ne.mi.fm.ja.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@1a96d94c - got cpw.mods.cl.ModuleClassLoader@4a183d02
[22:24:06] [Render thread/DEBUG] [ne.mi.fm.ja.FMLModContainer/LOADING]: Creating FMLModContainer instance for software.bernie.example.GeckoLibMod
[22:24:06] [Render thread/DEBUG] [ne.mi.fm.ja.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@1a96d94c - got cpw.mods.cl.ModuleClassLoader@4a183d02
[22:24:06] [Render thread/DEBUG] [ne.mi.fm.ja.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.themajorn.tuffgolem.TuffGolem
[22:24:06] [modloading-worker-0/DEBUG] [ne.mi.ve.fo.ForgeVersion/CORE]: Forge Version package package net.minecraftforge.versions.forge, Forge, version 43.1 from cpw.mods.modlauncher.TransformingClassLoader@1a96d94c
[22:24:06] [modloading-worker-0/DEBUG] [ne.mi.ve.fo.ForgeVersion/CORE]: Found Forge version 43.1.1
[22:24:06] [modloading-worker-0/DEBUG] [ne.mi.ve.fo.ForgeVersion/CORE]: Found Forge spec 43.1
[22:24:06] [modloading-worker-0/DEBUG] [ne.mi.ve.fo.ForgeVersion/CORE]: Found Forge group net.minecraftforge
[22:24:06] [modloading-worker-0/DEBUG] [ne.mi.ve.mc.MCPVersion/CORE]: MCP Version package package net.minecraftforge.versions.mcp, Minecraft, version 1.19.2 from cpw.mods.modlauncher.TransformingClassLoader@1a96d94c
[22:24:06] [modloading-worker-0/DEBUG] [ne.mi.ve.mc.MCPVersion/CORE]: Found MC version information 1.19.2
[22:24:06] [modloading-worker-0/DEBUG] [ne.mi.ve.mc.MCPVersion/CORE]: Found MCP version information 20220805.130853
[22:24:06] [modloading-worker-0/INFO] [ne.mi.co.ForgeMod/FORGEMOD]: Forge mod loading, version 43.1.1, for MC 1.19.2 with MCP 20220805.130853
[22:24:06] [modloading-worker-0/INFO] [ne.mi.co.MinecraftForge/FORGE]: MinecraftForge v43.1.1 Initialized
[22:24:07] [modloading-worker-0/ERROR] [ne.mi.fm.ja.FMLModContainer/LOADING]: Failed to create mod instance. ModID: tuffgolem, class com.themajorn.tuffgolem.TuffGolem
java.lang.reflect.InvocationTargetException: null
	at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {}
	at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {}
	at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {}
	at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {}
	at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {}
	at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:68) ~[javafmllanguage-1.19.2-43.1.1.jar%23184!/:?] {}
	at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:121) ~[fmlcore-1.19.2-43.1.1.jar%23187!/:?] {}
	at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) [?:?] {}
	at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) [?:?] {}
	at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?] {}
	at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?] {}
	at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?] {}
	at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?] {}
	at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?] {}
Caused by: java.lang.ExceptionInInitializerError
	at com.themajorn.tuffgolem.TuffGolem.<init>(TuffGolem.java:32) ~[%23188!/:?] {re:classloading}
	... 14 more
Caused by: java.lang.IllegalStateException: Can not register to a locked registry. Modder should use Forge Register methods.
	at net.minecraftforge.registries.NamespacedWrapper.registerMapping(NamespacedWrapper.java:55) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23182%23189!/:?] {re:classloading}
	at net.minecraftforge.registries.NamespacedWrapper.register(NamespacedWrapper.java:73) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23182%23189!/:?] {re:classloading}
	at net.minecraft.core.Registry.register(Registry.java:594) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.core.Registry.register(Registry.java:590) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.core.Registry.register(Registry.java:586) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at com.themajorn.tuffgolem.core.registry.ModActivities.register(ModActivities.java:25) ~[%23188!/:?] {re:classloading}
	at com.themajorn.tuffgolem.core.registry.ModActivities.<clinit>(ModActivities.java:14) ~[%23188!/:?] {re:classloading}
	at com.themajorn.tuffgolem.TuffGolem.<init>(TuffGolem.java:32) ~[%23188!/:?] {re:classloading}
	... 14 more
[22:24:07] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for geckolib3
[22:24:07] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing software.bernie.example.GeckoLibMod to FORGE
[22:24:07] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing software.bernie.example.CommonListener to MOD
[22:24:07] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing software.bernie.example.ClientListener to MOD
[22:24:08] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: -Dio.netty.noUnsafe: false
[22:24:08] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: Java version: 17
[22:24:08] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: sun.misc.Unsafe.theUnsafe: available
[22:24:08] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: sun.misc.Unsafe.copyMemory: available
[22:24:08] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: sun.misc.Unsafe.storeFence: available
[22:24:08] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: java.nio.Buffer.address: available
[22:24:08] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: direct buffer constructor: unavailable
java.lang.UnsupportedOperationException: Reflective setAccessible(true) disabled
	at io.netty.util.internal.ReflectionUtil.trySetAccessible(ReflectionUtil.java:31) ~[netty-common-4.1.77.Final.jar%23140!/:4.1.77.Final] {}
	at io.netty.util.internal.PlatformDependent0$5.run(PlatformDependent0.java:287) ~[netty-common-4.1.77.Final.jar%23140!/:4.1.77.Final] {}
	at java.security.AccessController.doPrivileged(AccessController.java:318) ~[?:?] {}
	at io.netty.util.internal.PlatformDependent0.<clinit>(PlatformDependent0.java:281) ~[netty-common-4.1.77.Final.jar%23140!/:4.1.77.Final] {}
	at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:294) ~[netty-common-4.1.77.Final.jar%23140!/:4.1.77.Final] {}
	at io.netty.util.internal.PlatformDependent.<clinit>(PlatformDependent.java:88) ~[netty-common-4.1.77.Final.jar%23140!/:4.1.77.Final] {}
	at io.netty.util.ConstantPool.<init>(ConstantPool.java:34) ~[netty-common-4.1.77.Final.jar%23140!/:4.1.77.Final] {}
	at io.netty.util.AttributeKey$1.<init>(AttributeKey.java:27) ~[netty-common-4.1.77.Final.jar%23140!/:4.1.77.Final] {}
	at io.netty.util.AttributeKey.<clinit>(AttributeKey.java:27) ~[netty-common-4.1.77.Final.jar%23140!/:4.1.77.Final] {}
	at net.minecraftforge.network.NetworkConstants.<clinit>(NetworkConstants.java:34) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23182%23189!/:?] {re:classloading}
	at net.minecraftforge.common.ForgeMod.<init>(ForgeMod.java:435) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23182%23189!/:?] {re:classloading}
	at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {}
	at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {}
	at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {}
	at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {}
	at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {}
	at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:68) ~[javafmllanguage-1.19.2-43.1.1.jar%23184!/:?] {}
	at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:121) ~[fmlcore-1.19.2-43.1.1.jar%23187!/:?] {}
	at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) [?:?] {}
	at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) [?:?] {}
	at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?] {}
	at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?] {}
	at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?] {}
	at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?] {}
	at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?] {}
[22:24:08] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: java.nio.Bits.unaligned: available, true
[22:24:08] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable
java.lang.IllegalAccessException: class io.netty.util.internal.PlatformDependent0$7 (in module io.netty.common) cannot access class jdk.internal.misc.Unsafe (in module java.base) because module java.base does not export jdk.internal.misc to module io.netty.common
	at jdk.internal.reflect.Reflection.newIllegalAccessException(Reflection.java:392) ~[?:?] {}
	at java.lang.reflect.AccessibleObject.checkAccess(AccessibleObject.java:674) ~[?:?] {}
	at java.lang.reflect.Method.invoke(Method.java:560) ~[?:?] {}
	at io.netty.util.internal.PlatformDependent0$7.run(PlatformDependent0.java:409) ~[netty-common-4.1.77.Final.jar%23140!/:4.1.77.Final] {}
	at java.security.AccessController.doPrivileged(AccessController.java:318) ~[?:?] {}
	at io.netty.util.internal.PlatformDependent0.<clinit>(PlatformDependent0.java:400) ~[netty-common-4.1.77.Final.jar%23140!/:4.1.77.Final] {}
	at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:294) ~[netty-common-4.1.77.Final.jar%23140!/:4.1.77.Final] {}
	at io.netty.util.internal.PlatformDependent.<clinit>(PlatformDependent.java:88) ~[netty-common-4.1.77.Final.jar%23140!/:4.1.77.Final] {}
	at io.netty.util.ConstantPool.<init>(ConstantPool.java:34) ~[netty-common-4.1.77.Final.jar%23140!/:4.1.77.Final] {}
	at io.netty.util.AttributeKey$1.<init>(AttributeKey.java:27) ~[netty-common-4.1.77.Final.jar%23140!/:4.1.77.Final] {}
	at io.netty.util.AttributeKey.<clinit>(AttributeKey.java:27) ~[netty-common-4.1.77.Final.jar%23140!/:4.1.77.Final] {}
	at net.minecraftforge.network.NetworkConstants.<clinit>(NetworkConstants.java:34) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23182%23189!/:?] {re:classloading}
	at net.minecraftforge.common.ForgeMod.<init>(ForgeMod.java:435) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23182%23189!/:?] {re:classloading}
	at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {}
	at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {}
	at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {}
	at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {}
	at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {}
	at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:68) ~[javafmllanguage-1.19.2-43.1.1.jar%23184!/:?] {}
	at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:121) ~[fmlcore-1.19.2-43.1.1.jar%23187!/:?] {}
	at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) [?:?] {}
	at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) [?:?] {}
	at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?] {}
	at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?] {}
	at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?] {}
	at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?] {}
	at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?] {}
[22:24:08] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: java.nio.DirectByteBuffer.<init>(long, int): unavailable
[22:24:08] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: sun.misc.Unsafe: available
[22:24:08] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: maxDirectMemory: 2126512128 bytes (maybe)
[22:24:08] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: -Dio.netty.tmpdir: C:\Users\Nick\AppData\Local\Temp (java.io.tmpdir)
[22:24:08] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: -Dio.netty.bitMode: 64 (sun.arch.data.model)
[22:24:08] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: Platform: Windows
[22:24:08] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: -Dio.netty.maxDirectMemory: -1 bytes
[22:24:08] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: -Dio.netty.uninitializedArrayAllocationThreshold: -1
[22:24:08] [modloading-worker-0/DEBUG] [io.ne.ut.in.CleanerJava9/]: java.nio.ByteBuffer.cleaner(): available
[22:24:08] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: -Dio.netty.noPreferDirect: false
[22:24:08] [modloading-worker-0/DEBUG] [ne.mi.co.ForgeMod/FORGEMOD]: Loading Network data for FML net version: FML3
[22:24:08] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Config file forge-client.toml for forge tracking
[22:24:08] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Config file forge-server.toml for forge tracking
[22:24:08] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Config file forge-common.toml for forge tracking
[22:24:09] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for forge
[22:24:09] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.common.ForgeSpawnEggItem$CommonHandler to MOD
[22:24:09] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.common.ForgeSpawnEggItem$ColorRegisterHandler to MOD
[22:24:09] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.client.model.data.ModelDataManager to FORGE
[22:24:09] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.client.ForgeHooksClient$ClientEvents to MOD
[22:24:09] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.client.ClientForgeMod to MOD
[22:24:09] [Render thread/FATAL] [ne.mi.fm.ModLoader/LOADING]: Failed to complete lifecycle event CONSTRUCT, 1 errors found
[22:24:12] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.sound.SoundEngineLoadEvent to a broken mod state
[22:24:15] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterColorHandlersEvent$Block to a broken mod state
[22:24:15] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterColorHandlersEvent$Item to a broken mod state
[22:24:16] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RenderLevelStageEvent$RegisterStageEvent to a broken mod state
[22:24:16] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterParticleProvidersEvent to a broken mod state
[22:24:16] [Render thread/INFO] [ne.mi.ga.ForgeGameTestHooks/]: Enabled Gametest Namespaces: [examplemod]
[22:24:16] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.event.RegisterGameTestsEvent to a broken mod state
[22:24:16] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterClientReloadListenersEvent to a broken mod state
[22:24:16] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$RegisterLayerDefinitions to a broken mod state
[22:24:16] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$RegisterRenderers to a broken mod state
[22:24:16] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterTextureAtlasSpriteLoadersEvent to a broken mod state
[22:24:16] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterClientTooltipComponentFactoriesEvent to a broken mod state
[22:24:16] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterEntitySpectatorShadersEvent to a broken mod state
[22:24:16] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterKeyMappingsEvent to a broken mod state
[22:24:16] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterRecipeBookCategoriesEvent to a broken mod state
[22:24:16] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterGuiOverlaysEvent to a broken mod state
[22:24:16] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterDimensionSpecialEffectsEvent to a broken mod state
[22:24:16] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterNamedRenderTypesEvent to a broken mod state
[22:24:16] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterColorHandlersEvent$ColorResolvers to a broken mod state
[22:24:16] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterItemDecorationsEvent to a broken mod state
[22:24:18] [Render thread/INFO] [mojang/NarratorWindows]: Narrator library for x64 successfully loaded
[22:24:19] [Render thread/INFO] [minecraft/ReloadableResourceManager]: Reloading ResourceManager: Default
[22:24:20] [Worker-Main-3/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.ModelEvent$RegisterGeometryLoaders to a broken mod state
[22:24:21] [Worker-Main-2/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Pre to a broken mod state
[22:24:26] [Worker-Main-1/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Pre to a broken mod state
[22:24:35] [Worker-Main-3/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.ModelEvent$RegisterAdditional to a broken mod state
[22:24:35] [Worker-Main-3/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Pre to a broken mod state
[22:24:39] [Worker-Main-5/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Pre to a broken mod state
[22:24:43] [Worker-Main-3/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Pre to a broken mod state
[22:24:44] [Worker-Main-3/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Pre to a broken mod state
[22:24:44] [Worker-Main-3/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Pre to a broken mod state
[22:24:44] [Worker-Main-3/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Pre to a broken mod state
[22:24:44] [Worker-Main-3/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Pre to a broken mod state
[22:24:44] [Worker-Main-3/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Pre to a broken mod state
[22:24:44] [Render thread/DEBUG] [ne.mi.co.ForgeI18n/CORE]: Loading I18N data entries: 5666
[22:24:45] [Render thread/WARN] [minecraft/SoundEngine]: Missing sound for event: minecraft:item.goat_horn.play
[22:24:45] [Render thread/WARN] [minecraft/SoundEngine]: Missing sound for event: minecraft:entity.goat.screaming.horn_break
[22:24:45] [Render thread/INFO] [mojang/Library]: OpenAL initialized on device OpenAL Soft on Speakers (Realtek High Definition Audio)
[22:24:45] [Render thread/INFO] [minecraft/SoundEngine]: Sound engine started
[22:24:45] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.sound.SoundEngineLoadEvent to a broken mod state
[22:24:45] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 1024x512x4 minecraft:textures/atlas/blocks.png-atlas
[22:24:45] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state
[22:24:45] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 256x128x4 minecraft:textures/atlas/signs.png-atlas
[22:24:45] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state
[22:24:45] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 512x512x4 minecraft:textures/atlas/banner_patterns.png-atlas
[22:24:45] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state
[22:24:45] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 512x512x4 minecraft:textures/atlas/shield_patterns.png-atlas
[22:24:45] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state
[22:24:45] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas
[22:24:45] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state
[22:24:45] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas
[22:24:45] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state
[22:24:45] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas
[22:24:45] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state
[22:24:46] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.ModelEvent$BakingCompleted to a broken mod state
[22:24:46] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:46] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:46] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:46] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:46] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:46] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:47] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:47] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:47] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:47] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:47] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:47] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:47] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:47] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:47] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:47] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:47] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:47] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:47] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:47] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:47] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:47] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state
[22:24:47] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$AddLayers to a broken mod state
[22:24:47] [Render thread/WARN] [minecraft/ShaderInstance]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program.
[22:24:48] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterShadersEvent to a broken mod state
[22:24:48] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas
[22:24:48] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state
[22:24:48] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas
[22:24:48] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state
[22:24:48] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 128x128x0 minecraft:textures/atlas/mob_effects.png-atlas
[22:24:48] [Render thread/ERROR] [ne.mi.fm.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state
[22:24:48] [Render thread/DEBUG] [ne.mi.co.ForgeI18n/CORE]: Loading I18N data entries: 5641
[22:24:48] [Render thread/DEBUG] [os.ut.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@1a96d94c
Negative index in crash report handler (24/26)
[22:24:49] [Render thread/FATAL] [ne.mi.co.ForgeMod/]: Preparing crash report with UUID 636e3943-71c0-4010-ad54-8f95178774a1
[22:24:49] [Render thread/FATAL] [ne.mi.cl.lo.ClientModLoader/]: Crash report saved to .\crash-reports\crash-2022-10-31_22.24.49-fml.txt
[22:24:49] [Render thread/FATAL] [ne.mi.co.ForgeMod/]: Preparing crash report with UUID 7acb0e1a-5702-4c63-bddc-cf2a36842761
---- Minecraft Crash Report ----
// I let you down. Sorry :(

Time: 2022-10-31 22:24:49
Description: Mod loading error has occurred

java.lang.Exception: Mod Loading has failed
	at net.minecraftforge.logging.CrashReportExtender.dumpModLoadingCrashReport(CrashReportExtender.java:55) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23182%23189!/:?] {re:classloading}
	at net.minecraftforge.client.loading.ClientModLoader.completeModLoading(ClientModLoader.java:167) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23182%23189!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$new$2(Minecraft.java:585) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.Util.ifElse(Util.java:438) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.client.Minecraft.lambda$new$3(Minecraft.java:579) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screens.LoadingOverlay.render(LoadingOverlay.java:135) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.renderer.GameRenderer.render(GameRenderer.java:885) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:1115) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:700) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.run(Main.java:212) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:51) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}
	at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}
	at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}
	at net.minecraftforge.fml.loading.targets.ForgeClientUserdevLaunchHandler.lambda$launchService$0(ForgeClientUserdevLaunchHandler.java:25) ~[fmlloader-1.19.2-43.1.1.jar%2395!/:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%23108!/:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%23108!/:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%23108!/:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%23108!/:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%23108!/:?] {}
	at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%23108!/:?] {}
	at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%23108!/:?] {}
	at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] {}


A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- Head --
Thread: Render thread
Stacktrace:
	at net.minecraftforge.registries.NamespacedWrapper.registerMapping(NamespacedWrapper.java:55) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23182%23189!/:?] {re:classloading}
-- MOD tuffgolem --
Details:
	Caused by 0: java.lang.reflect.InvocationTargetException
		at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {}
		at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {}
		at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {}
		at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {}
		at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {}
		at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:68) ~[javafmllanguage-1.19.2-43.1.1.jar%23184!/:?] {}
		at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:121) ~[fmlcore-1.19.2-43.1.1.jar%23187!/:?] {}
		at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {}
		at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {}
		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {}
		at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {}
		at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {}
		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {}
		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {}

	Caused by 1: java.lang.ExceptionInInitializerError
		at com.themajorn.tuffgolem.TuffGolem.<init>(TuffGolem.java:32) ~[%23188!/:?] {re:classloading}
		at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {}
		at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {}
		at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {}
		at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {}
		at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {}
		at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:68) ~[javafmllanguage-1.19.2-43.1.1.jar%23184!/:?] {}
		at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:121) ~[fmlcore-1.19.2-43.1.1.jar%23187!/:?] {}
		at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {}
		at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {}
		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {}
		at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {}
		at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {}
		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {}
		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {}

	Mod File: /C:/Users/Nick/Desktop/Modding/Projects/Tuff-Golem/build/resources/main/
	Failure message: Tuff Golem (tuffgolem) has failed to load correctly
		java.lang.reflect.InvocationTargetException: null
	Mod Version: 0.0NONE
	Mod Issue URL: NOT PROVIDED
	Exception message: java.lang.IllegalStateException: Can not register to a locked registry. Modder should use Forge Register methods.
Stacktrace:
	at net.minecraftforge.registries.NamespacedWrapper.registerMapping(NamespacedWrapper.java:55) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23182%23189!/:?] {re:classloading}
	at net.minecraftforge.registries.NamespacedWrapper.register(NamespacedWrapper.java:73) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23182%23189!/:?] {re:classloading}
	at net.minecraft.core.Registry.register(Registry.java:594) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.core.Registry.register(Registry.java:590) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.core.Registry.register(Registry.java:586) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at com.themajorn.tuffgolem.core.registry.ModActivities.register(ModActivities.java:25) ~[%23188!/:?] {re:classloading}
	at com.themajorn.tuffgolem.core.registry.ModActivities.<clinit>(ModActivities.java:14) ~[%23188!/:?] {re:classloading}
	at com.themajorn.tuffgolem.TuffGolem.<init>(TuffGolem.java:32) ~[%23188!/:?] {re:classloading}
	at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {}
	at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {}
	at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {}
	at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {}
	at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {}
	at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:68) ~[javafmllanguage-1.19.2-43.1.1.jar%23184!/:?] {}
	at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:121) ~[fmlcore-1.19.2-43.1.1.jar%23187!/:?] {}
	at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {}
	at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {}
	at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {}
	at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {}
	at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {}
	at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {}
	at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {}


-- System Details --
Details:
	Minecraft Version: 1.19.2
	Minecraft Version ID: 1.19.2
	Operating System: Windows 10 (amd64) version 10.0
	Java Version: 17.0.4.1, Eclipse Adoptium
	Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Eclipse Adoptium
	Memory: 130083344 bytes (124 MiB) / 615514112 bytes (587 MiB) up to 2126512128 bytes (2028 MiB)
	CPUs: 4
	Processor Vendor: GenuineIntel
	Processor Name: Intel(R) Core(TM) i5-4210H CPU @ 2.90GHz
	Identifier: Intel64 Family 6 Model 60 Stepping 3
	Microarchitecture: Haswell (Client)
	Frequency (GHz): 2.89
	Number of physical packages: 1
	Number of physical CPUs: 2
	Number of logical CPUs: 4
	Graphics card #0 name: NVIDIA GeForce 940M
	Graphics card #0 vendor: NVIDIA (0x10de)
	Graphics card #0 VRAM (MB): 2048.00
	Graphics card #0 deviceId: 0x1347
	Graphics card #0 versionInfo: DriverVersion=22.21.13.8205
	Graphics card #1 name: Intel(R) HD Graphics 4600
	Graphics card #1 vendor: Intel Corporation (0x8086)
	Graphics card #1 VRAM (MB): 1024.00
	Graphics card #1 deviceId: 0x0416
	Graphics card #1 versionInfo: DriverVersion=20.19.15.4835
	Memory slot #0 capacity (MB): 8192.00
	Memory slot #0 clockSpeed (GHz): 1.60
	Memory slot #0 type: DDR3
	Virtual memory max (MB): 17044.46
	Virtual memory used (MB): 13116.48
	Swap memory total (MB): 8935.10
	Swap memory used (MB): 1188.20
	JVM Flags: 1 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump
	ModLauncher: 10.0.8+10.0.8+main.0ef7e830
	ModLauncher launch target: forgeclientuserdev
	ModLauncher naming: mcp
	ModLauncher services: 
		mixin-0.8.5.jar mixin PLUGINSERVICE 
		eventbus-6.0.3.jar eventbus PLUGINSERVICE 
		fmlloader-1.19.2-43.1.1.jar slf4jfixer PLUGINSERVICE 
		fmlloader-1.19.2-43.1.1.jar object_holder_definalize PLUGINSERVICE 
		fmlloader-1.19.2-43.1.1.jar runtime_enum_extender PLUGINSERVICE 
		fmlloader-1.19.2-43.1.1.jar capability_token_subclass PLUGINSERVICE 
		accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE 
		fmlloader-1.19.2-43.1.1.jar runtimedistcleaner PLUGINSERVICE 
		modlauncher-10.0.8.jar mixin TRANSFORMATIONSERVICE 
		modlauncher-10.0.8.jar fml TRANSFORMATIONSERVICE 
	FML Language Providers: 
		minecraft@1.0
		lowcodefml@null
		javafml@null
	Mod List: 
		forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.|Minecraft                     |minecraft                     |1.19.2              |COMMON_SET|Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f
		                                                  |Forge                         |forge                         |43.1.1              |COMMON_SET|Manifest: NOSIGNATURE
		geckolib-forge-1.19-3.1.23_mapped_official_1.19.2.|GeckoLib                      |geckolib3                     |3.1.23              |COMMON_SET|Manifest: NOSIGNATURE
		main                                              |Tuff Golem                    |tuffgolem                     |0.0NONE             |ERROR     |Manifest: NOSIGNATURE
	Crash Report UUID: 7acb0e1a-5702-4c63-bddc-cf2a36842761
	FML: 43.1
	Forge: net.minecraftforge:43.1.1[22:25:02] [Render thread/INFO] [minecraft/Minecraft]: Stopping!

Process finished with exit code 0

Any help or points in the right direction would be much appreciated!

Edited by TheMajorN
Issue resolved
Link to comment
Share on other sites

Quote

return Registry.register(Registry.ACTIVITY, string, new Activity(string));

You are trying to directly register the activity instead of using your DeferredRegister.

Which of course fails since the registries are locked during mod initialisation.

Quote

Caused by: java.lang.IllegalStateException: Can not register to a locked registry. Modder should use Forge Register methods.

at net.minecraftforge.registries.NamespacedWrapper.registerMapping(NamespacedWrapper.java:55) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23182%23189!/:?] {re:classloading}

at net.minecraftforge.registries.NamespacedWrapper.register(NamespacedWrapper.java:73) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23182%23189!/:?] {re:classloading}

at net.minecraft.core.Registry.register(Registry.java:594) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}

at net.minecraft.core.Registry.register(Registry.java:590) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}

at net.minecraft.core.Registry.register(Registry.java:586) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}

at com.themajorn.tuffgolem.core.registry.ModActivities.register(ModActivities.java:25) ~[%23188!/:?] {re:classloading}

at com.themajorn.tuffgolem.core.registry.ModActivities.<clinit>(ModActivities.java:14) ~[%23188!/:?] {re:classloading}

at com.themajorn.tuffgolem.TuffGolem.<init>(TuffGolem.java:32) ~[%23188!/:?] {re:classloading}

https://forge.gemwire.uk/wiki/Registration

Edited by warjort

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Link to comment
Share on other sites

Ah alright, thanks for the reply.  I played around with it a bit and changed the registrations to look like this instead:

Memory Modules:

public static final RegistryObject<MemoryModuleType<GlobalPos>> SELECTED_ITEM_FRAME_POSITION = MEMORY_MODULES.register("selected_item_frame_position",
            () -> new MemoryModuleType<>(Optional.empty()));

 

Activities:

public static final RegistryObject<Activity> ANIMATE = ACTIVITIES.register("animate",
            () -> new Activity("animate"));

 

This allowed my mod to load, but I still don't think it registered correctly because my game crashes whenever I try to spawn the entity with this error:

[19:55:01] [Server thread/DEBUG] [os.ut.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@2cc75074
[19:55:01] [Server thread/ERROR] [minecraft/MinecraftServer]: Encountered an unexpected exception
net.minecraft.ReportedException: Ticking entity
	at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:870) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:806) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.server.IntegratedServer.tickServer(IntegratedServer.java:84) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:654) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:244) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at java.lang.Thread.run(Thread.java:833) [?:?] {}
Caused by: java.lang.IllegalStateException: Unregistered memory fetched: tuffgolem:selected_item_frame_position
	at net.minecraft.world.entity.ai.Brain.getMemory(Brain.java:173) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at com.themajorn.tuffgolem.common.ai.TuffGolemAi.getItemPlacePosition(TuffGolemAi.java:135) ~[%23188!/:?] {re:classloading}
	at net.minecraft.world.entity.ai.behavior.StayCloseToTarget.checkExtraStartConditions(StayCloseToTarget.java:26) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.world.entity.ai.behavior.Behavior.tryStart(Behavior.java:36) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.world.entity.ai.Brain.startEachNonRunningBehavior(Brain.java:417) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.world.entity.ai.Brain.tick(Brain.java:374) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at com.themajorn.tuffgolem.common.entities.TuffGolemEntity.customServerAiStep(TuffGolemEntity.java:210) ~[%23188!/:?] {re:classloading}
	at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:717) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:2546) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.world.entity.Mob.aiStep(Mob.java:501) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at com.themajorn.tuffgolem.common.entities.TuffGolemEntity.aiStep(TuffGolemEntity.java:179) ~[%23188!/:?] {re:classloading}
	at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:2291) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.world.entity.Mob.tick(Mob.java:313) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at com.themajorn.tuffgolem.common.entities.TuffGolemEntity.tick(TuffGolemEntity.java:135) ~[%23188!/:?] {re:classloading}
	at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:658) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.world.level.Level.guardEntityTick(Level.java:457) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.server.level.ServerLevel.lambda$tick$3(ServerLevel.java:323) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:53) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:303) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:866) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	... 5 more
[19:55:01] [Server thread/FATAL] [ne.mi.co.ForgeMod/]: Preparing crash report with UUID 07b0dc73-3180-4b42-bcc5-308eff2e9f15
[19:55:01] [Server thread/ERROR] [minecraft/MinecraftServer]: This crash report has been saved to: C:\Users\Nick\Desktop\Modding\Projects\Tuff-Golem\run\.\crash-reports\crash-2022-11-01_19.55.01-server.txt
[19:55:01] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server
[19:55:01] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players
[19:55:01] [Render thread/FATAL] [ne.mi.co.ForgeMod/]: Preparing crash report with UUID 090d6c1d-7af7-41f6-8e5f-d906fc0bb22a
---- Minecraft Crash Report ----
// I let you down. Sorry :(

Time: 2022-11-01 19:55:01
Description: Ticking entity

java.lang.IllegalStateException: Unregistered memory fetched: tuffgolem:selected_item_frame_position
	at net.minecraft.world.entity.ai.Brain.getMemory(Brain.java:173) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at com.themajorn.tuffgolem.common.ai.TuffGolemAi.getItemPlacePosition(TuffGolemAi.java:135) ~[%23188!/:?] {re:classloading}
	at net.minecraft.world.entity.ai.behavior.StayCloseToTarget.checkExtraStartConditions(StayCloseToTarget.java:26) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.world.entity.ai.behavior.Behavior.tryStart(Behavior.java:36) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.world.entity.ai.Brain.startEachNonRunningBehavior(Brain.java:417) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.world.entity.ai.Brain.tick(Brain.java:374) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at com.themajorn.tuffgolem.common.entities.TuffGolemEntity.customServerAiStep(TuffGolemEntity.java:210) ~[%23188!/:?] {re:classloading}
	at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:717) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:2546) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.world.entity.Mob.aiStep(Mob.java:501) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at com.themajorn.tuffgolem.common.entities.TuffGolemEntity.aiStep(TuffGolemEntity.java:179) ~[%23188!/:?] {re:classloading}
	at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:2291) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.world.entity.Mob.tick(Mob.java:313) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at com.themajorn.tuffgolem.common.entities.TuffGolemEntity.tick(TuffGolemEntity.java:135) ~[%23188!/:?] {re:classloading}
	at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:658) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.world.level.Level.guardEntityTick(Level.java:457) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.server.level.ServerLevel.lambda$tick$3(ServerLevel.java:323) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:53) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:303) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:866) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:806) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.server.IntegratedServer.tickServer(IntegratedServer.java:84) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:654) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:244) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at java.lang.Thread.run(Thread.java:833) ~[?:?] {}


A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- Head --
Thread: Render thread
Stacktrace:
	at net.minecraft.world.entity.ai.Brain.getMemory(Brain.java:173) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at com.themajorn.tuffgolem.common.ai.TuffGolemAi.getItemPlacePosition(TuffGolemAi.java:135) ~[%23188!/:?] {re:classloading}
	at net.minecraft.world.entity.ai.behavior.StayCloseToTarget.checkExtraStartConditions(StayCloseToTarget.java:26) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.world.entity.ai.behavior.Behavior.tryStart(Behavior.java:36) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.world.entity.ai.Brain.startEachNonRunningBehavior(Brain.java:417) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.world.entity.ai.Brain.tick(Brain.java:374) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at com.themajorn.tuffgolem.common.entities.TuffGolemEntity.customServerAiStep(TuffGolemEntity.java:210) ~[%23188!/:?] {re:classloading}
	at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:717) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:2546) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.world.entity.Mob.aiStep(Mob.java:501) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at com.themajorn.tuffgolem.common.entities.TuffGolemEntity.aiStep(TuffGolemEntity.java:179) ~[%23188!/:?] {re:classloading}
	at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:2291) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.world.entity.Mob.tick(Mob.java:313) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at com.themajorn.tuffgolem.common.entities.TuffGolemEntity.tick(TuffGolemEntity.java:135) ~[%23188!/:?] {re:classloading}
	at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:658) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.world.level.Level.guardEntityTick(Level.java:457) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.server.level.ServerLevel.lambda$tick$3(ServerLevel.java:323) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:53) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:303) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
-- Entity being ticked --
Details:
	Entity Type: tuffgolem:tuff_golem (com.themajorn.tuffgolem.common.entities.TuffGolemEntity)
	Entity ID: 551
	Entity Name: entity.tuffgolem.tuff_golem
	Entity's Exact location: 315.50, 64.05, -132.50
	Entity's Block location: World: (315,64,-133), Section: (at 11,0,11 in 19,4,-9; chunk contains blocks 304,-64,-144 to 319,319,-129), Region: (0,-1; contains chunks 0,-32 to 31,-1, blocks 0,-64,-512 to 511,319,-1)
	Entity's Momentum: 0.00, 0.00, 0.00
	Entity's Passengers: []
	Entity's Vehicle: null
Stacktrace:
	at net.minecraft.world.level.Level.guardEntityTick(Level.java:457) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.server.level.ServerLevel.lambda$tick$3(ServerLevel.java:323) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:53) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:303) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:866) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:806) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.server.IntegratedServer.tickServer(IntegratedServer.java:84) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:654) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:244) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at java.lang.Thread.run(Thread.java:833) ~[?:?] {}


-- Affected level --
Details:
	All players: 1 total; [ServerPlayer['Dev'/140, l='ServerLevel[New World]', x=315.74, y=63.00, z=-129.67]]
	Chunk stats: 2903
	Level dimension: minecraft:overworld
	Level spawn location: World: (384,70,-112), Section: (at 0,6,0 in 24,4,-7; chunk contains blocks 384,-64,-112 to 399,319,-97), Region: (0,-1; contains chunks 0,-32 to 31,-1, blocks 0,-64,-512 to 511,319,-1)
	Level time: 157510 game time, 5954 day time
	Level name: New World
	Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: true
	Level weather: Rain time: 18253 (now: false), thunder time: 80266 (now: false)
	Known server brands: forge
	Level was modded: true
	Level storage version: 0x04ABD - Anvil
Stacktrace:
	at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:866) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:806) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.server.IntegratedServer.tickServer(IntegratedServer.java:84) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:654) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:244) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at java.lang.Thread.run(Thread.java:833) ~[?:?] {}


-- System Details --
Details:
	Minecraft Version: 1.19.2
	Minecraft Version ID: 1.19.2
	Operating System: Windows 10 (amd64) version 10.0
	Java Version: 17.0.4.1, Eclipse Adoptium
	Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Eclipse Adoptium
	Memory: 578461376 bytes (551 MiB) / 1611661312 bytes (1537 MiB) up to 2126512128 bytes (2028 MiB)
	CPUs: 4
	Processor Vendor: GenuineIntel
	Processor Name: Intel(R) Core(TM) i5-4210H CPU @ 2.90GHz
	Identifier: Intel64 Family 6 Model 60 Stepping 3
	Microarchitecture: Haswell (Client)
	Frequency (GHz): 2.89
	Number of physical packages: 1
	Number of physical CPUs: 2
	Number of logical CPUs: 4
	Graphics card #0 name: NVIDIA GeForce 940M
	Graphics card #0 vendor: NVIDIA (0x10de)
	Graphics card #0 VRAM (MB): 2048.00
	Graphics card #0 deviceId: 0x1347
	Graphics card #0 versionInfo: DriverVersion=22.21.13.8205
	Graphics card #1 name: Intel(R) HD Graphics 4600
	Graphics card #1 vendor: Intel Corporation (0x8086)
	Graphics card #1 VRAM (MB): 1024.00
	Graphics card #1 deviceId: 0x0416
	Graphics card #1 versionInfo: DriverVersion=20.19.15.4835
	Memory slot #0 capacity (MB): 8192.00
	Memory slot #0 clockSpeed (GHz): 1.60
	Memory slot #0 type: DDR3
	Virtual memory max (MB): 17042.74
	Virtual memory used (MB): 11135.90
	Swap memory total (MB): 8933.38
	Swap memory used (MB): 949.48
	JVM Flags: 1 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump
	Server Running: true
	Player Count: 1 / 8; [ServerPlayer['Dev'/140, l='ServerLevel[New World]', x=315.74, y=63.00, z=-129.67]]
	Data Packs: vanilla, mod:forge, mod:geckolib3 (incompatible), mod:tuffgolem
	World Generation: Stable
	Type: Integrated Server (map_client.txt)
	Is Modded: Definitely; Client brand changed to 'forge'; Server brand changed to 'forge'
	Launched Version: MOD_DEV
	ModLauncher: 10.0.8+10.0.8+main.0ef7e830
	ModLauncher launch target: forgeclientuserdev
	ModLauncher naming: mcp
	ModLauncher services: 
		mixin-0.8.5.jar mixin PLUGINSERVICE 
		eventbus-6.0.3.jar eventbus PLUGINSERVICE 
		fmlloader-1.19.2-43.1.1.jar slf4jfixer PLUGINSERVICE 
		fmlloader-1.19.2-43.1.1.jar object_holder_definalize PLUGINSERVICE 
		fmlloader-1.19.2-43.1.1.jar runtime_enum_extender PLUGINSERVICE 
		fmlloader-1.19.2-43.1.1.jar capability_token_subclass PLUGINSERVICE 
		accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE 
		fmlloader-1.19.2-43.1.1.jar runtimedistcleaner PLUGINSERVICE 
		modlauncher-10.0.8.jar mixin TRANSFORMATIONSERVICE 
		modlauncher-10.0.8.jar fml TRANSFORMATIONSERVICE 
	FML Language Providers: 
		[email protected]
		lowcodefml@null
		javafml@null
	Mod List: 
		forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.|Minecraft                     |minecraft                     |1.19.2              |DONE      |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f
		                                                  |Forge                         |forge                         |43.1.1              |DONE      |Manifest: NOSIGNATURE
		geckolib-forge-1.19-3.1.23_mapped_official_1.19.2.|GeckoLib                      |geckolib3                     |3.1.23              |DONE      |Manifest: NOSIGNATURE
		main                                              |Tuff Golem                    |tuffgolem                     |0.0NONE             |DONE      |Manifest: NOSIGNATURE
	Crash Report UUID: 090d6c1d-7af7-41f6-8e5f-d906fc0bb22a
	FML: 43.1
	Forge: net.minecraftforge:43.1.1
#@!@# Game crashed! Crash report saved to: #@!@# .\crash-reports\crash-2022-11-01_19.55.01-server.txt
[19:55:01] [Server thread/INFO] [minecraft/ServerGamePacketListenerImpl]: Dev lost connection: Server closed
[19:55:01] [Server thread/INFO] [minecraft/MinecraftServer]: Dev left the game
[19:55:01] [Server thread/INFO] [minecraft/ServerGamePacketListenerImpl]: Stopping singleplayer server as player logged out
[19:55:01] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds
[19:55:04] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
[19:55:11] [Server thread/DEBUG] [os.ut.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@2cc75074
[19:55:11] [Server thread/ERROR] [minecraft/EntityStorage]: An Entity type entity.tuffgolem.tuff_golem has thrown an exception trying to write state. It will not persist. Report this to the mod author
net.minecraft.ReportedException: Saving entity NBT
	at net.minecraft.world.entity.Entity.saveWithoutId(Entity.java:1546) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.world.entity.Entity.saveAsPassenger(Entity.java:1451) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.world.entity.Entity.save(Entity.java:1458) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.world.level.chunk.storage.EntityStorage.lambda$storeEntities$1(EntityStorage.java:94) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1625) ~[?:?] {}
	at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:762) ~[?:?] {}
	at net.minecraft.world.level.chunk.storage.EntityStorage.storeEntities(EntityStorage.java:91) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.world.level.entity.PersistentEntitySectionManager.storeChunkSections(PersistentEntitySectionManager.java:217) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.world.level.entity.PersistentEntitySectionManager.processChunkUnload(PersistentEntitySectionManager.java:234) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.world.level.entity.PersistentEntitySectionManager.lambda$saveAll$15(PersistentEntitySectionManager.java:306) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at it.unimi.dsi.fastutil.longs.LongCollection.removeIf(LongCollection.java:285) ~[fastutil-8.5.6.jar%23153!/:?] {}
	at it.unimi.dsi.fastutil.longs.LongCollection.removeIf(LongCollection.java:321) ~[fastutil-8.5.6.jar%23153!/:?] {}
	at it.unimi.dsi.fastutil.longs.AbstractLongCollection.removeIf(AbstractLongCollection.java:155) ~[fastutil-8.5.6.jar%23153!/:?] {}
	at net.minecraft.world.level.entity.PersistentEntitySectionManager.saveAll(PersistentEntitySectionManager.java:304) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at net.minecraft.server.level.ServerLevel.save(ServerLevel.java:709) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.server.MinecraftServer.saveAllChunks(MinecraftServer.java:496) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:575) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.server.IntegratedServer.stopServer(IntegratedServer.java:173) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:682) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:244) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	at java.lang.Thread.run(Thread.java:833) [?:?] {}
Caused by: java.lang.NullPointerException: Cannot invoke "net.minecraft.network.syncher.SynchedEntityData$DataItem.getValue()" because the return value of "net.minecraft.network.syncher.SynchedEntityData.getItem(net.minecraft.network.syncher.EntityDataAccessor)" is null
	at net.minecraft.network.syncher.SynchedEntityData.get(SynchedEntityData.java:119) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading}
	at com.themajorn.tuffgolem.common.entities.TuffGolemEntity.isPlayerCreated(TuffGolemEntity.java:158) ~[%23188!/:?] {re:classloading}
	at com.themajorn.tuffgolem.common.entities.TuffGolemEntity.addAdditionalSaveData(TuffGolemEntity.java:99) ~[%23188!/:?] {re:classloading}
	at net.minecraft.world.entity.Entity.saveWithoutId(Entity.java:1525) ~[forge-1.19.2-43.1.1_mapped_official_1.19.2-recomp.jar%23183!/:?] {re:classloading,pl:accesstransformer:B}
	... 20 more
[19:55:11] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[19:55:11] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
[19:55:11] [Server thread/DEBUG] [ne.mi.co.ForgeHooks/WP]: Gathering id map for writing to world save New World
[19:55:11] [Server thread/DEBUG] [ne.mi.co.ForgeHooks/WP]: ID Map collection complete New World
[19:55:11] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (New World): All chunks are saved
[19:55:11] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[19:55:11] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[19:55:11] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage: All dimensions are saved
[19:55:12] [Server thread/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing serverconfig directory : .\saves\New World\serverconfig
[19:55:12] [Server thread/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Unloading configs type SERVER

Process finished with exit code -1

The part where it says "unregistered memory fetched" at the "selected_item_frame_position" I assume is an indicator that I did something wrong with the registration.

Link to comment
Share on other sites

  • TheMajorN changed the title to [SOLVED] [1.19.2] Mod Startup Error when Trying to Register MemoryModuleTypes and Activities

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hello! I created a Forge Server with mods. My forge version is 47.3.0 and my Minecraft version is 1.20.1. I have no idea what could be causing the error. My crashlogs are Here: https://gist.github.com/Dwolfwoood/8817a253594c882255de65e989302084
    • yes but it said that farmer's delight is what is causing it now https://gist.github.com/ZR500014/827709f35c183f9cb9152d24520c4a21
    • exactly as it says. im not sure what the issue is, added more GB to it and its still crashing just as quickly as before in the same only a short while after i hit the start button, so i assume its a mod issue. not good at reading logs, anyone have any ideas?   logs here- 16.11 00:45:12 [Multicraft] Received start command 16.11 00:45:12 [Multicraft] Loading server properties 16.11 00:45:12 [Multicraft] Loaded config for "Forge Unix Args" 16.11 00:45:12 [Multicraft] Starting server! 16.11 00:45:13 [Multicraft] Adding template "apexupdater" and options "always,install,temp" from config 16.11 00:45:13 [Multicraft] Running setup... 16.11 00:45:14 [Setup/"Apex Updater" initialize] Running Apex Updater... 16.11 00:45:14 [Setup/"Apex Updater" initialize] Selected Game = forge_1.20.1 16.11 00:45:14 [Multicraft] Done, returned Ok 16.11 00:45:14 [Multicraft] Setup done, restarting 16.11 00:45:14 [Multicraft] Server stopped 16.11 00:45:17 [Multicraft] Loading server properties 16.11 00:45:17 [Multicraft] Loaded config for "Forge Unix Args" 16.11 00:45:17 [Multicraft] Starting server! 16.11 00:45:17 [Multicraft] Updating eula.txt file 16.11 00:45:17 [Server] INFO WARNING: Published ports are discarded when using host network mode 16.11 00:45:17 [Server] INFO 0d93d0a8f120ed42c04758fb49f4b13e1113380cb1104c2fdd643e4f878d5122 16.11 00:45:21 [Server] INFO [Log4jPatcher] [INFO] Transforming org/apache/logging/log4j/core/pattern/MessagePatternConverter 16.11 00:45:21 [Server] INFO [Log4jPatcher] [WARN] Unable to find noLookups:Z field in org/apache/logging/log4j/core/pattern/MessagePatternConverter 16.11 00:45:21 [Server] INFO [Log4jPatcher] [INFO] Transforming org/apache/logging/log4j/core/lookup/JndiLookup 16.11 00:45:21 [Server] main/INFO [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 47.3.12, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412, nogui] 16.11 00:45:21 [Server] main/INFO [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.13 by Eclipse Adoptium; OS Linux arch amd64 version 5.15.0-117-generic 16.11 00:45:22 [Server] main/INFO [ne.mi.fm.lo.ImmediateWindowHandler/]: ImmediateWindowProvider not loading because launch target is forgeserver 16.11 00:45:22 [Server] main/INFO [mixin-transmog/]: Mixin Transmogrifier is definitely up to no good... 16.11 00:45:22 [Server] main/INFO [mixin-transmog/]: crimes against java were committed 16.11 00:45:22 [Server] main/INFO [mixin-transmog/]: Original mixin transformation service successfully crobbed by mixin-transmogrifier! 16.11 00:45:22 [Server] main/INFO [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/mods/Connector-1.0.0-beta.46+1.20.1.jar%23342%23345!/ Service=ModLauncher Env=SERVER 16.11 00:45:23 [Server] main/WARN [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /jar/libraries/net/minecraftforge/fmlcore/1.20.1-47.3.12/fmlcore-1.20.1-47.3.12.jar is missing mods.toml file 16.11 00:45:23 [Server] main/WARN [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /jar/libraries/net/minecraftforge/javafmllanguage/1.20.1-47.3.12/javafmllanguage-1.20.1-47.3.12.jar is missing mods.toml file 16.11 00:45:23 [Server] main/WARN [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /jar/libraries/net/minecraftforge/lowcodelanguage/1.20.1-47.3.12/lowcodelanguage-1.20.1-47.3.12.jar is missing mods.toml file 16.11 00:45:23 [Server] main/WARN [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /jar/libraries/net/minecraftforge/mclanguage/1.20.1-47.3.12/mclanguage-1.20.1-47.3.12.jar is missing mods.toml file 16.11 00:45:23 [Server] main/WARN [ne.mi.ja.se.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: 16.11 00:45:23 [Server] main/WARN [ne.mi.ja.se.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: aeroblender. Using Mod File: /mods/aeroblender-1.20.1-1.0.1-neoforge.jar 16.11 00:45:23 [Server] main/WARN [ne.mi.ja.se.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: curios. Using Mod File: /mods/curios-forge-5.11.0+1.20.1.jar 16.11 00:45:23 [Server] main/INFO [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Found 87 dependencies adding them to mods collection 16.11 00:45:24 [Server] main/INFO [or.si.co.lo.DependencyResolver/]: Dependency resolution found 10 candidates to load 16.11 00:45:25 [Server] main/INFO [or.si.co.se.ha.ModuleLayerMigrator/]: Successfully made module authlib transformable 16.11 00:45:31 [Server] main/INFO [mixin/]: Compatibility level set to JAVA_17 16.11 00:45:32 [Server] main/WARN [mixin/]: Reference map 'nitrogen_internals.refmap.json' for nitrogen_internals.mixins.json could not be read. If this is a development environment you can ignore this message 16.11 00:45:32 [Server] main/WARN [mixin/]: Reference map 'harvest_with_ease.refmap.json' for harvest_with_ease.mixins.json could not be read. If this is a development environment you can ignore this message 16.11 00:45:32 [Server] main/WARN [mixin/]: Reference map 'harvest_with_ease.refmap.json' for harvest_with_ease.forge.mixins.json could not be read. If this is a development environment you can ignore this message 16.11 00:45:32 [Server] main/WARN [mixin/]: Reference map 'graveyard-FORGE-forge-refmap.json' for graveyard-forge.mixins.json could not be read. If this is a development environment you can ignore this message 16.11 00:45:32 [Server] main/WARN [mixin/]: Reference map 'EpheroLib-refmap.json' for epherolib.mixins.json could not be read. If this is a development environment you can ignore this message 16.11 00:45:32 [Server] main/WARN [mixin/]: Reference map 'aaa_particles-fabric-refmap.json' for aaa_particles.mixins.json could not be read. If this is a development environment you can ignore this message 16.11 00:45:32 [Server] main/WARN [mixin/]: Reference map 'NetheriteHorseArmor-CJ-common-mc-common-refmap.json' for netheritehorsearmor-common.mixins.json could not be read. If this is a development environment you can ignore this message 16.11 00:45:32 [Server] main/INFO [Puzzles Lib/]: Loading 317 mods: 16.11 00:45:32 [Server] INFO - aaa_particles 1.20.1-1.4.5 16.11 00:45:32 [Server] INFO - advancednetherite 2.1.3 16.11 00:45:32 [Server] INFO - aeroblender 1.20.1-1.0.1-neoforge 16.11 00:45:32 [Server] INFO - aether 1.20.1-1.5.1-neoforge 16.11 00:45:32 [Server] INFO |-- cumulus_menus 1.20.1-1.0.1-neoforge 16.11 00:45:32 [Server] INFO |-- mixinextras 0.2.0-beta.9 16.11 00:45:32 [Server] INFO \-- nitrogen_internals 1.20.1-1.0.11-neoforge 16.11 00:45:32 [Server] INFO - aetherdelight 1.0.0 16.11 00:45:32 [Server] INFO - alexscaves 2.0.2 16.11 00:45:32 [Server] INFO - alexscavesdelight 1.0.19.1-1.20.1 16.11 00:45:32 [Server] INFO - alexsdelight 1.5 16.11 00:45:32 [Server] INFO - alexsmobs 1.22.9 16.11 00:45:32 [Server] INFO - amendments 1.20-1.2.12 16.11 00:45:32 [Server] INFO - amplified_nether 1.2.5 16.11 00:45:32 [Server] INFO - another_furniture 1.20.1-3.0.1 16.11 00:45:32 [Server] INFO - aquaculture 2.5.2 16.11 00:45:32 [Server] INFO - aquaculturedelight 1.0.0 16.11 00:45:32 [Server] INFO - aquamirae 6.API15 16.11 00:45:32 [Server] INFO - aquamirae_delight 1.4.6 16.11 00:45:32 [Server] INFO - archers_paradox 5.0.0 16.11 00:45:32 [Server] INFO - architectury 9.2.14 16.11 00:45:32 [Server] INFO - artifacts 9.5.13 16.11 00:45:32 [Server] INFO \-- expandability 9.0.4 16.11 00:45:32 [Server] INFO - attributefix 21.0.4 16.11 00:45:32 [Server] INFO - auroras 1.6 16.11 00:45:32 [Server] INFO - azurelib 2.0.39 16.11 00:45:32 [Server] INFO - bakery 1.1.15 16.11 00:45:32 [Server] INFO - balm 7.3.9 16.11 00:45:32 [Server] INFO \-- kuma_api 20.1.8 16.11 00:45:32 [Server] INFO - bca 1.0-1.20.1 16.11 00:45:32 [Server] INFO - berries_and_cherries 1.0.9 16.11 00:45:32 [Server] INFO - bettas 1.2.3 16.11 00:45:32 [Server] INFO - betterbeekeeping 1.20.1-1.3.0 16.11 00:45:32 [Server] INFO - bettercombat 1.8.6+1.20.1 16.11 00:45:32 [Server] INFO - betterdeserttemples 1.20-Forge-3.0.3 16.11 00:45:32 [Server] INFO - betterdungeons 1.20-Forge-4.0.4 16.11 00:45:32 [Server] INFO - betterendisland 1.20-Forge-2.0.6 16.11 00:45:32 [Server] INFO - betterfortresses 1.20-Forge-2.0.6 16.11 00:45:32 [Server] INFO - betterfpsdist 1.20.1-6.0 16.11 00:45:32 [Server] INFO - betterjungletemples 1.20-Forge-2.0.5 16.11 00:45:32 [Server] INFO - bettermineshafts 1.20-Forge-4.0.4 16.11 00:45:32 [Server] INFO - betteroceanmonuments 1.20-Forge-3.0.4 16.11 00:45:32 [Server] INFO - betterstrongholds 1.20-Forge-4.0.3 16.11 00:45:32 [Server] INFO - betterthanmending 1.7.2 16.11 00:45:32 [Server] INFO - bettervillage 3.2.0 16.11 00:45:32 [Server] INFO - betterwitchhuts 1.20-Forge-3.0.3 16.11 00:45:32 [Server] INFO - blueprint 7.1.0 16.11 00:45:32 [Server] INFO - bookshelf 20.2.13 16.11 00:45:32 [Server] INFO - botania 1.20.1-446-FORGE 16.11 00:45:32 [Server] INFO - botaniaartifacts 1.0.1-1.20.1 16.11 00:45:32 [Server] INFO - botaniadelight 1.0.3.2-1.20.1 16.11 00:45:32 [Server] INFO - brewery 2.0.3 16.11 00:45:32 [Server] INFO - bygonenether 1.3.2 16.11 00:45:32 [Server] INFO - caelus 3.2.0+1.20.1 16.11 00:45:32 [Server] INFO - camping 1.0.4 16.11 00:45:32 [Server] INFO - cat_jam 1.2.2 16.11 00:45:32 [Server] INFO - catloaf 1.1.1 16.11 00:45:32 [Server] INFO - cavesanddepths 1.2.7 16.11 00:45:32 [Server] INFO - chat_heads 0.13.6 16.11 00:45:32 [Server] INFO - chestedcompanions 1.3.1 16.11 00:45:32 [Server] INFO - citadel 2.6.0 16.11 00:45:32 [Server] INFO - cleardespawn 1.1.15 16.11 00:45:32 [Server] INFO - cloth_config 11.1.136 16.11 00:45:32 [Server] INFO - cobweb 1.0.0 16.11 00:45:32 [Server] INFO - coffee_delight 1.4 16.11 00:45:32 [Server] INFO - cofh_core 11.0.2 16.11 00:45:32 [Server] INFO - collective 7.87 16.11 00:45:32 [Server] INFO - com_github_llamalad7_mixinextras 0.2.0-beta.8 16.11 00:45:32 [Server] INFO - configapi 1.20-2.3.2 16.11 00:45:32 [Server] INFO - connectorextras 1.11.2+1.20.1 16.11 00:45:32 [Server] INFO |-- amecsapi 1.5.3+mc1.20-pre1 16.11 00:45:32 [Server] INFO |-- connectorextras_architectury_bridge 1.11.2+1.20.1 16.11 00:45:32 [Server] INFO |-- connectorextras_emi_bridge 1.11.2+1.20.1 16.11 00:45:32 [Server] INFO |-- connectorextras_energy_bridge 1.11.2+1.20.1 16.11 00:45:32 [Server] INFO |-- connectorextras_geckolib_fabric_compat 1.11.2+1.20.1 16.11 00:45:32 [Server] INFO |-- connectorextras_jei_bridge 1.11.2+1.20.1 16.11 00:45:32 [Server] INFO |-- connectorextras_kubejs_bridge 1.11.2+1.20.1 16.11 00:45:32 [Server] INFO |-- connectorextras_modmenu_bridge 1.11.2+1.20.1 16.11 00:45:32 [Server] INFO \-- modmenu 7.2.2 16.11 00:45:32 [Server] INFO |-- connectorextras_pehkui_bridge 1.11.2+1.20.1 16.11 00:45:32 [Server] INFO |-- connectorextras_rei_bridge 1.11.2+1.20.1 16.11 00:45:32 [Server] INFO |-- connectorextras_terrablender_bridge 1.11.2+1.20.1 16.11 00:45:32 [Server] INFO |-- forgeconfigapiport 8.0.0 16.11 00:45:32 [Server] INFO \-- reach_entity_attributes 2.4.0 16.11 00:45:32 [Server] INFO - connectormod 1.0.0-beta.46+1.20.1 16.11 00:45:32 [Server] INFO - cookingforblockheads 16.0.9 16.11 00:45:32 [Server] INFO - corn_delight 1.1.6-1.20.1 16.11 00:45:32 [Server] INFO - cornexpansion 1.0.1 16.11 00:45:32 [Server] INFO - coroutil 1.20.1-1.3.7 16.11 00:45:32 [Server] INFO - crabbersdelight 1.1.7c 16.11 00:45:32 [Server] INFO - cratedelight 24.11.06-1.20-forge 16.11 00:45:32 [Server] INFO - crittersandcompanions 2.2.2 16.11 00:45:32 [Server] INFO - croptopia 3.0.4 16.11 00:45:32 [Server] INFO - croptopia_additions 2.4 16.11 00:45:32 [Server] INFO - croptopia_delight 1.0 16.11 00:45:32 [Server] INFO - cuisinedelight 1.1.16 16.11 00:45:32 [Server] INFO - culturaldelights 0.16.1 16.11 00:45:32 [Server] INFO - cupboard 1.20.1-2.7 16.11 00:45:32 [Server] INFO - curios 5.11.0+1.20.1 16.11 00:45:32 [Server] INFO - deep_aether 1.20.1-1.0.4 16.11 00:45:32 [Server] INFO - deepblue 1.2 16.11 00:45:32 [Server] INFO - deeperdarker 1.3.3 16.11 00:45:32 [Server] INFO - deeperdarkerdelight 1.0.2.1-1.20.1 16.11 00:45:32 [Server] INFO - delightful 3.6 16.11 00:45:32 [Server] INFO - doapi 1.2.15 16.11 00:45:32 [Server] INFO \-- terraform 7.0.1 16.11 00:45:32 [Server] INFO - doggytalents 1.18.36 16.11 00:45:32 [Server] INFO - doubledoors 5.9 16.11 00:45:32 [Server] INFO - dtnpaletteofpaws 1.2.4 16.11 00:45:32 [Server] INFO - dungeons_arise 2.1.58-1.20.x 16.11 00:45:32 [Server] INFO - dynamiclights 1.20.1.2 16.11 00:45:32 [Server] INFO - efallingtrees 0.6.0-1.20+forge 16.11 00:45:32 [Server] INFO - eldritch_end 0.3.2 16.11 00:45:32 [Server] INFO - embeddium 0.3.31+mc1.20.1 16.11 00:45:32 [Server] INFO \-- rubidium 0.7.1 16.11 00:45:32 [Server] INFO - emi 1.1.18+1.20.1+forge 16.11 00:45:32 [Server] INFO - emi_enchanting 0.1.2+1.20.1+forge 16.11 00:45:32 [Server] INFO - emi_letsdo_compat 1.3 16.11 00:45:32 [Server] INFO - emi_loot 0.7.4+1.20.1+forge 16.11 00:45:32 [Server] INFO - emienchants 1.0.0 16.11 00:45:32 [Server] INFO - emiffect 1.1.2+mc1.20.1 16.11 00:45:32 [Server] INFO - emitrades 1.2.1+mc1.20.1 16.11 00:45:32 [Server] INFO - enchanted 3.0.8 16.11 00:45:32 [Server] INFO - endersdelight 1.0.3 16.11 00:45:32 [Server] INFO - endofherobrine 1.20.1-1.0.8.2 16.11 00:45:32 [Server] INFO - endrem 5.3.3-R-1.20.1 16.11 00:45:32 [Server] INFO - ends_delight 2.4 16.11 00:45:32 [Server] INFO - epherolib 0.1.2 16.11 00:45:32 [Server] INFO - euphoria_patcher 1.4.3-r5.3-forge 16.11 00:45:32 [Server] INFO - exoticbirds 1.0.0 16.11 00:45:32 [Server] INFO - explorify 1.6.2 16.11 00:45:32 [Server] INFO - fabric_api 0.92.2+1.11.8+1.20.1 16.11 00:45:32 [Server] INFO |-- fabric_api_lookup_api_v1 1.6.36+67f9824077 16.11 00:45:32 [Server] INFO |-- fabric_biome_api_v1 13.0.13+dc36698e77 16.11 00:45:32 [Server] INFO |-- fabric_block_api_v1 1.0.11+0e6cb7f777 16.11 00:45:32 [Server] INFO |-- fabric_block_view_api_v2 1.0.1+0767707077 16.11 00:45:32 [Server] INFO |-- fabric_blockrenderlayer_v1 1.1.41+1d0da21e77 16.11 00:45:32 [Server] INFO |-- fabric_client_tags_api_v1 1.1.2+5d6761b877 16.11 00:45:32 [Server] INFO |-- fabric_command_api_v1 1.2.34+f71b366f77 16.11 00:45:32 [Server] INFO |-- fabric_command_api_v2 2.2.13+561530ec77 16.11 00:45:32 [Server] INFO |-- fabric_content_registries_v0 4.0.11+a670df1e77 16.11 00:45:32 [Server] INFO |-- fabric_convention_tags_v1 1.5.5+fa3d1c0177 16.11 00:45:32 [Server] INFO |-- fabric_data_attachment_api_v1 1.0.0+30ef839e77 16.11 00:45:32 [Server] INFO |-- fabric_data_generation_api_v1 12.3.4+369cb3a477 16.11 00:45:32 [Server] INFO |-- fabric_dimensions_v1 2.1.54+8005d10d77 16.11 00:45:32 [Server] INFO |-- fabric_entity_events_v1 1.6.0+6274ab9d77 16.11 00:45:32 [Server] INFO |-- fabric_events_interaction_v0 0.6.2+0d0bd5a777 16.11 00:45:32 [Server] INFO |-- fabric_game_rule_api_v1 1.0.40+683d4da877 16.11 00:45:32 [Server] INFO |-- fabric_item_api_v1 2.1.28+4d0bbcfa77 16.11 00:45:32 [Server] INFO |-- fabric_item_group_api_v1 4.0.12+c9161c2d77 16.11 00:45:32 [Server] INFO |-- fabric_key_binding_api_v1 1.0.37+561530ec77 16.11 00:45:32 [Server] INFO |-- fabric_lifecycle_events_v1 2.2.22+afab492177 16.11 00:45:33 [Multicraft] Skipped 194 lines due to rate limit (160/s) 16.11 00:45:33 [Server] main/ERROR [ne.mi.fm.lo.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/gui/Gui for invalid dist DEDICATED_SERVER 16.11 00:45:33 [Server] main/WARN [mixin/]: Error loading class: net/minecraft/client/gui/Gui (java.lang.RuntimeException: Attempted to load class net/minecraft/client/gui/Gui for invalid dist DEDICATED_SERVER) 16.11 00:45:33 [Server] main/WARN [mixin/]: @Mixin target net.minecraft.client.gui.Gui was not found shield_overhaul.mixins.json:CursorIconMixin from mod shield_overhaul 16.11 00:45:33 [Server] main/WARN [mixin/]: Error loading class: com/legacy/lost_aether/entity/AerwhaleKingEntity (java.lang.ClassNotFoundException: com.legacy.lost_aether.entity.AerwhaleKingEntity) 16.11 00:45:33 [Server] main/ERROR [ne.mi.fm.lo.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/Camera for invalid dist DEDICATED_SERVER 16.11 00:45:33 [Server] main/WARN [mixin/]: Error loading class: net/minecraft/client/Camera (java.lang.RuntimeException: Attempted to load class net/minecraft/client/Camera for invalid dist DEDICATED_SERVER) 16.11 00:45:33 [Server] main/WARN [mixin/]: @Mixin target net.minecraft.client.Camera was not found playeranimatorapi-common.mixins.json:CameraAccessor from mod playeranimatorapi 16.11 00:45:33 [Server] main/INFO [co.cu.Cupboard/]: Loaded config for: structureessentials.json 16.11 00:45:33 [Server] main/ERROR [ne.mi.fm.lo.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/multiplayer/MultiPlayerGameMode for invalid dist DEDICATED_SERVER 16.11 00:45:33 [Server] main/WARN [mixin/]: Error loading class: net/minecraft/client/multiplayer/MultiPlayerGameMode (java.lang.RuntimeException: Attempted to load class net/minecraft/client/multiplayer/MultiPlayerGameMode for invalid dist DEDICATED_SERVER) 16.11 00:45:33 [Server] main/WARN [mixin/]: @Mixin target net.minecraft.client.multiplayer.MultiPlayerGameMode was not found mixins.cofhcore.json:MultiPlayerGameModeMixin from mod cofh_core 16.11 00:45:33 [Server] main/WARN [mixin/]: Error loading class: net/minecraft/client/renderer/entity/PhantomRenderer (java.lang.ClassNotFoundException: net.minecraft.client.renderer.entity.PhantomRenderer) 16.11 00:45:33 [Server] main/WARN [mixin/]: @Mixin target net.minecraft.client.renderer.entity.PhantomRenderer was not found mixins.deeperdarker.json:PhantomRendererMixin from mod deeperdarker 16.11 00:45:33 [Server] main/ERROR [ne.mi.fm.lo.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/main/Main for invalid dist DEDICATED_SERVER 16.11 00:45:33 [Server] main/WARN [mixin/]: Error loading class: net/minecraft/client/main/Main (java.lang.RuntimeException: Attempted to load class net/minecraft/client/main/Main for invalid dist DEDICATED_SERVER) 16.11 00:45:33 [Server] main/WARN [mixin/]: @Mixin target net.minecraft.client.main.Main was not found mixins.emibridge.json:MainEntrypointMixin from mod connectorextras_emi_bridge 16.11 00:45:34 [Server] main/ERROR [ne.mi.fm.lo.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/main/Main for invalid dist DEDICATED_SERVER 16.11 00:45:34 [Server] main/WARN [mixin/]: Error loading class: net/minecraft/client/main/Main (java.lang.RuntimeException: Attempted to load class net/minecraft/client/main/Main for invalid dist DEDICATED_SERVER) 16.11 00:45:34 [Server] main/ERROR [ne.mi.fm.lo.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/main/Main for invalid dist DEDICATED_SERVER 16.11 00:45:34 [Server] main/WARN [mixin/]: Error loading class: net/minecraft/client/main/Main (java.lang.RuntimeException: Attempted to load class net/minecraft/client/main/Main for invalid dist DEDICATED_SERVER) 16.11 00:45:34 [Server] main/INFO [MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). 16.11 00:45:34 [Server] main/ERROR [ne.mi.fm.lo.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/main/Main for invalid dist DEDICATED_SERVER 16.11 00:45:34 [Server] main/WARN [mixin/]: Error loading class: net/minecraft/client/main/Main (java.lang.RuntimeException: Attempted to load class net/minecraft/client/main/Main for invalid dist DEDICATED_SERVER) 16.11 00:45:34 [Server] main/INFO [de.su.si.co.em.EMIBridge/]: Injecting EMI API classes 16.11 00:45:34 [Server] main/INFO ModernFix reached bootstrap stage (15.85 s after launch) 16.11 00:45:34 [Server] main/WARN [mixin/]: @Final field delegatesByName:Ljava/util/Map; in modernfix-forge.mixins.json:perf.forge_registry_alloc.ForgeRegistryMixin from mod modernfix should be final 16.11 00:45:34 [Server] main/WARN [mixin/]: @Final field delegatesByValue:Ljava/util/Map; in modernfix-forge.mixins.json:perf.forge_registry_alloc.ForgeRegistryMixin from mod modernfix should be final 16.11 00:45:35 [Server] main/WARN [mixin/]: @Inject(@At("INVOKE")) Shift.BY=1 on crittersandcompanions.mixins.json:LivingEntityMixin from mod crittersandcompanions::handler$bdj000$crittersandcompanions$onDie exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. 16.11 00:45:36 [Server] main/WARN [mixin/]: @Final field f_57244_:Lnet/minecraft/world/level/block/state/properties/IntegerProperty; in QualityCrops.mixins.json:SweetBerryBushMixin from mod qualitycrops should be final 16.11 00:45:36 [Server] main/INFO Vanilla bootstrap took 2025 milliseconds 16.11 00:45:38 [Server] main/WARN [mixin/]: @Inject(@At("INVOKE_ASSIGN")) Shift.BY=2 on refurbished_furniture.common.mixins.json:LevelChunkMixin from mod refurbished_furniture::handler$cal000$refurbished_furniture$refurbishedFurniture$AfterRemoveBlockEntity exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. 16.11 00:45:38 [Server] main/INFO [mixin/]: apoli.mixins.json:ItemSlotArgumentTypeAccessor from mod apoli->@Accessor[FIELD_GETTER]::getSlotNamesToSlotCommandId()Ljava/util/Map; should be static as its target is 16.11 00:45:38 [Server] main/WARN [mixin/]: Mixin alexscaves.mixins.json:SwampHutPieceMixin from mod alexscaves has multiple constructors, (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;IIIIIILnet/minecraft/core/Direction;)V was selected 16.11 00:45:38 [Server] main/WARN [mixin/]: Static binding violation: PRIVATE @Overwrite method m_47505_ in modernfix-common.mixins.json:perf.remove_biome_temperature_cache.BiomeMixin from mod modernfix cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: File exists, reading config for elocindev.eldritch_end.config.entries.biomes.PrimordialAbyssConfig. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: Config for elocindev.eldritch_end.config.entries.biomes.PrimordialAbyssConfig read successfully. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: File exists, reading config for elocindev.eldritch_end.config.entries.biomes.HasturianWastesConfig. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: Config for elocindev.eldritch_end.config.entries.biomes.HasturianWastesConfig read successfully. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: File exists, reading config for elocindev.eldritch_end.config.entries.entities.AberrationConfig. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: Config for elocindev.eldritch_end.config.entries.entities.AberrationConfig read successfully. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: File exists, reading config for elocindev.eldritch_end.config.entries.entities.TentacleConfig. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: Config for elocindev.eldritch_end.config.entries.entities.TentacleConfig read successfully. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: File exists, reading config for elocindev.eldritch_end.config.entries.entities.DendlerConfig. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: Config for elocindev.eldritch_end.config.entries.entities.DendlerConfig read successfully. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: File exists, reading config for elocindev.eldritch_end.config.entries.entities.boss.FacelessConfig. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: Config for elocindev.eldritch_end.config.entries.entities.boss.FacelessConfig read successfully. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: File exists, reading config for elocindev.eldritch_end.config.entries.entities.boss.HasturConfig. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: Config for elocindev.eldritch_end.config.entries.entities.boss.HasturConfig read successfully. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: File exists, reading config for elocindev.eldritch_end.config.entries.mechanics.CorruptionConfig. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: Config for elocindev.eldritch_end.config.entries.mechanics.CorruptionConfig read successfully. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: File exists, reading config for elocindev.eldritch_end.config.entries.mechanics.InfusionConfig. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: Config for elocindev.eldritch_end.config.entries.mechanics.InfusionConfig read successfully. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: File exists, reading config for elocindev.eldritch_end.config.entries.item.XalConfig. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: Config for elocindev.eldritch_end.config.entries.item.XalConfig read successfully. 16.11 00:45:39 [Server] main/INFO [eldritch_end/]: Eldritch End's Config Loaded! 16.11 00:45:39 [Server] main/INFO [eldritch_end/]: Registered Eldritch End items 16.11 00:45:39 [Server] main/INFO [necronomicon/]: File exists, reading config for elocin.shield_overhaul.config.server.ShieldConfig. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: Config for elocin.shield_overhaul.config.server.ShieldConfig read successfully. 16.11 00:45:39 [Server] main/INFO [shield_overhaul/]: Shield Overhaul's Config Loaded! 16.11 00:45:39 [Server] main/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id architectury:sync_ids 16.11 00:45:39 [Server] main/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id aaa_particles:main/2b101225a0983c178c43c737d76def52 16.11 00:45:39 [Server] main/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id aaa_particles:main/878ba3ad853235668eff51eb0a40c900 16.11 00:45:39 [Server] main/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id aaa_particles:main/878ba3ad853235668eff51eb0a40c900 16.11 00:45:39 [Server] main/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id aaa_particles:main/9b5bc39f00d53db2acf81d859b596583 16.11 00:45:39 [Server] main/INFO [ch.mc.Mcda/]: Registering Blocks for mcda 16.11 00:45:39 [Server] main/INFO [necronomicon/]: File exists, reading config for elocindev.rebalance.config.ReBalanceConfig. 16.11 00:45:39 [Server] main/INFO [necronomicon/]: Config for elocindev.rebalance.config.ReBalanceConfig read successfully. 16.11 00:45:39 [Server] main/INFO [prominent_ost/]: Loaded Prominent Config 16.11 00:45:39 [Server] main/INFO [prominent_ost/]: Registered Prominent Sounds 16.11 00:45:39 [Server] main/INFO [prominent_ost/]: Registered Prominent Items 16.11 00:45:39 [Server] modloading-worker-0/ERROR [ne.mi.fm.lo.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/Options for invalid dist DEDICATED_SERVER 16.11 00:45:39 [Server] modloading-worker-0/ERROR [ne.mi.fm.ja.FMLModContainer/LOADING]: Failed to register automatic subscribers. ModID: sodiumextras, class toni.sodiumextras.SodiumExtras 16.11 00:45:39 [Server] INFO java.lang.RuntimeException: Attempted to load class net/minecraft/client/Options for invalid dist DEDICATED_SERVER 16.11 00:45:39 [Server] INFO at net.minecraftforge.fml.loading.RuntimeDistCleaner.processClassWithFlags(RuntimeDistCleaner.java:57) ~[fmlloader-1.20.1-47.3.12.jar%2369!/:1.0] {} 16.11 00:45:39 [Server] INFO at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.9.jar%2355!/:?] {} 16.11 00:45:39 [Server] INFO at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.9.jar%2355!/:?] {} 16.11 00:45:39 [Server] INFO at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar%2355!/:?] {} 16.11 00:45:39 [Server] INFO at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:39 [Server] INFO at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:39 [Server] INFO at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:39 [Server] INFO at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:39 [Server] INFO at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:39 [Server] INFO at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] {} 16.11 00:45:39 [Server] INFO at java.lang.Class.getDeclaredMethods0(Native Method) ~[?:?] {re:mixin} 16.11 00:45:39 [Server] INFO at java.lang.Class.privateGetDeclaredMethods(Class.java:3402) ~[?:?] {re:mixin} 16.11 00:45:39 [Server] INFO at java.lang.Class.privateGetPublicMethods(Class.java:3427) ~[?:?] {re:mixin} 16.11 00:45:39 [Server] INFO at java.lang.Class.getMethods(Class.java:2019) ~[?:?] {re:mixin} 16.11 00:45:39 [Server] INFO at net.minecraftforge.eventbus.EventBus.registerClass(EventBus.java:83) ~[eventbus-6.0.5.jar%2352!/:?] {} 16.11 00:45:39 [Server] INFO at net.minecraftforge.eventbus.EventBus.register(EventBus.java:126) ~[eventbus-6.0.5.jar%2352!/:?] {} 16.11 00:45:39 [Server] INFO at net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber.lambda$inject$6(AutomaticEventSubscriber.java:61) ~[javafmllanguage-1.20.1-47.3.12.jar%23591!/:?] {} 16.11 00:45:39 [Server] INFO at java.util.ArrayList.forEach(ArrayList.java:1511) ~[?:?] {re:mixin} 16.11 00:45:39 [Server] INFO at net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber.inject(AutomaticEventSubscriber.java:48) ~[javafmllanguage-1.20.1-47.3.12.jar%23591!/:?] {} 16.11 00:45:39 [Server] INFO at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:92) ~[javafmllanguage-1.20.1-47.3.12.jar%23591!/:?] {} 16.11 00:45:39 [Server] INFO at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:124) ~[fmlcore-1.20.1-47.3.12.jar%23590!/:?] {} 16.11 00:45:39 [Server] INFO at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {} 16.11 00:45:39 [Server] INFO at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {} 16.11 00:45:39 [Server] INFO at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {} 16.11 00:45:39 [Server] INFO at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {} 16.11 00:45:39 [Server] INFO at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {re:mixin,re:computing_frames} 16.11 00:45:39 [Server] INFO at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {re:mixin,re:computing_frames} 16.11 00:45:39 [Server] INFO at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {re:mixin} 16.11 00:45:40 [Server] modloading-worker-0/INFO [io.gi.ap.ap.Apoli/]: Apoli 1.20.1-2.9.0.8 has initialized. Ready to power up your game! 16.11 00:45:40 [Server] modloading-worker-0/INFO [de.su.si.co.te.TerraBlenderBridge/]: Injecting TerraBlender API classes 16.11 00:45:40 [Server] modloading-worker-0/INFO [io.gi.ap.or.Origins/]: Origins 1.20.1-1.10.0.9 is initializing. Have fun! 16.11 00:45:40 [Server] modloading-worker-0/INFO [co.au.ad.AdvancedNetherite/]: Initializing platform helper for Advanced Netherite! 16.11 00:45:40 [Server] modloading-worker-0/INFO [co.ae.cu.Cumulus/]: Disabling Cumulus as it is on server. 16.11 00:45:40 [Server] modloading-worker-0/INFO [Puzzles Lib/]: Constructing common components for mutantmonsters:main 16.11 00:45:40 [Server] modloading-worker-0/INFO [co.jt.li.LibraryFerret/]: Initialize mod Library Ferret 16.11 00:45:40 [Server] modloading-worker-0/INFO [co.jt.li.LibraryFerret/]: Initialized mod Library Ferret 16.11 00:45:41 [Server] modloading-worker-0/WARN [fallingleaves/]: Falling Leaves is a client only mod and should be removed from the mods list 16.11 00:45:41 [Server] modloading-worker-0/INFO [graveyard/]: Registered JSON trade offer adapter. 16.11 00:45:41 [Server] modloading-worker-0/INFO [co.cr.co.ConfigAPI/]: Registered config for: netheritehorsearmor as netheritehorsearmor-client.cfg 16.11 00:45:41 [Server] modloading-worker-0/INFO [co.cr.co.ConfigAPI/]: Registered config for: netheritehorsearmor as netheritehorsearmor-common.cfg 16.11 00:45:41 [Server] modloading-worker-0/INFO [necronomicon/]: Necronomicon Initialized 16.11 00:45:41 [Server] modloading-worker-0/INFO [necronomicon/]: File exists, reading config for elocindev.necronomicon.NecronomiconConfig. 16.11 00:45:41 [Server] modloading-worker-0/INFO [necronomicon/]: Config for elocindev.necronomicon.NecronomiconConfig read successfully. 16.11 00:45:41 [Server] modloading-worker-0/INFO [necronomicon/]: there is a brick about to fall through your roof at terminal velocity 16.11 00:45:41 [Server] modloading-worker-0/INFO [necronomicon/]: there is a brick about to fall through your roof at terminal velocity 16.11 00:45:41 [Server] modloading-worker-0/WARN defineId called for: class net.minecraft.world.entity.player.Player from class me.adda.enhanced_falling_trees.FallingTrees 16.11 00:45:41 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id efallingtrees:config_packet 16.11 00:45:41 [Server] modloading-worker-0/INFO [Calio/]: Calio 1.20.1-1.11.0.5 initializing... 16.11 00:45:41 [Server] modloading-worker-0/INFO [co.ep.ep.co.CommonConfig/]: Creating default config file: croptopia_v3.conf 16.11 00:45:41 [Server] modloading-worker-0/ERROR [ne.mi.fm.lo.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/gui/screens/Screen for invalid dist DEDICATED_SERVER 16.11 00:45:41 [Server] modloading-worker-0/ERROR [ne.mi.fm.ja.FMLModContainer/LOADING]: Failed to create mod instance. ModID: xaeroplus, class xaeroplus.forge.XaeroPlusForge 16.11 00:45:41 [Server] INFO java.lang.RuntimeException: Attempted to load class net/minecraft/client/gui/screens/Screen for invalid dist DEDICATED_SERVER 16.11 00:45:41 [Server] INFO at net.minecraftforge.fml.loading.RuntimeDistCleaner.processClassWithFlags(RuntimeDistCleaner.java:57) ~[fmlloader-1.20.1-47.3.12.jar%2369!/:1.0] {} 16.11 00:45:41 [Server] INFO at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.9.jar%2355!/:?] {} 16.11 00:45:41 [Server] INFO at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.9.jar%2355!/:?] {} 16.11 00:45:41 [Server] INFO at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar%2355!/:?] {} 16.11 00:45:41 [Server] INFO at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:41 [Server] INFO at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:41 [Server] INFO at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:41 [Server] INFO at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:41 [Server] INFO at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:41 [Server] INFO at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] {} 16.11 00:45:41 [Server] INFO at java.lang.Class.getDeclaredConstructors0(Native Method) ~[?:?] {re:mixin} 16.11 00:45:41 [Server] INFO at java.lang.Class.privateGetDeclaredConstructors(Class.java:3373) ~[?:?] {re:mixin} 16.11 00:45:41 [Server] INFO at java.lang.Class.getConstructor0(Class.java:3578) ~[?:?] {re:mixin} 16.11 00:45:41 [Server] INFO at java.lang.Class.getDeclaredConstructor(Class.java:2754) ~[?:?] {re:mixin} 16.11 00:45:41 [Server] INFO at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:73) ~[javafmllanguage-1.20.1-47.3.12.jar%23591!/:?] {} 16.11 00:45:41 [Server] INFO at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:124) ~[fmlcore-1.20.1-47.3.12.jar%23590!/:?] {} 16.11 00:45:41 [Server] INFO at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {} 16.11 00:45:41 [Server] INFO at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {} 16.11 00:45:41 [Server] INFO at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {} 16.11 00:45:41 [Server] INFO at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {} 16.11 00:45:41 [Server] INFO at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {re:mixin,re:computing_frames} 16.11 00:45:41 [Server] INFO at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {re:mixin,re:computing_frames} 16.11 00:45:41 [Server] INFO at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {re:mixin} 16.11 00:45:41 [Server] modloading-worker-0/INFO [th.ko.te.KotlinForForge/]: Kotlin For Forge Enabled! 16.11 00:45:41 [Server] modloading-worker-0/INFO [Puzzles Lib/]: Constructing common components for puzzleslib:main 16.11 00:45:41 [Server] INFO The Euphoria Patcher Mod should not be loaded on a server! Disabling... 16.11 00:45:42 [Server] modloading-worker-0/INFO [ne.mi.co.ForgeMod/FORGEMOD]: Forge mod loading, version 47.3.12, for MC 1.20.1 with MCP 20230612.114412 16.11 00:45:42 [Server] modloading-worker-0/INFO [ne.mi.co.MinecraftForge/FORGE]: MinecraftForge v47.3.12 Initialized 16.11 00:45:42 [Server] modloading-worker-0/INFO [xy.ap.fo.co.Mo.CommonalityMod/]: Running Minecraft '1.20.1', & Forge '47.3.12' on Java '17.0.13, Eclipse Adoptium' 16.11 00:45:42 [Server] modloading-worker-0/INFO [TrustedSourceList/]: Loading BlackListed sources from remote... (https://api.stopmodreposts.org/minecraft/sites.txt) 16.11 00:45:42 [Server] modloading-worker-0/INFO [ModernFix/]: Bypassed Mojang DFU 16.11 00:45:42 [Server] modloading-worker-0/INFO [ModernFix/]: Instantiating Mojang DFU 16.11 00:45:42 [Server] modloading-worker-0/INFO [TrustedSourceList/]: Loaded 564 BlackListed sources from remote 16.11 00:45:42 [Server] modloading-worker-0/INFO [TrustManager/]: Loading mod 'commonality' TrustWorthiness... 16.11 00:45:42 [Server] modloading-worker-0/FATAL [TrustManager/]: Could not determine mod trust worthiness, Assuming Jar was downloaded from trusted source! 16.11 00:45:42 [Server] modloading-worker-0/INFO [TrustManager/]: Loaded mod 'commonality' TrustWorthiness: UNKNOWN 16.11 00:45:43 [Server] modloading-worker-0/INFO [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:pufferfish_bucket is now minecraft:bucket. 16.11 00:45:43 [Server] modloading-worker-0/INFO [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:salmon_bucket is now minecraft:bucket. 16.11 00:45:43 [Server] modloading-worker-0/INFO [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:cod_bucket is now minecraft:bucket. 16.11 00:45:43 [Server] modloading-worker-0/INFO [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:tropical_fish_bucket is now minecraft:bucket. 16.11 00:45:43 [Server] modloading-worker-0/INFO [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:axolotl_bucket is now minecraft:bucket. 16.11 00:45:43 [Server] modloading-worker-0/INFO [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:powder_snow_bucket is now minecraft:bucket. 16.11 00:45:43 [Server] modloading-worker-0/INFO [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:tadpole_bucket is now minecraft:bucket. 16.11 00:45:43 [Server] modloading-worker-0/ERROR [ne.mi.fm.lo.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/multiplayer/ClientLevel for invalid dist DEDICATED_SERVER 16.11 00:45:43 [Server] modloading-worker-0/ERROR [ne.mi.fm.ja.FMLModContainer/LOADING]: Failed to create mod instance. ModID: cat_jam, class com.shmove.cat_jam.forge.cat_jam_forge 16.11 00:45:43 [Server] INFO java.lang.RuntimeException: Attempted to load class net/minecraft/client/multiplayer/ClientLevel for invalid dist DEDICATED_SERVER 16.11 00:45:43 [Server] INFO at net.minecraftforge.fml.loading.RuntimeDistCleaner.processClassWithFlags(RuntimeDistCleaner.java:57) ~[fmlloader-1.20.1-47.3.12.jar%2369!/:1.0] {} 16.11 00:45:43 [Server] INFO at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.9.jar%2355!/:?] {} 16.11 00:45:43 [Server] INFO at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.9.jar%2355!/:?] {} 16.11 00:45:43 [Server] INFO at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar%2355!/:?] {} 16.11 00:45:43 [Server] INFO at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:43 [Server] INFO at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:43 [Server] INFO at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:43 [Server] INFO at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:43 [Server] INFO at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:43 [Server] INFO at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] {} 16.11 00:45:43 [Server] INFO at java.lang.Class.getDeclaredConstructors0(Native Method) ~[?:?] {re:mixin} 16.11 00:45:43 [Server] INFO at java.lang.Class.privateGetDeclaredConstructors(Class.java:3373) ~[?:?] {re:mixin} 16.11 00:45:43 [Server] INFO at java.lang.Class.getConstructor0(Class.java:3578) ~[?:?] {re:mixin} 16.11 00:45:43 [Server] INFO at java.lang.Class.getDeclaredConstructor(Class.java:2754) ~[?:?] {re:mixin} 16.11 00:45:43 [Server] INFO at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:73) ~[javafmllanguage-1.20.1-47.3.12.jar%23591!/:?] {} 16.11 00:45:43 [Server] INFO at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:124) ~[fmlcore-1.20.1-47.3.12.jar%23590!/:?] {} 16.11 00:45:43 [Server] INFO at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {} 16.11 00:45:43 [Server] INFO at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {} 16.11 00:45:43 [Server] INFO at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {} 16.11 00:45:43 [Server] INFO at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {} 16.11 00:45:43 [Server] INFO at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {re:mixin,re:computing_frames} 16.11 00:45:43 [Server] INFO at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {re:mixin,re:computing_frames} 16.11 00:45:43 [Server] INFO at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {re:mixin} 16.11 00:45:43 [Server] modloading-worker-0/WARN [mixin/]: @Final field VINE_AGE:Lnet/minecraft/world/level/block/state/properties/IntegerProperty; in qualitysdelight.mixins.json:TomatoVineMixin from mod qualitysdelight should be final 16.11 00:45:43 [Server] modloading-worker-0/INFO [Collective/]: Loading Collective version 7.87. 16.11 00:45:44 [Server] modloading-worker-0/INFO [Spartan Weaponry/]: Constructing Mod: Spartan Weaponry 16.11 00:45:44 [Server] modloading-worker-0/INFO [Spartan Weaponry/]: Initialising API! Version: 11 16.11 00:45:44 [Server] modloading-worker-0/INFO [Spartan Weaponry/]: Spartan Weaponry API version 11 has been initalized! 16.11 00:45:44 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id camping:open_backpack 16.11 00:45:44 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id camping:open_ender_chest 16.11 00:45:44 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id camping:open_ender_chest 16.11 00:45:44 [Server] modloading-worker-0/INFO [[Let's Do Addon] Corn Expansion/]: Finished initializing ! 16.11 00:45:44 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id brewery:alcohol_sync_request 16.11 00:45:44 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id brewery:drink_alcohol 16.11 00:45:44 [Server] modloading-worker-0/INFO [co.cu.Cupboard/]: Loaded config for: cupboard.json 16.11 00:45:44 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id meadow:var_request 16.11 00:45:45 [Server] modloading-worker-0/INFO [co.cr.co.ConfigAPI/]: Registered config for: configapi as configapi-client.cfg 16.11 00:45:45 [Server] modloading-worker-0/INFO [co.cr.co.ConfigAPI/]: Registered config for: configapi as configapi-common.cfg 16.11 00:45:45 [Server] modloading-worker-0/INFO [co.cr.co.ConfigAPI/]: Registered config for: configapi as configapi-server.cfg 16.11 00:45:45 [Server] modloading-worker-0/ERROR [ne.mi.ev.EventSubclassTransformer/EVENTBUS]: Could not find parent net/minecraft/client/renderer/entity/layers/RenderLayer for class com/obscuria/obscureapi/client/renderer/PatreonLayer in classloader cpw.mods.modlauncher.TransformingClassLoader@41e43885 on thread Thread[modloading-worker-0,5,main] 16.11 00:45:45 [Server] modloading-worker-0/ERROR [ne.mi.ev.EventSubclassTransformer/EVENTBUS]: An error occurred building event handler 16.11 00:45:45 [Server] INFO java.lang.ClassNotFoundException: net.minecraft.client.renderer.entity.layers.RenderLayer 16.11 00:45:45 [Server] INFO at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:141) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:45 [Server] INFO at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] {} 16.11 00:45:45 [Server] INFO at net.minecraftforge.eventbus.EventSubclassTransformer.buildEvents(EventSubclassTransformer.java:97) ~[eventbus-6.0.5.jar%2352!/:?] {} 16.11 00:45:45 [Server] INFO at net.minecraftforge.eventbus.EventSubclassTransformer.transform(EventSubclassTransformer.java:48) ~[eventbus-6.0.5.jar%2352!/:?] {} 16.11 00:45:45 [Server] INFO at net.minecraftforge.eventbus.EventBusEngine.processClass(EventBusEngine.java:26) ~[eventbus-6.0.5.jar%2352!/:?] {} 16.11 00:45:45 [Server] INFO at net.minecraftforge.eventbus.service.ModLauncherService.processClassWithFlags(ModLauncherService.java:32) ~[eventbus-6.0.5.jar%2352!/:6.0.5+6.0.5+master.eb8e549b] {} 16.11 00:45:45 [Server] INFO at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.9.jar%2355!/:?] {} 16.11 00:45:45 [Server] INFO at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.9.jar%2355!/:?] {} 16.11 00:45:45 [Server] INFO at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar%2355!/:?] {} 16.11 00:45:45 [Server] INFO at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:45 [Server] INFO at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:45 [Server] INFO at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:45 [Server] INFO at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:45 [Server] INFO at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.10.jar:?] {} 16.11 00:45:45 [Server] INFO at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] {} 16.11 00:45:45 [Server] INFO at java.lang.ClassLoader.defineClass0(Native Method) ~[?:?] {} 16.11 00:45:45 [Server] INFO at java.lang.System$2.defineClass(System.java:2324) ~[?:?] {} 16.11 00:45:45 [Server] INFO at java.lang.invoke.MethodHandles$Lookup$ClassDefiner.defineClass(MethodHandles.java:2439) ~[?:?] {} 16.11 00:45:45 [Server] INFO at java.lang.invoke.MethodHandles$Lookup$ClassDefiner.defineClassAsLookup(MethodHandles.java:2420) ~[?:?] {} 16.11 00:45:45 [Server] INFO at java.lang.invoke.MethodHandles$Lookup.defineHiddenClass(MethodHandles.java:2127) ~[?:?] {re:mixin} 16.11 00:45:45 [Server] INFO at java.lang.invoke.InnerClassLambdaMetafactory.generateInnerClass(InnerClassLambdaMetafactory.java:407) ~[?:?] {} 16.11 00:45:45 [Server] INFO at java.lang.invoke.InnerClassLambdaMetafactory.spinInnerClass(InnerClassLambdaMetafactory.java:315) ~[?:?] {} 16.11 00:45:45 [Server] INFO at java.lang.invoke.InnerClassLambdaMetafactory.buildCallSite(InnerClassLambdaMetafactory.java:228) ~[?:?] {} 16.11 00:45:45 [Server] INFO at java.lang.invoke.LambdaMetafactory.metafactory(LambdaMetafactory.java:341) ~[?:?] {re:mixin} 16.11 00:45:45 [Server] INFO at java.lang.invoke.BootstrapMethodInvoker.invoke(BootstrapMethodInvoker.java:134) ~[?:?] {} 16.11 00:45:45 [Server] INFO at java.lang.invoke.CallSite.makeSite(CallSite.java:315) ~[?:?] {re:mixin} 16.11 00:45:45 [Server] INFO at java.lang.invoke.MethodHandleNatives.linkCallSiteImpl(MethodHandleNatives.java:281) ~[?:?] {} 16.11 00:45:45 [Server] INFO at java.lang.invoke.MethodHandleNatives.linkCallSite(MethodHandleNatives.java:271) ~[?:?] {} 16.11 00:45:45 [Server] INFO at com.obscuria.obscureapi.client.renderer.PatreonLayer$Mode.<clinit>(PatreonLayer.java:55) ~[obscure_api-15.jar%23511!/:com.obscuria] {re:classloading} 16.11 00:45:45 [Server] INFO at com.obscuria.obscureapi.ObscureAPIConfig$Client.<clinit>(ObscureAPIConfig.java:28) ~[obscure_api-15.jar%23511!/:com.obscuria] {re:classloading} 16.11 00:45:45 [Server] INFO at com.obscuria.obscureapi.ObscureAPIConfig.register(ObscureAPIConfig.java:46) ~[obscure_api-15.jar%23511!/:com.obscuria] {re:classloading} 16.11 00:45:45 [Server] INFO at com.obscuria.obscureapi.ObscureAPI.<init>(ObscureAPI.java:69) ~[obscure_api-15.jar%23511!/:com.obscuria] {re:classloading} 16.11 00:45:45 [Server] INFO at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {} 16.11 00:45:45 [Server] INFO at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {} 16.11 00:45:45 [Server] INFO at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {} 16.11 00:45:45 [Server] INFO at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:500) ~[?:?] {} 16.11 00:45:45 [Server] INFO at java.lang.reflect.Constructor.newInstance(Constructor.java:481) ~[?:?] {} 16.11 00:45:45 [Server] INFO at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:77) ~[javafmllanguage-1.20.1-47.3.12.jar%23591!/:?] {} 16.11 00:45:45 [Server] INFO at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:124) ~[fmlcore-1.20.1-47.3.12.jar%23590!/:?] {} 16.11 00:45:45 [Server] INFO at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {} 16.11 00:45:45 [Server] INFO at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {} 16.11 00:45:45 [Server] INFO at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {} 16.11 00:45:45 [Server] INFO at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {} 16.11 00:45:45 [Server] INFO at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {re:mixin,re:computing_frames} 16.11 00:45:45 [Server] INFO at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {re:mixin,re:computing_frames} 16.11 00:45:45 [Server] INFO at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {re:mixin} 16.11 00:45:45 [Server] modloading-worker-0/ERROR [ne.mi.fm.lo.RuntimeDistCleaner/DISTXFORM]: Attempted to load class com/obscuria/obscureapi/client/renderer/PatreonLayer for invalid dist DEDICATED_SERVER 16.11 00:45:45 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id artifacts:networking_channel/42a7ad70b1cc371599a0eff744096b8a 16.11 00:45:45 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id artifacts:networking_channel/74a5e841822a3a87854ae896a33430d6 16.11 00:45:45 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id artifacts:networking_channel/eb3d1e2748533430848cadf0f37c7e9c 16.11 00:45:45 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id artifacts:networking_channel/91c8520f19f93b3e8b6a727568e194ab 16.11 00:45:45 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id artifacts:networking_channel/8c2784d778293fd482ed84b8aa5fedb9 16.11 00:45:45 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id artifacts:networking_channel/ea038224ea783d40b2863f52239e2604 16.11 00:45:45 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id artifacts:networking_channel/97ad64b7ecaf33209991c4f031501a58 16.11 00:45:45 [Server] modloading-worker-0/INFO [co.sc.ne.mo.FarmersDelightCompat/]: Setting up compat for Farmers Delight 16.11 00:45:45 [Server] INFO Ocean's Delight Found! 16.11 00:45:45 [Server] INFO Crabber's Delight Found! 16.11 00:45:45 [Server] modloading-worker-0/INFO [azurelib/FileWatching]: Registered azurelib config for auto-sync function 16.11 00:45:45 [Server] modloading-worker-0/INFO [coroutil/]: forge loader environment detected 16.11 00:45:45 [Server] modloading-worker-0/INFO [simplyswords/]: Registering Eldritch End compat Items for simplyswords 16.11 00:45:45 [Server] INFO /config 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Discovered 164 modules to load. 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Abacus... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Adjustable Chat... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Ambient Discs... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Ancient Tomes... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Ancient Wood... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Armed Armor Stands... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Auto Walk Keybind... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Automatic Recipe Unlock... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Automatic Tool Restock... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Azalea Wood... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Back Button Keybind... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Backpack... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Beacon Redirection... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Better Elytra Rocket... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Big Stone Clusters... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Blossom Trees... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Bottled Cloud... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Buckets Show Inhabitants... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Camera... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Campfires Boost Elytra... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Celebratory Lamps... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Chains Connect Blocks... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Chest Searching... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Chorus Vegetation... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Chute... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Climate Control Remover... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Color Runes... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Compasses Work Everywhere... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Compressed Blocks... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Coral On Cactus... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Corundum... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Crabs... 16.11 00:45:46 [Server] modloading-worker-0/ERROR [zeta/]: Client event interface org.violetmoon.zeta.client.event.load.ZClientSetup was found in a non client only class! 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Crafter... 16.11 00:45:46 [Server] modloading-worker-0/ERROR [zeta/]: Client event interface org.violetmoon.zeta.client.event.load.ZClientSetup was found in a non client only class! 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Crate... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Diamond Repair... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Dispensers Place Blocks... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Double Door Opening... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Dragon Scales... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Duskbound Blocks... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Dyeable Item Frames... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Easy Transfering... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Elytra Indicator... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Emotes... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Enchantment Predicates... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Enchantments Begone... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Ender Watcher... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Endermosh Music Disc... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Enhanced Ladders... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Expanded Item Interactions... 16.11 00:45:46 [Server] modloading-worker-0/ERROR [zeta/]: Client event interface org.violetmoon.zeta.client.event.load.ZClientSetup was found in a non client only class! 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Fairy Rings... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Fallen Logs... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Feeding Trough... 16.11 00:45:46 [Server] modloading-worker-0/ERROR [zeta/]: Client event interface org.violetmoon.zeta.client.event.load.ZClientSetup was found in a non client only class! 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Forgotten... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Foxhound... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Framed Glass... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Game Nerfs... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Glass Item Frame... 16.11 00:45:46 [Server] modloading-worker-0/ERROR [zeta/]: Client event interface org.violetmoon.zeta.client.event.load.ZClientSetup was found in a non client only class! 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Glass Shard... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Glimmering Weald... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Gold Bars... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Gold Tools Have Fortune... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Grab Chickens... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Grate... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Gravisand... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Greener Grass... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Hedges... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Hoe Harvesting... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Hollow Logs... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Horses Swim... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Hotbar Changer... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Improved Sponges... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Improved Tooltips... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Industrial Palette... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Inventory Sorting... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Iron Rod... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Item Sharing... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Japanese Palette... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Leaf Carpet... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Lock Rotation... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Long Range Pick Block... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Magma Keeps Concrete Powder... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Magnets... 16.11 00:45:46 [Server] modloading-worker-0/ERROR [zeta/]: Client event interface org.violetmoon.zeta.client.event.load.ZClientSetup was found in a non client only class! 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Map Washing... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Matrix Enchanting... 16.11 00:45:46 [Server] modloading-worker-0/ERROR [zeta/]: Client event interface org.violetmoon.zeta.client.event.load.ZClientSetup was found in a non client only class! 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Metal Buttons... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Microcrafting Helper... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Midori... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Monster Box... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module More Banner Layers... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module More Brick Types... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module More Mud Blocks... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module More Note Block Sounds... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module More Potted Plants... 16.11 00:45:46 [Server] modloading-worker-0/ERROR [zeta/]: Client event interface org.violetmoon.zeta.client.event.load.ZClientSetup was found in a non client only class! 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module More Villagers... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Narrator Readout... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Nether Brick Fence Gate... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Nether Obsidian Spikes... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module New Stone Types... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module No Durability On Cosmetics... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module No More Lava Pockets... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Obsidian Plate... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Overlay Shader... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Parrot Eggs... 16.11 00:45:46 [Server] modloading-worker-0/ERROR [zeta/]: Client event interface org.violetmoon.zeta.client.event.load.ZClientSetup was found in a non client only class! 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Pat The Dogs... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Pathfinder Maps... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Permafrost... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Petals On Water... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Pickarang... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Pig Litters... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Pipes... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Pistons Move Tile Entities... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Poison Potato Usage... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Quick Armor Swapping... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Rainbow Lamps... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Raw Metal Bricks... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Reacharound Placing... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Redstone Randomizer... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Renewable Spore Blossoms... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Replace Scaffolding... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Rope... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Safer Creatures... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Seed Pouch... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Shear Vines... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Shiba... 16.11 00:45:46 [Server] modloading-worker-0/ERROR [zeta/]: Client event interface org.violetmoon.zeta.client.event.load.ZClientSetup was found in a non client only class! 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Shingles... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Shulker Packing... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Simple Harvest... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Skull Pikes... 16.11 00:45:46 [Server] modloading-worker-0/ERROR [zeta/]: Client event interface org.violetmoon.zeta.client.event.load.ZClientSetup was found in a non client only class! 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Slabs To Blocks... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Slime In A Bucket... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Slimes To Magma Cubes... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Snow Golem Player Heads... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Soul Candles... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Soul Sandstone... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Spawner Replacer... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Spiral Spires... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Stonelings... 16.11 00:45:46 [Server] modloading-worker-0/ERROR [zeta/]: Client event interface org.violetmoon.zeta.client.event.load.ZClientSetup was found in a non client only class! 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Stools... 16.11 00:45:46 [Server] modloading-worker-0/ERROR [zeta/]: Client event interface org.violetmoon.zeta.client.event.load.ZClientSetup was found in a non client only class! 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Sturdy Stone... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Thatch... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Tiny Potato... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Torch Arrow... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Toretoise... 16.11 00:45:46 [Server] modloading-worker-0/ERROR [zeta/]: Client event interface org.violetmoon.zeta.client.event.load.ZClientSetup was found in a non client only class! 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Totem Of Holding... 16.11 00:45:46 [Server] modloading-worker-0/INFO [quark-zeta/]: Constructing module Trowel... 16.11 00:45:47 [Multicraft] Skipped 600 lines due to rate limit (160/s) 16.11 00:45:49 [Multicraft] Server shut down (starting) 16.11 00:45:49 [Multicraft] Restarting crashed server in 300 seconds 16.11 00:45:49 [Multicraft] Server stopped
    • when trying to play on latest versions of star technology, I got the error as following: Failed to download file. Name: forge-47.3.10.jar URL: https://s3.amazonaws.com/Minecraft.Download/versions/forge-47.3.10/forge-47.3.10.jar Filename on disk: forge-47.3.10.jar Path: D:\Elliot\curseforge\minecraft\Install\versions\forge-47.3.10\forge-47.3.10.jar Exists: Nonexistent But after reinstalling the modpack, I no longer got the error.  
    • So, I run a forge server 1.21.1 on my old laptop and everything was working fine until today that i decided to download Minecraft. Now u may ask, why u host a server if don’t have Minecraft ? Well, I play through a tunnel on my pc. Anyway, I installed Minecraft and now the server won’t start. It’s like it’s installing everything for the first time again, but in the end, it just don’t start properly. What should I do?
  • Topics

×
×
  • Create New...

Important Information

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