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.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • The game crashed whilst rendering item Error: java.lang.IncompatibleClassChangeError: Expected static method codechicken.lib.render.CCRenderState.reset()V              ---- Minecraft Crash Report ---- // You should try our sister game, Minceraft! Time: 10/5/24 7:20 PM Description: Rendering item java.lang.IncompatibleClassChangeError: Expected static method codechicken.lib.render.CCRenderState.reset()V     at iguanaman.iguanatweakstconstruct.modcompat.fmp.IguanaItemSawRenderer.renderItem(IguanaItemSawRenderer.java:50)     at net.minecraftforge.client.ForgeHooksClient.renderInventoryItem(ForgeHooksClient.java:183)     at net.minecraft.client.renderer.entity.RenderItem.func_82406_b(RenderItem.java:563)     at codechicken.nei.guihook.GuiContainerManager.drawSlotItem(GuiContainerManager.java:489)     at net.minecraft.client.gui.inventory.GuiContainer.func_146977_a(GuiContainer.java:270)     at net.minecraft.client.gui.inventory.GuiContainer.func_73863_a(GuiContainer.java:99)     at net.minecraft.client.renderer.InventoryEffectRenderer.func_73863_a(InventoryEffectRenderer.java:38)     at net.minecraft.client.gui.inventory.GuiContainerCreative.func_73863_a(GuiContainerCreative.java:638)     at net.minecraft.client.renderer.EntityRenderer.func_78480_b(EntityRenderer.java:1400)     at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:1001)     at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:898)     at net.minecraft.client.main.Main.main(SourceFile:148)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Stacktrace:     at iguanaman.iguanatweakstconstruct.modcompat.fmp.IguanaItemSawRenderer.renderItem(IguanaItemSawRenderer.java:50)     at net.minecraftforge.client.ForgeHooksClient.renderInventoryItem(ForgeHooksClient.java:183)     at net.minecraft.client.renderer.entity.RenderItem.func_82406_b(RenderItem.java:563) -- Item being rendered -- Details:     Item Type: codechicken.microblock.ItemSaw@228151e5     Item Aux: 0     Item NBT: null     Item Foil: false Stacktrace:     at codechicken.nei.guihook.GuiContainerManager.drawSlotItem(GuiContainerManager.java:489)     at net.minecraft.client.gui.inventory.GuiContainer.func_146977_a(GuiContainer.java:270)     at net.minecraft.client.gui.inventory.GuiContainer.func_73863_a(GuiContainer.java:99)     at net.minecraft.client.renderer.InventoryEffectRenderer.func_73863_a(InventoryEffectRenderer.java:38)     at net.minecraft.client.gui.inventory.GuiContainerCreative.func_73863_a(GuiContainerCreative.java:638)     at net.minecraft.client.renderer.EntityRenderer.func_78480_b(EntityRenderer.java:1400) -- Screen render details -- Details:     Screen name: net.minecraft.client.gui.inventory.GuiContainerCreative     Mouse location: Scaled: (276, 312). Absolute: (553, 335)     Screen size: Scaled: (640, 480). Absolute: (1280, 960). Scale factor of 2 -- Affected level -- Details:     Level name: MpServer     All players: 1 total; [GCEntityClientPlayerMP['Mateus_ruby5'/67878, l='MpServer', x=-1029.13, y=72.33, z=1554.00]]     Chunk stats: MultiplayerChunkCache: 234, 243     Level seed: 0     Level generator: ID 04 - BIOMESOP, ver 0. Features enabled: false     Level generator options:      Level spawn location: World: (-552,64,916), Chunk: (at 8,4,4 in -35,57; contains blocks -560,0,912 to -545,255,927), Region: (-2,1; contains chunks -64,32 to -33,63, blocks -1024,0,512 to -513,255,1023)     Level time: 21063 game time, 21063 day time     Level dimension: 0     Level storage version: 0x00000 - Unknown?     Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)     Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false     Forced entities: 607 total; [MoCEntityDuck['Duck'/126977, l='MpServer', x=-1079.50, y=65.00, z=1571.50], MoCEntityDeer['Deer'/114691, l='MpServer', x=-915.50, y=72.00, z=1460.50], EntityChicken['Chicken'/126979, l='MpServer', x=-1034.47, y=66.00, z=1561.44], EntityChicken['Chicken'/126981, l='MpServer', x=-1036.47, y=65.00, z=1570.47], MoCEntitySnake['Snake'/114695, l='MpServer', x=-912.00, y=73.00, z=1452.50], EntityChicken['Chicken'/126983, l='MpServer', x=-1032.59, y=65.00, z=1570.50], MoCEntityBigCat['BigCat'/114697, l='MpServer', x=-1126.50, y=64.00, z=1457.50], EntityChicken['Chicken'/126985, l='MpServer', x=-1037.22, y=65.00, z=1571.69], MoCEntityTurkey['Turkey'/126987, l='MpServer', x=-1063.31, y=64.00, z=1561.91], MoCEntityTurkey['Turkey'/126989, l='MpServer', x=-1061.50, y=64.00, z=1563.50], EntityItem['item.item.dyePowder.black'/135182, l='MpServer', x=-1091.94, y=17.13, z=1527.47], VengeanceSpirit['Vengeance Spirit'/135180, l='MpServer', x=-1089.44, y=38.00, z=1526.50], EntityItem['item.item.ItemSquid'/135184, l='MpServer', x=-1089.97, y=33.13, z=1528.28], MoCEntityMouse['Mouse'/114706, l='MpServer', x=-1031.91, y=74.00, z=1457.41], MoCEntitySnake['Snake'/126994, l='MpServer', x=-1060.34, y=65.00, z=1564.16], EntitySkeleton['Skeleton'/124949, l='MpServer', x=-1068.50, y=66.00, z=1492.50], EntityItem['item.tile.mushroom11'/133142, l='MpServer', x=-1057.94, y=8.13, z=1574.72], MoCEntityBear['Bear'/114708, l='MpServer', x=-1036.81, y=74.00, z=1439.81], EntityZombie['Zombie'/124951, l='MpServer', x=-1074.50, y=66.00, z=1494.50], EntitySpider['Spider'/137236, l='MpServer', x=-2.19, y=-61.31, z=16.85], MoCEntitySnake['Snake'/127000, l='MpServer', x=-1058.16, y=65.00, z=1566.22], EntitySkeleton['Skeleton'/124955, l='MpServer', x=-1066.50, y=25.00, z=1524.50], VengeanceSpirit['Vengeance Spirit'/137244, l='MpServer', x=-990.28, y=12.00, z=1534.72], MoCEntityOstrich['Ostrich'/127013, l='MpServer', x=-990.09, y=69.00, z=1578.72], MoCEntityMouse['Mouse'/127015, l='MpServer', x=-983.50, y=70.00, z=1569.50], EntitySheep['Sheep'/127017, l='MpServer', x=-969.22, y=69.00, z=1566.22], EntitySheep['Sheep'/127019, l='MpServer', x=-970.25, y=69.00, z=1567.84], MoCEntityBear['Bear'/114733, l='MpServer', x=-1023.81, y=72.00, z=1463.06], EntitySheep['Sheep'/127021, l='MpServer', x=-972.88, y=69.00, z=1566.47], EntitySheep['Sheep'/127023, l='MpServer', x=-971.69, y=69.00, z=1567.94], MoCEntityTurkey['Turkey'/114744, l='MpServer', x=-1049.50, y=72.00, z=1462.88], MoCEntityTurkey['Turkey'/114746, l='MpServer', x=-1055.44, y=71.00, z=1464.66], EntityZombie['Zombie'/137280, l='MpServer', x=9.86, y=-60.66, z=16.34], MoCEntityHorse['WildHorse'/127057, l='MpServer', x=-932.81, y=63.00, z=1569.50], MoCEntityHorse['WildHorse'/127061, l='MpServer', x=-934.50, y=63.00, z=1569.50], MoCEntityHorse['WildHorse'/127069, l='MpServer', x=-934.50, y=63.00, z=1572.50], EntityItem['item.item.string'/131166, l='MpServer', x=-1028.69, y=20.13, z=1614.72], EntityItem['item.item.string'/131167, l='MpServer', x=-1038.88, y=19.13, z=1582.22], MoCEntityHorse['WildHorse'/127073, l='MpServer', x=-932.50, y=63.00, z=1571.50], EntityItem['item.item.string'/131168, l='MpServer', x=-1038.88, y=19.13, z=1578.13], EntityLavaMonster['Lava Monster'/143460, l='MpServer', x=-1106.78, y=3.05, z=1565.50], MoCEntityBunny['Bunny'/127078, l='MpServer', x=-928.50, y=64.00, z=1567.50], MoCEntityBunny['Bunny'/127080, l='MpServer', x=-931.03, y=64.00, z=1569.28], MoCEntityBunny['Bunny'/127082, l='MpServer', x=-932.50, y=63.00, z=1566.50], EntityZombie['Zombie'/137328, l='MpServer', x=3.89, y=-58.22, z=25.04], EntityLavaMonster['Lava Monster'/137352, l='MpServer', x=-1102.50, y=3.30, z=1579.94], EntityItem['item.tile.gravel'/131219, l='MpServer', x=-1027.13, y=8.13, z=1597.13], EntityZombie['Zombie'/137363, l='MpServer', x=9.90, y=-57.90, z=24.85], EntityItem['item.tile.gravel'/131235, l='MpServer', x=-1041.94, y=15.13, z=1566.88], EntityZombie['Zombie'/137414, l='MpServer', x=15.96, y=-56.92, z=24.26], EntitySkeleton['Skeleton'/137412, l='MpServer', x=29.05, y=-56.84, z=3.10], EntityLavaMonster['Lava Monster'/139494, l='MpServer', x=-1072.50, y=60.18, z=1558.03], EntityItem['item.tile.gravel'/131301, l='MpServer', x=-993.16, y=20.13, z=1570.09], MoCEntityBoar['Boar'/119018, l='MpServer', x=-902.50, y=68.00, z=1497.50], MoCEntityBoar['Boar'/119020, l='MpServer', x=-903.50, y=67.00, z=1496.50], MoCEntityElephant['Elephant'/135410, l='MpServer', x=-980.44, y=62.17, z=1646.16], EntityHorse['Horse'/129264, l='MpServer', x=-1109.50, y=64.00, z=1594.50], MoCEntityBunny['Bunny'/129266, l='MpServer', x=-1094.50, y=64.00, z=1599.50], EntitySpider['Spider'/135414, l='MpServer', x=-12.53, y=-47.53, z=40.79], MoCEntityBunny['Bunny'/129268, l='MpServer', x=-1089.56, y=64.00, z=1600.63], MoCEntityBunny['Bunny'/129270, l='MpServer', x=-1095.50, y=64.00, z=1602.50], EntityItem['item.item.string'/131327, l='MpServer', x=-1043.34, y=18.13, z=1584.88], EntityItem['item.tile.actuallyadditions.blockBlackLotus'/127230, l='MpServer', x=-1088.41, y=65.13, z=1566.53], MoCEntityMouse['Mouse'/129281, l='MpServer', x=-1072.72, y=63.00, z=1600.50], MoCEntityMouse['Mouse'/129283, l='MpServer', x=-1073.19, y=63.00, z=1600.50], EntityItem['item.item.gysahl_seeds'/141568, l='MpServer', x=-969.25, y=65.13, z=1527.13], EntityCow['Cow'/129285, l='MpServer', x=-1064.50, y=63.00, z=1596.50], EntityCow['Cow'/129287, l='MpServer', x=-1067.78, y=63.00, z=1597.50], EntityCow['Cow'/129289, l='MpServer', x=-1074.03, y=65.00, z=1588.09], MoCEntityBird['Bird'/135434, l='MpServer', x=-941.50, y=63.00, z=1642.50], EntityCow['Cow'/129291, l='MpServer', x=-1066.19, y=63.00, z=1597.50], MoCEntitySnake['Snake'/135432, l='MpServer', x=-951.78, y=68.00, z=1641.47], MoCEntityMole['Mole'/129293, l='MpServer', x=-1075.50, y=64.00, z=1594.50], MoCEntityBird['Bird'/135438, l='MpServer', x=-943.22, y=65.00, z=1647.47], MoCEntityBird['Bird'/135436, l='MpServer', x=-942.50, y=64.00, z=1645.50], MoCEntityCricket['Cricket'/131350, l='MpServer', x=-1085.50, y=71.00, z=1472.50], MoCEntityButterfly['ButterFly'/131354, l='MpServer', x=-1082.50, y=63.00, z=1601.50], MoCEntityButterfly['ButterFly'/131352, l='MpServer', x=-1081.50, y=63.00, z=1605.50], EntityItem['item.tile.stonebrick'/127261, l='MpServer', x=-1083.94, y=32.13, z=1565.81], MoCEntityDragonfly['DragonFly'/131356, l='MpServer', x=-986.59, y=67.00, z=1510.44], EntityItem['item.tile.stonebrick'/127263, l='MpServer', x=-1085.53, y=31.13, z=1561.94], EntityItem['item.tile.stonebrick'/127262, l='MpServer', x=-1083.13, y=38.13, z=1560.91], EntityItem['item.tile.stonebrick'/127264, l='MpServer', x=-1084.19, y=31.13, z=1564.78], MoCEntitySnail['Snail'/131360, l='MpServer', x=-980.50, y=67.00, z=1514.50], EntityItem['item.tile.stonebrick'/127266, l='MpServer', x=-1083.13, y=32.13, z=1565.97], MoCEntityGoat['Goat'/129322, l='MpServer', x=-1021.59, y=64.00, z=1603.66], MoCEntityBear['Bear'/129328, l='MpServer', x=-1016.50, y=64.00, z=1603.50], EntityItem['item.item.feather'/137523, l='MpServer', x=-969.84, y=67.13, z=1498.31], VengeanceSpirit['Vengeance Spirit'/137521, l='MpServer', x=-970.84, y=66.00, z=1495.34], EntityItem['item.item.chickenRaw'/137524, l='MpServer', x=-970.75, y=67.13, z=1498.63], MoCEntityTurkey['Turkey'/135484, l='MpServer', x=-912.47, y=64.00, z=1644.22], EntityBat['Bat'/131392, l='MpServer', x=-958.53, y=30.00, z=1574.66], MoCEntityFirefly['Firefly'/131398, l='MpServer', x=-1070.53, y=64.00, z=1508.47], MoCEntityFirefly['Firefly'/131396, l='MpServer', x=-1071.50, y=64.00, z=1506.50], MoCEntityFirefly['Firefly'/131402, l='MpServer', x=-1070.34, y=64.00, z=1508.56], MoCEntityFirefly['Firefly'/131400, l='MpServer', x=-1066.50, y=64.00, z=1508.50], MoCEntityFox['Fox'/115020, l='MpServer', x=-1135.50, y=62.31, z=1462.50], MoCEntityTurkey['Turkey'/129358, l='MpServer', x=-984.25, y=67.00, z=1589.56], MoCEntityTurkey['Turkey'/129360, l='MpServer', x=-985.38, y=67.00, z=1591.09], MoCEntityEnt['Ent'/129362, l='MpServer', x=-995.22, y=66.00, z=1600.25], MoCEntityFirefly['Firefly'/131412, l='MpServer', x=-914.72, y=68.00, z=1559.44], MoCEntitySnake['Snake'/129366, l='MpServer', x=-999.50, y=66.00, z=1592.50], EntityHorse['Horse'/129383, l='MpServer', x=-967.81, y=70.00, z=1601.00], EntitySkeleton['Skeleton'/135525, l='MpServer', x=6.48, y=-45.53, z=44.11], EntitySquid['Squid'/131434, l='MpServer', x=-1096.25, y=31.00, z=1524.06], EntityItem['item.tile.gravel'/141675, l='MpServer', x=-1026.47, y=20.13, z=1613.50], EntityHorse['Horse'/129387, l='MpServer', x=-972.50, y=69.00, z=1596.50], EntityHorse['Horse'/129389, l='MpServer', x=-974.50, y=69.00, z=1595.50], EntityHorse['Horse'/129391, l='MpServer', x=-972.50, y=69.00, z=1593.50], MoCEntityBoar['Boar'/129393, l='MpServer', x=-975.78, y=68.00, z=1592.50], MoCEntityBoar['Boar'/129395, l='MpServer', x=-974.47, y=68.00, z=1592.50], EntityZombie['Zombie'/135547, l='MpServer', x=-1046.41, y=67.00, z=1476.94], EntityLavaMonster['Lava Monster'/125313, l='MpServer', x=-1022.50, y=29.24, z=1527.50], EntitySpider['Spider'/135557, l='MpServer', x=-1040.78, y=66.00, z=1487.13], EntityCreeper['Creeper'/127384, l='MpServer', x=-1067.50, y=20.00, z=1531.50], EntityCreeper['Creeper'/127386, l='MpServer', x=-1065.50, y=20.00, z=1531.50], EntityHuman['sanandreasMC'/135615, l='MpServer', x=-955.50, y=30.00, z=1567.50], MoCEntityOgre['Ogre'/135619, l='MpServer', x=-959.38, y=30.00, z=1565.22], EntityHuman['powercrystals'/135617, l='MpServer', x=-956.66, y=30.00, z=1567.34], EntityHuman['amadornes'/135621, l='MpServer', x=-958.50, y=30.00, z=1561.50], EntityLavaMonster['Lava Monster'/137669, l='MpServer', x=-1064.50, y=60.38, z=1559.50], MoCEntityBoar['Boar'/129490, l='MpServer', x=-1038.50, y=63.00, z=1609.47], MoCEntityMouse['Mouse'/129492, l='MpServer', x=-1044.91, y=63.00, z=1610.53], EntitySkeleton['Skeleton'/137684, l='MpServer', x=-29.81, y=-43.84, z=35.67], EntityChicken['Chicken'/129512, l='MpServer', x=-1054.50, y=63.00, z=1611.50], EntityChicken['Chicken'/129518, l='MpServer', x=-1054.50, y=63.00, z=1610.50], EntityChicken['Chicken'/129520, l='MpServer', x=-1053.50, y=63.00, z=1610.50], EntityChicken['Chicken'/129522, l='MpServer', x=-1051.50, y=63.00, z=1610.50], MoCEntityTurkey['Turkey'/129534, l='MpServer', x=-955.50, y=69.00, z=1595.63], MoCEntityGoat['Goat'/129542, l='MpServer', x=-952.94, y=69.00, z=1601.41], MoCEntityGoat['Goat'/129544, l='MpServer', x=-952.88, y=69.00, z=1605.66], MoCEntityGoat['Goat'/129546, l='MpServer', x=-960.84, y=70.00, z=1596.63], MoCEntityGoat['Goat'/129548, l='MpServer', x=-963.84, y=70.00, z=1595.66], MoCEntityGoat['Goat'/129550, l='MpServer', x=-960.50, y=70.00, z=1593.50], VengeanceSpirit['Vengeance Spirit'/139838, l='MpServer', x=-1100.56, y=17.00, z=1549.59], EntityItem['item.item.redstone'/129601, l='MpServer', x=-994.16, y=20.13, z=1568.69], EntityItem['item.item.redstone'/129600, l='MpServer', x=-995.88, y=15.13, z=1570.13], VengeanceSpirit['Vengeance Spirit'/139843, l='MpServer', x=-1101.66, y=38.00, z=1551.69], EntityItem['item.item.redstone'/129603, l='MpServer', x=-993.88, y=15.13, z=1568.81], EntityItem['item.tile.pressurePlate'/129605, l='MpServer', x=-1003.19, y=17.13, z=1602.63], EntityItem['item.tile.notGate'/129604, l='MpServer', x=-989.13, y=14.13, z=1568.88], EntityItem['item.item.redstone'/129607, l='MpServer', x=-997.13, y=18.13, z=1599.13], EntityDepthsGhoul['Dr. Orange'/111180, l='MpServer', x=-32.28, y=-26.62, z=-48.18], EntityItem['item.item.string'/131696, l='MpServer', x=-1027.31, y=19.13, z=1614.84], EntityItem['item.item.string'/131700, l='MpServer', x=-1044.75, y=18.13, z=1582.13], EntityLavaMonster['Lava Monster'/125573, l='MpServer', x=-998.75, y=3.24, z=1481.50], MoCEntityDuck['Duck'/113287, l='MpServer', x=-910.50, y=76.00, z=1426.50], VengeanceSpirit['Vengeance Spirit'/135822, l='MpServer', x=-1086.53, y=33.00, z=1552.47], EntityItem['item.item.seeds'/135821, l='MpServer', x=-1052.66, y=61.13, z=1507.88], EntityItem['item.item.string'/131734, l='MpServer', x=-1083.19, y=12.13, z=1611.94], MoCEntityTurkey['Turkey'/117411, l='MpServer', x=-1135.50, y=64.00, z=1491.50], EntityItem['item.tile.gravel'/144042, l='MpServer', x=-1026.47, y=20.99, z=1615.50], EntityItem['item.tile.gravel'/144041, l='MpServer', x=-1026.50, y=20.99, z=1614.47], MoCEntityFox['Fox'/117422, l='MpServer', x=-1116.50, y=65.00, z=1482.50], EntityItem['item.item.string'/131762, l='MpServer', x=-1040.13, y=18.13, z=1580.13], MoCEntityGoat['Goat'/113329, l='MpServer', x=-925.28, y=76.00, z=1430.53], MoCEntityHorse['WildHorse'/129714, l='MpServer', x=-927.50, y=64.00, z=1593.50], MoCEntityGoat['Goat'/113333, l='MpServer', x=-922.50, y=76.00, z=1430.50], MoCEntityBird['Bird'/117428, l='MpServer', x=-1119.50, y=65.00, z=1484.50], MoCEntityGoat['Goat'/113335, l='MpServer', x=-929.53, y=76.00, z=1433.34], MoCEntityBird['Bird'/117430, l='MpServer', x=-1118.50, y=65.00, z=1484.50], EntitySheep['Sheep'/117432, l='MpServer', x=-1088.47, y=66.00, z=1491.47], EntitySheep['Sheep'/117434, l='MpServer', x=-1087.03, y=67.00, z=1491.50], EntitySheep['Sheep'/117436, l='MpServer', x=-1090.25, y=66.00, z=1492.78], EntitySheep['Sheep'/117438, l='MpServer', x=-1089.13, y=66.00, z=1492.72], EntityPig['Pig'/117442, l='MpServer', x=-1092.78, y=66.00, z=1491.09], MoCEntityHorse['WildHorse'/129730, l='MpServer', x=-923.59, y=64.00, z=1595.66], EntityPig['Pig'/117444, l='MpServer', x=-1091.03, y=66.00, z=1489.47], MoCEntityHorse['WildHorse'/129732, l='MpServer', x=-925.50, y=64.00, z=1596.50], EntityPig['Pig'/117446, l='MpServer', x=-1089.97, y=66.00, z=1491.34], EntityPig['Pig'/117448, l='MpServer', x=-1092.66, y=66.00, z=1489.19], MoCEntityEnt['Ent'/113355, l='MpServer', x=-988.97, y=71.00, z=1432.75], MoCEntityOstrich['Ostrich'/129741, l='MpServer', x=-913.50, y=64.00, z=1594.50], EntityLavaMonster['Lava Monster'/131796, l='MpServer', x=-1059.50, y=2.44, z=1569.50], MoCEntityBoar['Boar'/117464, l='MpServer', x=-1076.78, y=68.00, z=1485.78], MoCEntityBoar['Boar'/117466, l='MpServer', x=-1075.19, y=68.00, z=1484.47], EntityHorse['Horse'/117470, l='MpServer', x=-1056.50, y=65.00, z=1489.50], EntityHorse['Horse'/117472, l='MpServer', x=-1056.94, y=65.00, z=1487.81], EntitySquid['Squid'/133857, l='MpServer', x=-1085.50, y=55.38, z=1518.56], EntityHorse['Horse'/117476, l='MpServer', x=-1061.84, y=66.00, z=1487.38], EntityHorse['Horse'/117481, l='MpServer', x=-1009.91, y=69.00, z=1495.13], EntityLavaMonster['Lava Monster'/137976, l='MpServer', x=-1107.91, y=3.24, z=1565.50], MoCEntityBird['Bird'/113404, l='MpServer', x=-1082.34, y=72.00, z=1428.34], MoCEntityMouse['Mouse'/117507, l='MpServer', x=-1017.53, y=69.00, z=1497.72], MoCEntityMouse['Mouse'/117509, l='MpServer', x=-1011.56, y=68.00, z=1512.13], EntityCow['Cow'/117511, l='MpServer', x=-1015.25, y=65.00, z=1484.50], EntityCow['Cow'/117513, l='MpServer', x=-1004.22, y=67.00, z=1483.66], EntityCow['Cow'/117515, l='MpServer', x=-997.06, y=67.00, z=1484.97], EntityCow['Cow'/117517, l='MpServer', x=-1013.47, y=65.00, z=1480.69], MoCEntityBird['Bird'/117519, l='MpServer', x=-1001.25, y=69.00, z=1489.28], MoCEntityBird['Bird'/117521, l='MpServer', x=-998.88, y=68.00, z=1488.41], MoCEntityBird['Bird'/117523, l='MpServer', x=-994.75, y=67.00, z=1488.00], EntityItem['item.item.string'/131857, l='MpServer', x=-1027.34, y=18.13, z=1615.81], MoCEntityFox['Fox'/117527, l='MpServer', x=-995.19, y=68.00, z=1496.22], MoCEntityFox['Fox'/117530, l='MpServer', x=-925.50, y=72.00, z=1492.50], EntityItem['item.item.string'/131872, l='MpServer', x=-1040.88, y=18.13, z=1580.13], EntityItem['item.item.barley.seed'/133958, l='MpServer', x=-1055.25, y=67.13, z=1532.97], EntityItem['item.tile.mushroom15'/131918, l='MpServer', x=-993.63, y=19.13, z=1603.16], EntityItem['item.item.string'/127843, l='MpServer', x=-978.81, y=20.13, z=1550.16], EntityItem['item.item.string'/127842, l='MpServer', x=-981.16, y=19.13, z=1547.09], EntityItem['item.item.string'/131937, l='MpServer', x=-1042.66, y=18.13, z=1583.13], EntityLavaMonster['Lava Monster'/140157, l='MpServer', x=-962.50, y=43.97, z=1546.50], GCEntityClientPlayerMP['Mateus_ruby5'/67878, l='MpServer', x=-1029.13, y=72.33, z=1554.00], EntityItem['item.item.string'/131978, l='MpServer', x=-1015.84, y=20.13, z=1608.47], EntityItem['item.tile.caveplant0'/131977, l='MpServer', x=-1017.16, y=22.13, z=1610.13], EntityItem['item.item.agricraft:seedPotato'/138128, l='MpServer', x=-1018.25, y=69.13, z=1501.19], EntityItem['item.tile.gravel'/138129, l='MpServer', x=-1042.50, y=21.13, z=1580.50], EntityItem['item.tile.mushroom14'/132007, l='MpServer', x=-1004.38, y=6.13, z=1491.22], EntityItem['item.tile.gravel'/138158, l='MpServer', x=-1041.50, y=20.13, z=1576.53], EntityItem['item.tile.notGate'/129990, l='MpServer', x=-998.13, y=20.13, z=1587.13], MoCEntityRaccoon['Raccoon'/117721, l='MpServer', x=-1104.56, y=59.00, z=1510.41], MoCEntityRaccoon['Raccoon'/117723, l='MpServer', x=-1109.50, y=64.00, z=1507.50], MoCEntityMouse['Mouse'/117727, l='MpServer', x=-1109.50, y=62.00, z=1509.50], MoCEntityBunny['Bunny'/117729, l='MpServer', x=-1090.50, y=63.00, z=1509.50], MoCEntityBunny['Bunny'/117731, l='MpServer', x=-1094.50, y=64.00, z=1508.50], MoCEntityMouse['Mouse'/117733, l='MpServer', x=-1068.50, y=64.00, z=1506.50], EntitySkeleton['Skeleton'/136166, l='MpServer', x=-10.69, y=-47.53, z=41.12], MoCEntityMouse['Mouse'/117735, l='MpServer', x=-1069.50, y=64.00, z=1506.50], MoCEntityBoar['Boar'/117741, l='MpServer', x=-1057.59, y=65.00, z=1510.50], MoCEntityBoar['Boar'/117743, l='MpServer', x=-1058.19, y=64.00, z=1507.50], EntitySheep['Sheep'/117745, l='MpServer', x=-1056.13, y=65.00, z=1498.84], MoCEntityMouse['Mouse'/125936, l='MpServer', x=-1117.50, y=11.80, z=1555.50], EntityLavaMonster['Lava Monster'/140275, l='MpServer', x=-1054.50, y=2.53, z=1553.50], EntitySheep['Sheep'/117747, l='MpServer', x=-1059.25, y=65.00, z=1502.66], EntitySheep['Sheep'/117749, l='MpServer', x=-1058.03, y=64.00, z=1502.47], EntitySheep['Sheep'/117751, l='MpServer', x=-1059.66, y=64.00, z=1504.03], MoCEntityBigCat['BigCat'/136190, l='MpServer', x=-1025.50, y=64.00, z=1660.50], MoCEntityBigCat['BigCat'/136188, l='MpServer', x=-1023.50, y=64.00, z=1658.50], MoCEntityBoar['Boar'/125954, l='MpServer', x=-1084.50, y=59.00, z=1552.50], MoCEntityBunny['Bunny'/125961, l='MpServer', x=-1070.50, y=65.00, z=1556.50], MoCEntityBunny['Bunny'/125971, l='MpServer', x=-1069.50, y=65.00, z=1552.50], MoCEntityBoar['Boar'/125974, l='MpServer', x=-1051.56, y=64.00, z=1558.22], MoCEntityBoar['Boar'/125976, l='MpServer', x=-1043.34, y=63.00, z=1559.83], MoCEntityDeer['Deer'/115739, l='MpServer', x=-1134.50, y=65.00, z=1473.50], MoCEntityMouse['Mouse'/125979, l='MpServer', x=-1042.08, y=67.00, z=1549.38], MoCEntityDeer['Deer'/115741, l='MpServer', x=-1116.50, y=66.00, z=1474.50], MoCEntityMouse['Mouse'/125981, l='MpServer', x=-1043.56, y=66.00, z=1552.26], MoCEntityDeer['Deer'/115743, l='MpServer', x=-1113.50, y=64.00, z=1478.50], MoCEntitySnake['Snake'/125983, l='MpServer', x=-1029.00, y=67.00, z=1549.50], MoCEntityBigCat['BigCat'/115745, l='MpServer', x=-1100.09, y=71.00, z=1469.63], MoCEntityBigCat['BigCat'/115747, l='MpServer', x=-1101.50, y=69.00, z=1476.50], MoCEntityBunny['Bunny'/136224, l='MpServer', x=-957.50, y=64.00, z=1662.50], MoCEntityBunny['Bunny'/115749, l='MpServer', x=-1104.50, y=69.00, z=1476.50], MoCEntitySnake['Snake'/125989, l='MpServer', x=-1027.16, y=67.00, z=1545.50], MoCEntityBunny['Bunny'/115751, l='MpServer', x=-1103.50, y=68.00, z=1477.50], MoCEntityDeer['Deer'/115753, l='MpServer', x=-1099.22, y=69.00, z=1475.78], MoCEntityBear['Bear'/125993, l='MpServer', x=-1024.63, y=63.74, z=1555.38], MoCEntityGoat['Goat'/134187, l='MpServer', x=-977.16, y=65.00, z=1615.50], MoCEntityDeer['Deer'/115755, l='MpServer', x=-1100.81, y=69.00, z=1474.47], MoCEntityDuck['Duck'/125995, l='MpServer', x=-1031.62, y=65.81, z=1575.40], MoCEntityMouse['Mouse'/125997, l='MpServer', x=-1017.47, y=64.00, z=1567.38], MoCEntityBird['Bird'/136239, l='MpServer', x=-939.50, y=66.00, z=1661.50], MoCEntityMouse['Mouse'/125999, l='MpServer', x=-1026.37, y=65.00, z=1563.62], EntityHorse['Horse'/115759, l='MpServer', x=-1093.50, y=69.00, z=1476.50], EntityItem['item.item.string'/132147, l='MpServer', x=-1025.25, y=20.13, z=1613.31], MoCEntityBird['Bird'/136241, l='MpServer', x=-938.78, y=65.00, z=1660.41], MoCEntityBear['Bear'/126007, l='MpServer', x=-1020.31, y=64.44, z=1554.56], EntityHorse['Horse'/115767, l='MpServer', x=-1095.87, y=69.00, z=1477.13], EntityHorse['Horse'/115769, l='MpServer', x=-1090.03, y=67.00, z=1483.91], EntityHorse['Horse'/115773, l='MpServer', x=-1092.59, y=68.00, z=1479.09], MoCEntityGoat['Goat'/136255, l='MpServer', x=-944.34, y=66.00, z=1661.34], EntityHorse['Horse'/115779, l='MpServer', x=-1093.50, y=70.00, z=1474.50], MoCEntityOstrich['Ostrich'/115781, l='MpServer', x=-1087.50, y=69.00, z=1476.50], MoCEntityBoar['Boar'/128068, l='MpServer', x=-1106.78, y=64.00, z=1577.78], MoCEntityOstrich['Ostrich'/115783, l='MpServer', x=-1079.50, y=71.00, z=1469.50], MoCEntityBoar['Boar'/128070, l='MpServer', x=-1105.19, y=64.00, z=1576.19], MoCEntityBird['Bird'/115787, l='MpServer', x=-1019.69, y=71.00, z=1469.44], MoCEntityBoar['Boar'/126026, l='MpServer', x=-1009.22, y=68.00, z=1572.09], MoCEntityBird['Bird'/115789, l='MpServer', x=-1006.91, y=70.00, z=1473.78], MoCEntityBoar['Boar'/126028, l='MpServer', x=-1028.50, y=65.00, z=1576.25], MoCEntityDuck['Duck'/115791, l='MpServer', x=-984.56, y=67.00, z=1463.13], EntityItem['item.item.agricraft:seedPotato'/126031, l='MpServer', x=-1019.78, y=64.13, z=1561.59], EntityItem['item.item.agricraft:seedPotato'/126030, l='MpServer', x=-1020.56, y=65.13, z=1562.19], MoCEntityOstrich['Ostrich'/115793, l='MpServer', x=-968.50, y=68.00, z=1469.50], MoCEntityBoar['Boar'/128081, l='MpServer', x=-1079.50, y=64.00, z=1590.50], MoCEntityRaccoon['Raccoon'/126032, l='MpServer', x=-1012.28, y=69.00, z=1545.16], MoCEntityKitty['Kitty'/115795, l='MpServer', x=-980.03, y=69.00, z=1467.22], MoCEntityBoar['Boar'/128083, l='MpServer', x=-1079.50, y=65.00, z=1589.50], EntityPig['Pig'/126034, l='MpServer', x=-1002.38, y=72.00, z=1538.47], EntityItem['item.item.agricraft:seedCarrot'/142417, l='MpServer', x=-1052.28, y=61.13, z=1508.31], MoCEntityKitty['Kitty'/115797, l='MpServer', x=-988.38, y=68.00, z=1467.16], MoCEntityTurkey['Turkey'/128085, l='MpServer', x=-1070.75, y=64.00, z=1589.84], EntityPig['Pig'/126036, l='MpServer', x=-1006.86, y=72.00, z=1536.90], EntityHorse['Horse'/128087, l='MpServer', x=-1059.50, y=64.00, z=1577.50], EntityPig['Pig'/126038, l='MpServer', x=-1015.72, y=66.00, z=1548.50], MoCEntitySnake['Snake'/115801, l='MpServer', x=-975.50, y=67.00, z=1475.50], EntityHorse['Horse'/128089, l='MpServer', x=-1061.50, y=64.00, z=1576.50], EntityPig['Pig'/126040, l='MpServer', x=-1001.35, y=72.70, z=1538.47], MoCEntitySnake['Snake'/115805, l='MpServer', x=-977.50, y=67.00, z=1478.50], MoCEntityBunny['Bunny'/115809, l='MpServer', x=-966.00, y=67.00, z=1474.66], EntityHorse['Horse'/128097, l='MpServer', x=-1058.50, y=64.00, z=1579.50], MoCEntityBunny['Bunny'/115811, l='MpServer', x=-967.50, y=67.00, z=1472.50], MoCEntityBunny['Bunny'/115813, l='MpServer', x=-965.50, y=67.00, z=1470.50], EntityPig['Pig'/126053, l='MpServer', x=-970.50, y=71.00, z=1554.50], EntityHorse['Horse'/128101, l='MpServer', x=-1060.16, y=64.00, z=1574.06], MoCEntityBird['Bird'/115815, l='MpServer', x=-919.84, y=72.00, z=1467.72], EntityPig['Pig'/126055, l='MpServer', x=-973.50, y=72.00, z=1553.50], EntityPig['Pig'/126057, l='MpServer', x=-971.78, y=72.00, z=1552.47], MoCEntityFox['Fox'/128104, l='MpServer', x=-1048.47, y=64.00, z=1581.97], EntityPig['Pig'/126059, l='MpServer', x=-970.19, y=72.00, z=1553.81], MoCEntityGoat['Goat'/128106, l='MpServer', x=-1058.50, y=63.00, z=1591.50], MoCEntityBird['Bird'/115821, l='MpServer', x=-917.84, y=72.00, z=1464.16], EntityCow['Cow'/126061, l='MpServer', x=-981.38, y=72.00, z=1559.69], MoCEntityGoat['Goat'/128108, l='MpServer', x=-1060.50, y=63.00, z=1591.50], MoCEntityBird['Bird'/115823, l='MpServer', x=-916.50, y=72.00, z=1469.50], EntityCow['Cow'/126063, l='MpServer', x=-984.38, y=72.00, z=1558.22], EntityCow['Cow'/126065, l='MpServer', x=-984.75, y=72.00, z=1560.22], EntityCow['Cow'/126067, l='MpServer', x=-987.81, y=72.00, z=1558.22], MoCEntityMouse['Mouse'/113778, l='MpServer', x=-1086.50, y=72.00, z=1437.50], MoCEntityBoar['Boar'/126069, l='MpServer', x=-946.50, y=64.00, z=1550.50], MoCEntityGoat['Goat'/134262, l='MpServer', x=-974.84, y=64.00, z=1617.50], MoCEntityMouse['Mouse'/113780, l='MpServer', x=-1086.50, y=72.00, z=1435.50], EntityCow['Cow'/128116, l='MpServer', x=-1043.50, y=64.00, z=1591.50], MoCEntityBoar['Boar'/126071, l='MpServer', x=-949.50, y=64.00, z=1550.50], EntityCow['Cow'/128118, l='MpServer', x=-1043.50, y=64.00, z=1589.50], EntityCow['Cow'/128120, l='MpServer', x=-1045.50, y=64.00, z=1589.50], MoCEntitySnake['Snake'/126075, l='MpServer', x=-949.50, y=64.00, z=1548.50], EntityCow['Cow'/128122, l='MpServer', x=-1042.50, y=65.00, z=1587.50], EntityChicken['Chicken'/128124, l='MpServer', x=-1022.50, y=65.00, z=1583.50], EntityItem['item.item.string'/134271, l='MpServer', x=-1028.13, y=19.13, z=1616.72], MoCEntityKitty['Kitty'/134268, l='MpServer', x=-1095.56, y=63.00, z=1617.53], MoCEntityBunny['Bunny'/134274, l='MpServer', x=-1025.50, y=63.00, z=1620.50], EntityItem['item.item.ImmersiveEngineering.seed.hemp'/142466, l='MpServer', x=-1034.69, y=67.13, z=1510.75], EntityChicken['Chicken'/128128, l='MpServer', x=-1026.34, y=64.00, z=1586.44], MoCEntityBunny['Bunny'/134272, l='MpServer', x=-1029.50, y=63.00, z=1622.50], EntityChicken['Chicken'/128130, l='MpServer', x=-1018.56, y=66.00, z=1575.56], MoCEntityBird['Bird'/134278, l='MpServer', x=-1035.50, y=64.00, z=1631.50], EntityChicken['Chicken'/128132, l='MpServer', x=-1020.81, y=66.00, z=1583.34], MoCEntityBird['Bird'/134276, l='MpServer', x=-1038.63, y=63.00, z=1627.13], MoCEntityMouse['Mouse'/126086, l='MpServer', x=-934.50, y=67.00, z=1547.50], MoCEntityDuck['Duck'/128134, l='MpServer', x=-1000.50, y=66.00, z=1590.50], MoCEntityMouse['Mouse'/126088, l='MpServer', x=-933.50, y=68.00, z=1544.50], MoCEntityDuck['Duck'/128136, l='MpServer', x=-1001.50, y=66.00, z=1591.50], MoCEntityBird['Bird'/126091, l='MpServer', x=-912.47, y=69.00, z=1546.88], MoCEntityBird['Bird'/134280, l='MpServer', x=-1035.75, y=64.00, z=1628.47], MoCEntityKitty['Kitty'/128138, l='MpServer', x=-1006.44, y=65.00, z=1601.78], MoCEntityBird['Bird'/126093, l='MpServer', x=-912.50, y=69.00, z=1549.50], MoCEntityKitty['Kitty'/128140, l='MpServer', x=-1011.70, y=66.00, z=1589.50], EntityLavaMonster['Lava Monster'/138387, l='MpServer', x=-999.50, y=1.50, z=1595.50], MoCEntityBird['Bird'/128161, l='MpServer', x=-989.50, y=67.00, z=1585.50], MoCEntityBird['Bird'/128163, l='MpServer', x=-989.47, y=67.00, z=1586.56], MoCEntityBird['Bird'/128165, l='MpServer', x=-996.16, y=66.00, z=1593.53], EntityPig['Pig'/128167, l='MpServer', x=-988.50, y=67.00, z=1586.50], EntityPig['Pig'/128169, l='MpServer', x=-991.47, y=66.00, z=1585.47], EntityPig['Pig'/128171, l='MpServer', x=-992.81, y=66.00, z=1586.81], EntityPig['Pig'/128173, l='MpServer', x=-993.22, y=66.00, z=1588.53], EntitySheep['Sheep'/128176, l='MpServer', x=-980.50, y=68.00, z=1581.50], EntityItem['item.item.string'/132272, l='MpServer', x=-1022.13, y=18.13, z=1614.88], EntitySheep['Sheep'/128178, l='MpServer', x=-980.50, y=68.00, z=1577.50], EntitySheep['Sheep'/128180, l='MpServer', x=-976.50, y=67.00, z=1582.22], EntitySheep['Sheep'/128182, l='MpServer', x=-976.50, y=67.00, z=1583.81], EntityPig['Pig'/128184, l='MpServer', x=-952.50, y=67.00, z=1587.50], EntityPig['Pig'/128186, l='MpServer', x=-954.50, y=67.00, z=1584.50], EntityPig['Pig'/128188, l='MpServer', x=-954.50, y=67.00, z=1582.50], EntityPig['Pig'/128190, l='MpServer', x=-952.50, y=68.00, z=1591.50], MoCEntityBunny['Bunny'/128193, l='MpServer', x=-940.50, y=64.00, z=1578.50], MoCEntityBunny['Bunny'/128195, l='MpServer', x=-939.50, y=64.00, z=1576.50], MoCEntityBunny['Bunny'/128197, l='MpServer', x=-939.50, y=64.00, z=1577.50], MoCEntityBoar['Boar'/113863, l='MpServer', x=-1052.50, y=70.00, z=1441.78], MoCEntityBird['Bird'/128199, l='MpServer', x=-947.50, y=65.00, z=1582.50], MoCEntityBoar['Boar'/113865, l='MpServer', x=-1052.50, y=70.00, z=1440.19], MoCEntityBigCat['BigCat'/117961, l='MpServer', x=-1132.50, y=64.00, z=1497.50], MoCEntityBird['Bird'/128201, l='MpServer', x=-948.50, y=65.00, z=1581.50], MoCEntityRaccoon['Raccoon'/113867, l='MpServer', x=-1040.28, y=68.00, z=1434.44], MoCEntityRaccoon['Raccoon'/113869, l='MpServer', x=-1044.41, y=71.00, z=1442.16], EntitySpider['Spider'/136399, l='MpServer', x=24.09, y=-45.40, z=37.66], EntityItem['item.tile.mushroom1'/117971, l='MpServer', x=-1009.31, y=6.13, z=1500.88], EntityItem['item.tile.mushroom2'/117972, l='MpServer', x=-1004.41, y=15.13, z=1506.22], MoCEntityMouse['Mouse'/113878, l='MpServer', x=-1000.75, y=68.00, z=1442.53], MoCEntityBear['Bear'/128214, l='MpServer', x=-912.50, y=64.00, z=1583.50], MoCEntityMouse['Mouse'/113880, l='MpServer', x=-1003.53, y=69.00, z=1435.75], MoCEntityBoar['Boar'/113884, l='MpServer', x=-986.47, y=70.00, z=1437.50], MoCEntityBoar['Boar'/113886, l='MpServer', x=-989.22, y=71.00, z=1450.31], MoCEntityBoar['Boar'/117982, l='MpServer', x=-994.50, y=68.00, z=1506.47], MoCEntityMouse['Mouse'/113888, l='MpServer', x=-997.78, y=69.00, z=1447.53], MoCEntityBoar['Boar'/117984, l='MpServer', x=-998.94, y=68.00, z=1497.84], MoCEntityMouse['Mouse'/117986, l='MpServer', x=-983.63, y=62.00, z=1486.94], MoCEntityDuck['Duck'/117988, l='MpServer', x=-1003.28, y=68.00, z=1503.53], MoCEntityDuck['Duck'/117990, l='MpServer', x=-1010.69, y=69.00, z=1506.78], EntityZombie['Zombie'/136426, l='MpServer', x=-26.76, y=-44.64, z=36.98], EntitySheep['Sheep'/117992, l='MpServer', x=-972.75, y=67.00, z=1500.44], EntitySheep['Sheep'/117996, l='MpServer', x=-961.69, y=66.00, z=1499.69], EntitySheep['Sheep'/117998, l='MpServer', x=-957.75, y=66.00, z=1504.84], EntityChicken['Chicken'/118000, l='MpServer', x=-967.50, y=66.00, z=1509.50], MoCEntityDeer['Deer'/113907, l='MpServer', x=-906.50, y=77.00, z=1432.50], EntityChicken['Chicken'/118002, l='MpServer', x=-966.50, y=66.00, z=1510.50], MoCEntityDeer['Deer'/113909, l='MpServer', x=-908.50, y=76.00, z=1432.50], MoCEntityBird['Bird'/113911, l='MpServer', x=-913.50, y=73.00, z=1441.50], EntityChicken['Chicken'/118006, l='MpServer', x=-965.50, y=66.00, z=1509.50], MoCEntityBird['Bird'/113913, l='MpServer', x=-916.50, y=74.00, z=1440.50], EntitySheep['Sheep'/118012, l='MpServer', x=-954.78, y=66.00, z=1511.38], MoCEntityHorse['WildHorse'/118016, l='MpServer', x=-938.56, y=67.00, z=1493.34], VengeanceSpirit['Vengeance Spirit'/144643, l='MpServer', x=-973.19, y=66.00, z=1487.81], EntityItem['item.item.ItemMutton'/144647, l='MpServer', x=-974.78, y=66.13, z=1490.94], EntityItem['item.tile.cloth.black'/144645, l='MpServer', x=-974.25, y=66.13, z=1491.16], MoCEntityHorse['WildHorse'/118026, l='MpServer', x=-937.50, y=67.00, z=1502.50], MoCEntityHorse['WildHorse'/118030, l='MpServer', x=-940.13, y=67.00, z=1500.03], MoCEntityBear['Bear'/118032, l='MpServer', x=-945.50, y=66.00, z=1496.50], MoCEntityTurkey['Turkey'/118034, l='MpServer', x=-926.50, y=75.00, z=1511.50], MoCEntityTurkey['Turkey'/118036, l='MpServer', x=-916.50, y=68.00, z=1508.50], EntityItem['item.item.string'/132377, l='MpServer', x=-1026.63, y=18.13, z=1612.88], VengeanceSpirit['Vengeance Spirit'/138521, l='MpServer', x=-1094.84, y=3.40, z=1568.81], MoCEntityEnt['Ent'/118044, l='MpServer', x=-918.50, y=69.00, z=1507.50], MoCEntityBunny['Bunny'/118054, l='MpServer', x=-915.41, y=74.00, z=1496.00], MoCEntityBunny['Bunny'/118056, l='MpServer', x=-912.50, y=72.00, z=1498.50], EntityLavaMonster['Lava Monster'/140584, l='MpServer', x=-997.72, y=3.07, z=1481.50], MoCEntityBunny['Bunny'/118058, l='MpServer', x=-913.50, y=72.00, z=1498.50], EntityZombie['Zombie'/136535, l='MpServer', x=-43.44, y=-42.80, z=18.61], EntityItem['item.item.string'/132471, l='MpServer', x=-1021.56, y=19.13, z=1614.88], EntityItem['item.item.string'/132469, l='MpServer', x=-1026.72, y=18.13, z=1612.13], EntityLavaMonster['Lava Monster'/132489, l='MpServer', x=-993.50, y=1.75, z=1582.50], EntityItem['item.item.netherquartz'/132530, l='MpServer', x=-1021.72, y=9.13, z=1576.28], EntityItem['item.item.barley.seed'/126391, l='MpServer', x=-1088.88, y=62.13, z=1507.59], MoCEntityMouse['Mouse'/105912, l='MpServer', x=-1035.16, y=64.00, z=1429.44], EntitySkeleton['Skeleton'/134589, l='MpServer', x=-7.58, y=-44.53, z=45.23], EntityZombie['Zombie'/134592, l='MpServer', x=-0.58, y=-43.53, z=46.69], EntityLavaMonster['Lava Monster'/140747, l='MpServer', x=-1090.50, y=3.06, z=1578.50], EntitySkeleton['Skeleton'/134617, l='MpServer', x=-1011.09, y=40.00, z=1586.34], EntityItem['item.tile.stonebrick'/126428, l='MpServer', x=-1089.13, y=12.13, z=1535.81], EntityItem['item.tile.sandStone.default'/126435, l='MpServer', x=-1087.88, y=55.13, z=1517.84], EntityItem['item.item.witchery:seedsartichoke'/126437, l='MpServer', x=-1083.94, y=60.13, z=1509.13], EntityItem['item.item.ImmersiveEngineering.seed.hemp'/126436, l='MpServer', x=-1084.56, y=61.13, z=1507.84], EntityItem['item.item.witchery:seedssnowbell'/126439, l='MpServer', x=-1082.13, y=62.13, z=1512.94], EntityItem['item.item.barley.seed'/126438, l='MpServer', x=-1083.78, y=60.13, z=1512.88], EntityItem['item.item.gysahl_seeds'/126441, l='MpServer', x=-1082.16, y=61.13, z=1510.41], EntityItem['item.item.witchery:seedssnowbell'/126440, l='MpServer', x=-1084.69, y=61.13, z=1513.38], EntityItem['item.item.agricraft:seedCarrot'/126443, l='MpServer', x=-1077.16, y=64.13, z=1515.38], EntityItem['item.tile.extrabiomes.flower.amaryllis_red'/126442, l='MpServer', x=-1079.75, y=66.13, z=1517.56], EntitySkeleton['Skeleton'/134633, l='MpServer', x=-959.50, y=66.00, z=1511.50], EntityItem['item.item.cotton.seed'/126445, l='MpServer', x=-1076.78, y=64.13, z=1513.31], EntityItem['item.item.seeds'/126444, l='MpServer', x=-1076.88, y=64.13, z=1510.13], MoCEntityScorpion['Scorpion'/134639, l='MpServer', x=-974.16, y=66.00, z=1491.82], EntityItem['item.item.barley.seed'/126447, l='MpServer', x=-1073.28, y=66.13, z=1518.66], EntityItem['item.item.agricraft:seedCarrot'/126446, l='MpServer', x=-1075.25, y=64.13, z=1510.69], EntitySpider['Spider'/136694, l='MpServer', x=-28.85, y=-40.37, z=40.13], EntityItem['item.tile.mushroom2'/130555, l='MpServer', x=-1035.28, y=24.13, z=1578.44], MoCEntityWWolf['WWolf'/134649, l='MpServer', x=-967.16, y=66.00, z=1507.56], EntityItem['item.tile.arsmagica2:tarmaroot'/130556, l='MpServer', x=-994.28, y=24.13, z=1593.59], EntityItem['item.item.ImmersiveEngineering.seed.hemp'/126465, l='MpServer', x=-1074.09, y=65.13, z=1536.69], MoCEntityRat['Rat'/134661, l='MpServer', x=-1008.13, y=68.00, z=1581.00], EntityZombie['Zombie'/134667, l='MpServer', x=-991.50, y=38.00, z=1482.50], EntityZombie['Zombie'/134669, l='MpServer', x=-992.50, y=38.00, z=1479.50], EntityItem['item.item.string'/132646, l='MpServer', x=-1027.88, y=18.13, z=1613.13], EntityItem['item.tile.mushroom10'/132655, l='MpServer', x=-1050.28, y=12.13, z=1578.28], EntityCaveSpider['Cave Spider'/136753, l='MpServer', x=-23.15, y=-51.37, z=30.14], EntityLavaMonster['Lava Monster'/142901, l='MpServer', x=-1100.50, y=3.36, z=1563.50], EntityItem['item.item.seeds_pumpkin'/136772, l='MpServer', x=-1062.81, y=65.13, z=1530.59], MoCEntityDuck['Duck'/130654, l='MpServer', x=-1122.50, y=63.00, z=1613.50], MoCEntityBoar['Boar'/124512, l='MpServer', x=-1030.19, y=67.00, z=1536.78], MoCEntityMouse['Mouse'/130656, l='MpServer', x=-1113.50, y=63.00, z=1612.50], MoCEntityBoar['Boar'/124514, l='MpServer', x=-1034.62, y=67.00, z=1539.80], EntityItem['item.tile.mushroom2'/128620, l='MpServer', x=-1042.81, y=15.13, z=1546.88], MoCEntityElephant['Elephant'/130668, l='MpServer', x=-1092.69, y=63.00, z=1612.72], MoCEntityBoar['Boar'/124530, l='MpServer', x=-1034.38, y=67.00, z=1546.47], MoCEntityBoar['Boar'/124532, l='MpServer', x=-1033.17, y=68.00, z=1526.12], MoCEntityBird['Bird'/124535, l='MpServer', x=-1036.75, y=67.17, z=1537.39], EntityItem['item.tile.mushroom1'/124534, l='MpServer', x=-1044.13, y=8.13, z=1525.13], EntityItem['item.item.cotton.seed'/136821, l='MpServer', x=-1093.25, y=10.13, z=1561.81], MoCEntityBird['Bird'/124537, l='MpServer', x=-1049.06, y=67.00, z=1544.54], MoCEntityBird['Bird'/124539, l='MpServer', x=-1038.31, y=66.00, z=1543.03], MoCEntityDeer['Deer'/124541, l='MpServer', x=-1040.78, y=67.00, z=1540.78], MoCEntityDeer['Deer'/124543, l='MpServer', x=-1038.66, y=67.00, z=1539.22], EntityHorse['Horse'/124545, l='MpServer', x=-1058.50, y=68.00, z=1528.97], EntityHorse['Donkey'/124547, l='MpServer', x=-1055.59, y=68.00, z=1528.28], MoCEntityBunny['Bunny'/124549, l='MpServer', x=-1059.67, y=66.74, z=1544.44], MoCEntityBunny['Bunny'/124551, l='MpServer', x=-1067.25, y=65.00, z=1548.09], MoCEntityBird['Bird'/124553, l='MpServer', x=-1078.50, y=60.00, z=1540.50], MoCEntityBird['Bird'/124555, l='MpServer', x=-1078.22, y=60.00, z=1539.94], EntitySheep['Sheep'/124557, l='MpServer', x=-1097.56, y=12.00, z=1540.16], EntitySheep['Sheep'/124559, l='MpServer', x=-1096.47, y=55.00, z=1541.94], EntityItem['item.tile.gravel'/142989, l='MpServer', x=-1041.71, y=19.83, z=1584.50], EntitySheep['Sheep'/124561, l='MpServer', x=-1094.03, y=12.00, z=1546.69], EntitySheep['Sheep'/124565, l='MpServer', x=-1097.91, y=12.00, z=1541.28], EntityItem['item.item.netherStalkSeeds'/132766, l='MpServer', x=-993.44, y=10.13, z=1543.22], EntityHuman['skyboy'/128673, l='MpServer', x=-1001.50, y=45.00, z=1527.50], EntityItem['item.tile.caveplant1'/132772, l='MpServer', x=-1024.88, y=8.13, z=1614.88], MoCEntityFox['Fox'/114345, l='MpServer', x=-1114.50, y=64.00, z=1442.19], MoCEntityMole['Mole'/114347, l='MpServer', x=-1125.50, y=64.00, z=1439.50], MoCEntityMouse['Mouse'/114349, l='MpServer', x=-1119.44, y=64.00, z=1439.03], MoCEntityMouse['Mouse'/114351, l='MpServer', x=-1123.09, y=64.00, z=1443.03], EntityItem['item.item.agricraft:seedPotato'/132780, l='MpServer', x=-1081.06, y=65.13, z=1511.53], EntityZombie['Zombie'/134834, l='MpServer', x=-14.59, y=-43.53, z=44.43], MoCEntityElephant['Elephant'/114355, l='MpServer', x=-1117.25, y=64.00, z=1432.94], EntitySkeleton['Skeleton'/134841, l='MpServer', x=-12.60, y=-44.53, z=43.85], EntitySkeleton['Skeleton'/136907, l='MpServer', x=-39.46, y=-39.37, z=30.79], MoCEntityBunny['Bunny'/134862, l='MpServer', x=-1070.50, y=64.00, z=1638.50], MoCEntityMole['Mole'/134860, l='MpServer', x=-1075.50, y=63.00, z=1629.50], MoCEntityBunny['Bunny'/134866, l='MpServer', x=-1069.50, y=64.00, z=1636.50], EntityItem['item.item.netherStalkSeeds'/132817, l='MpServer', x=-996.22, y=9.00, z=1537.09], MoCEntityMouse['Mouse'/122583, l='MpServer', x=-1099.44, y=41.55, z=1514.31], MoCEntityKitty['Kitty'/122585, l='MpServer', x=-1104.50, y=50.00, z=1521.50], MoCEntityKitty['Kitty'/122587, l='MpServer', x=-1105.50, y=51.00, z=1521.50], EntityItem['item.tile.gravel'/141023, l='MpServer', x=-1042.50, y=19.13, z=1576.50], MoCEntitySnake['Snake'/122595, l='MpServer', x=-1106.50, y=54.00, z=1518.50], MoCEntityBird['Bird'/134884, l='MpServer', x=-948.38, y=66.00, z=1633.50], MoCEntitySnake['Snake'/122603, l='MpServer', x=-1101.50, y=32.00, z=1521.50], MoCEntityBird['Bird'/134888, l='MpServer', x=-947.50, y=66.00, z=1635.50], MoCEntityOstrich['Ostrich'/122605, l='MpServer', x=-1111.50, y=49.00, z=1526.50], MoCEntityDuck['Duck'/122607, l='MpServer', x=-1087.50, y=62.05, z=1517.50], EntityItem['item.tile.notGate'/130799, l='MpServer', x=-1042.13, y=19.13, z=1616.03], EntityItem['item.tile.pressurePlate'/130798, l='MpServer', x=-1042.28, y=19.13, z=1615.16], EntityItem['item.item.netherStalkSeeds'/132850, l='MpServer', x=-994.25, y=9.00, z=1535.53], EntityItem['item.item.netherStalkSeeds'/132848, l='MpServer', x=-997.28, y=9.00, z=1538.63], EntityZombie['Zombie'/134907, l='MpServer', x=-12.60, y=-46.53, z=41.72], MoCEntityMouse['Mouse'/134905, l='MpServer', x=-912.50, y=66.00, z=1625.50], EntitySheep['Sheep'/124671, l='MpServer', x=-1108.50, y=59.00, z=1534.50], EntitySheep['Sheep'/124673, l='MpServer', x=-1107.78, y=58.00, z=1531.50], EntityItem['item.item.netherStalkSeeds'/132867, l='MpServer', x=-997.31, y=9.00, z=1537.81], EntitySheep['Sheep'/124675, l='MpServer', x=-1103.50, y=60.00, z=1538.50], EntitySheep['Sheep'/124677, l='MpServer', x=-1101.50, y=59.00, z=1537.50], MoCEntityFox['Fox'/124679, l='MpServer', x=-1121.72, y=55.00, z=1529.87], MoCEntityMouse['Mouse'/122630, l='MpServer', x=-1061.84, y=68.00, z=1527.59], EntityZombie['Zombie'/134922, l='MpServer', x=26.40, y=-43.53, z=38.33], MoCEntityBird['Bird'/122632, l='MpServer', x=-1052.63, y=65.00, z=1511.50], EntityItem['item.tile.mushroom10'/132875, l='MpServer', x=-1016.81, y=7.13, z=1610.84], MoCEntityBird['Bird'/122634, l='MpServer', x=-1052.44, y=65.00, z=1511.03], MoCEntityMouse['Mouse'/124682, l='MpServer', x=-903.50, y=68.00, z=1528.50], MoCEntityMole['Mole'/122636, l='MpServer', x=-1059.50, y=66.00, z=1515.50], MoCEntityMole['Mole'/122638, l='MpServer', x=-1055.25, y=66.00, z=1515.94], MoCEntityMouse['Mouse'/122662, l='MpServer', x=-1012.19, y=70.00, z=1506.69], MoCEntitySnake['Snake'/122668, l='MpServer', x=-1010.63, y=66.00, z=1522.28], MoCEntitySnake['Snake'/122670, l='MpServer', x=-1016.09, y=68.00, z=1521.50], MoCEntityFox['Fox'/122672, l='MpServer', x=-1003.13, y=66.00, z=1522.22], MoCEntityFox['Fox'/122674, l='MpServer', x=-1001.47, y=65.00, z=1527.97], EntityPig['Pig'/122676, l='MpServer', x=-1027.53, y=69.00, z=1519.38], EntityPig['Pig'/122678, l='MpServer', x=-1027.97, y=67.00, z=1498.94], MoCEntityAnt['Ant'/116537, l='MpServer', x=-1009.53, y=68.00, z=1437.41], EntityPig['Pig'/122680, l='MpServer', x=-1026.63, y=68.00, z=1528.47], MoCEntityAnt['Ant'/116539, l='MpServer', x=-1005.66, y=68.00, z=1438.31], MoCEntityBird['Bird'/124730, l='MpServer', x=-940.50, y=66.00, z=1529.50], EntityPig['Pig'/122682, l='MpServer', x=-1014.03, y=67.00, z=1519.47], MoCEntityAnt['Ant'/116541, l='MpServer', x=-1006.41, y=69.00, z=1436.81], MoCEntityBird['Bird'/124732, l='MpServer', x=-936.50, y=69.00, z=1531.50], MoCEntitySnake['Snake'/122684, l='MpServer', x=-1027.39, y=69.00, z=1524.11], MoCEntityAnt['Ant'/116543, l='MpServer', x=-1003.63, y=68.00, z=1439.28], MoCEntitySnake['Snake'/122686, l='MpServer', x=-1024.81, y=69.00, z=1519.41], MoCEntityBird['Bird'/124734, l='MpServer', x=-937.63, y=68.00, z=1529.00], MoCEntityBoar['Boar'/124737, l='MpServer', x=-1002.13, y=67.00, z=1531.63], EntityItem['item.tile.mushroom9'/124736, l='MpServer', x=-987.13, y=4.13, z=1537.13], MoCEntityBoar['Boar'/124739, l='MpServer', x=-998.06, y=65.00, z=1529.22], EntityItem['item.item.agricraft:seedPotato'/137042, l='MpServer', x=-1009.78, y=64.13, z=1606.72], MoCEntityMouse['Mouse'/114515, l='MpServer', x=-985.22, y=66.00, z=1462.16], MoCEntityTurkey['Turkey'/122708, l='MpServer', x=-940.50, y=67.00, z=1526.50], MoCEntityBee['Bee'/116567, l='MpServer', x=-995.19, y=69.00, z=1442.97], MoCEntityTurkey['Turkey'/122710, l='MpServer', x=-943.50, y=66.00, z=1526.50], MoCEntityFly['Fly'/116569, l='MpServer', x=-995.44, y=70.00, z=1438.81], MoCEntityBunny['Bunny'/122712, l='MpServer', x=-914.50, y=67.00, z=1512.50], MoCEntityFly['Fly'/116571, l='MpServer', x=-997.75, y=69.00, z=1438.53], MoCEntityBunny['Bunny'/122714, l='MpServer', x=-913.50, y=67.00, z=1512.50], MoCEntityFly['Fly'/116573, l='MpServer', x=-995.59, y=70.00, z=1438.34], MoCEntityBunny['Bunny'/122716, l='MpServer', x=-913.50, y=67.00, z=1514.50], MoCEntityMouse['Mouse'/122718, l='MpServer', x=-903.81, y=66.00, z=1519.13], MoCEntityMouse['Mouse'/122720, l='MpServer', x=-903.25, y=66.00, z=1519.28], MoCEntityGoat['Goat'/114533, l='MpServer', x=-948.50, y=69.00, z=1448.50], MoCEntityBunny['Bunny'/114535, l='MpServer', x=-930.50, y=72.00, z=1452.50], MoCEntityBunny['Bunny'/114537, l='MpServer', x=-928.50, y=72.00, z=1452.50], EntityCreeper['Creeper'/137067, l='MpServer', x=-1027.97, y=23.00, z=1610.44], MoCEntityTurkey['Turkey'/114539, l='MpServer', x=-929.50, y=72.00, z=1459.50], MoCEntityTurkey['Turkey'/114541, l='MpServer', x=-929.50, y=72.00, z=1457.50], EntityStoneCreeper['Stone Creeper'/137069, l='MpServer', x=-1029.44, y=22.00, z=1611.59], EntityZombie['Zombie'/135026, l='MpServer', x=19.40, y=-45.53, z=40.10], MoCEntityBird['Bird'/124805, l='MpServer', x=-1012.53, y=68.00, z=1553.56], MoCEntityBird['Bird'/124807, l='MpServer', x=-1012.72, y=67.81, z=1549.78], MoCEntityBoar['Boar'/114566, l='MpServer', x=-1018.41, y=72.00, z=1448.63], MoCEntityBird['Bird'/124809, l='MpServer', x=-997.53, y=71.00, z=1561.00], MoCEntityBoar['Boar'/114568, l='MpServer', x=-1020.47, y=67.00, z=1446.53], EntitySkeleton['Skeleton'/137099, l='MpServer', x=15.70, y=-60.27, z=15.11], EntityHorse['Horse'/124811, l='MpServer', x=-958.87, y=64.00, z=1541.13], EntityHorse['Horse'/124813, l='MpServer', x=-957.50, y=64.00, z=1540.50], MoCEntitySnake['Snake'/124815, l='MpServer', x=-957.66, y=64.00, z=1545.88], MoCEntitySnake['Snake'/124817, l='MpServer', x=-959.50, y=64.00, z=1543.50], EntityItem['item.item.bone'/145299, l='MpServer', x=-1009.44, y=40.13, z=1585.63], EntityCow['Cow'/124819, l='MpServer', x=-981.50, y=73.00, z=1543.50], EntityHuman['AnderZEL'/137105, l='MpServer', x=-1045.50, y=44.00, z=1453.50], EntityCow['Cow'/124821, l='MpServer', x=-980.50, y=73.00, z=1540.50], EntityCreeper['Creeper'/135063, l='MpServer', x=-1025.50, y=30.00, z=1562.50], EntityCow['Cow'/124823, l='MpServer', x=-983.50, y=73.00, z=1540.50], EntityCow['Cow'/124825, l='MpServer', x=-981.50, y=70.00, z=1538.50], MoCEntityOgre['Ogre'/137117, l='MpServer', x=-1088.53, y=63.00, z=1610.88], EntityChicken['Chicken'/124832, l='MpServer', x=-992.44, y=67.00, z=1531.56], EntityChicken['Chicken'/124836, l='MpServer', x=-982.50, y=71.00, z=1539.50], EntitySpider['Spider'/135077, l='MpServer', x=-1022.50, y=10.00, z=1580.50], MoCEntityAnt['Ant'/116651, l='MpServer', x=-1051.25, y=71.00, z=1466.03], EntityChicken['Chicken'/124842, l='MpServer', x=-982.50, y=73.00, z=1540.50], EntityTrail['unknown'/77741, l='MpServer', x=-1029.13, y=72.33, z=1554.00], EntityChicken['Chicken'/124845, l='MpServer', x=-980.50, y=69.00, z=1536.50], EntitySkeleton['Skeleton'/137137, l='MpServer', x=-964.50, y=69.00, z=1587.50], EntityZombie['Zombie'/137143, l='MpServer', x=-1039.44, y=36.00, z=1563.94], EntityCreeper['Creeper'/135099, l='MpServer', x=-985.34, y=17.00, z=1514.97], MoCEntitySnake['Snake'/114619, l='MpServer', x=-1063.78, y=72.00, z=1459.22], EntityHuman['jadedcat'/135097, l='MpServer', x=-994.50, y=47.00, z=1520.50], EntityCreeper['Creeper'/137145, l='MpServer', x=-1032.50, y=37.00, z=1560.50], MoCEntityRaccoon['Raccoon'/114621, l='MpServer', x=-973.50, y=69.00, z=1453.50], MoCEntityRaccoon['Raccoon'/114623, l='MpServer', x=-973.50, y=70.00, z=1450.50], MoCEntityBunny['Bunny'/126923, l='MpServer', x=-1128.50, y=64.00, z=1562.50], MoCEntityBunny['Bunny'/126925, l='MpServer', x=-1129.94, y=64.00, z=1561.91], MoCEntityBunny['Bunny'/126927, l='MpServer', x=-1131.50, y=64.00, z=1561.50], EntityItem['item.item.netherquartz'/133069, l='MpServer', x=-1017.22, y=10.13, z=1573.88], MoCEntityTurkey['Turkey'/126945, l='MpServer', x=-1106.50, y=64.00, z=1573.50], MoCEntityEnt['Ent'/126947, l='MpServer', x=-1103.47, y=64.00, z=1575.50], MoCEntityEnt['Ent'/126951, l='MpServer', x=-1106.66, y=64.00, z=1576.44], MoCEntityBear['Bear'/114665, l='MpServer', x=-910.25, y=72.00, z=1454.59], MoCEntityBunny['Bunny'/126966, l='MpServer', x=-1095.50, y=64.00, z=1575.50], MoCEntityBunny['Bunny'/126968, l='MpServer', x=-1094.50, y=65.00, z=1572.50], MoCEntityOstrich['Ostrich'/126971, l='MpServer', x=-1070.47, y=66.00, z=1568.25], MoCEntityTurkey['Turkey'/126973, l='MpServer', x=-1067.50, y=64.00, z=1563.50], MoCEntityDuck['Duck'/126975, l='MpServer', x=-1078.16, y=65.00, z=1571.81]]     Retry entities: 0 total; []     Server brand: fml,forge     Server type: Integrated singleplayer server Stacktrace:     at net.minecraft.client.Minecraft.func_71396_d(Minecraft.java:2444)     at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:919)     at net.minecraft.client.main.Main.main(SourceFile:148)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28) -- System Details -- Details:     Minecraft Version: 1.7.10     Operating System: Windows 10 (amd64) version 10.0     Java Version: 1.8.0_51, Oracle Corporation     Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation     Memory: 958275176 bytes (913 MB) / 7024934912 bytes (6699 MB) up to 8619819008 bytes (8220 MB)     JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx9248m -Xms256m     AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used     IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0     FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1614 Optifine OptiFine_1.7.10_HD_U_D6 261 mods loaded, 258 mods active     States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored     UCHIJAAAA    mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)      UCHIJAAAA    FML{7.10.99.99} [Forge Mod Loader] (forge-1.7.10-10.13.4.1614-1.7.10.jar)      UCHIJAAAA    Forge{10.13.4.1614} [Minecraft Forge] (forge-1.7.10-10.13.4.1614-1.7.10.jar)      UCHIJAAAA    AM2-Preloader{0.0.3} [AMCore] (minecraft.jar)      UCHIJAAAA    appliedenergistics2-core{rv3-beta-6} [Applied Energistics 2 Core] (minecraft.jar)      UCHIJAAAA    Aroma1997Core{1.0.2.16} [Aroma1997Core] (Aroma1997Core-1.7.10-1.0.2.16.jar)      UCHIJAAAA    bowinfinityfix{rv0} [Bow Infinity Fix] (minecraft.jar)      UCHIJAAAA    CodeChickenCore{1.0.7.48} [CodeChicken Core] (minecraft.jar)      UCHIJAAAA    Micdoodlecore{} [Micdoodle8 Core] (minecraft.jar)      UCHIJAAAA    NotEnoughItems{1.0.5.120} [Not Enough Items] (NotEnoughItems-1.7.10-1.0.5.120-universal.jar)      UCHIJAAAA    voltzenginepreloader{0.0.1} [Voltz Engine Preloader] (minecraft.jar)      UCHIJAAAA    xaerominimap_core{1.7.10-1.0} [XaeroMinimapCore] (minecraft.jar)      UCHIJAAAA    xaeroworldmap_core{1.7.10-1.0} [XaeroWorldMapCore] (minecraft.jar)      UCHIJAAAA    OpenModsCore{0.10.1} [OpenModsCore] (minecraft.jar)      UCHIJAAAA    <CoFH ASM>{000} [CoFH ASM] (minecraft.jar)      UCHIJAAAA    FoamFixCore{1.0.4} [FoamFixCore] (minecraft.jar)      UCHIJAAAA    FastCraft{1.25} [FastCraft] (fastcraft-1.25.jar)      UCHIJAAAA    unimixins{0.1.17} [UniMixins] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    unimixins-mixin{0.1.17} [UniMixins: Mixin (UniMix)] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    unimixins-compat{0.1.17} [UniMixins: Compatibility] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    mixingasm{0.3} [UniMixins: Mixingasm] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    spongemixins{2.0.1} [UniMixins: SpongeMixins] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    mixinbooterlegacy{1.2.1} [UniMixins: MixinBooterLegacy] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    gasstation{0.5.1} [UniMixins: GasStation] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    gtnhmixins{2.2.0} [UniMixins: GTNHMixins] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    mixinextras{0.1.17} [UniMixins: MixinExtras] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    AnimationAPI{1.2.4} [AnimationAPI] (AnimationAPI-1.7.10-1.2.4.jar)      UCHIJAAAA    arsmagica2{1.4.0.009} [Ars Magica 2] (1.7.10_AM2-1.4.0.009.jar)      UCHIJAAAA    DamageIndicatorsMod{3.3.2} [Damage Indicators] ([1.7.10]DamageIndicatorsMod-3.3.2.jar)      UCHIJAAAA    bspkrsCore{6.16} [bspkrsCore] ([1.7.10]bspkrsCore-universal-6.16.jar)      UCHIJAAAA    FloatingRuins{1.7.10.r02} [FloatingRuins] ([1.7.10]FloatingRuins-universal-1.7.10.r02.jar)      UCHIJAAAA    movillages{1.4.2} [Mo' Villages] ([1.7.10]MoVillages-1.4.2.jar)      UCHIJAAAA    abyssalcraft{1.9.1.3} [AbyssalCraft] (AbyssalCraft-1.7.10-1.9.1.3-FINAL.jar)      UCHIJAAAA    CoFHCore{1.7.10R3.1.4} [CoFH Core] (CoFHCore-[1.7.10]3.1.4-329.jar)      UCHIJAAAA    BuildCraft|Core{7.1.25} [BuildCraft] (buildcraft-7.1.25.jar)      UCHIJAAAA    BuildCraft|Energy{7.1.25} [BC Energy] (buildcraft-7.1.25.jar)      UCHIJAAAA    ActuallyAdditions{1.7.10-r21} [Actually Additions] (ActuallyAdditions-1.7.10-r21.jar)      UCHIJAAAA    IC2{2.2.827-experimental} [IndustrialCraft 2] (industrialcraft-2-2.2.827-experimental.jar)      UCHIJAAAA    AdvancedSolarPanel{1.7.10-3.5.1} [Advanced Solar Panels] (AdvancedSolarPanel_1.7.10_Edition.jar)      UCHIJAAAA    Baubles{1.0.1.10} [Baubles] (Baubles-1.7.10-1.0.1.10.jar)      UCHIJAAAA    adventurebackpack{1.7.10-0.8b} [Adventure Backpack] (adventurebackpack-1.7.10-0.8c.jar)      UCHIJAAAA    aether_legacy{v1.1.2.2} [The Aether] (aether-1.7.10-v1.1.2.3.jar)      UCHIJAAAA    AgriCraft{1.7.10-1.5.0} [AgriCraft] (AgriCraft-1.7.10-1.5.0.jar)      UCHIJAAAA    aiimprovements{0.0.1.8} [AI Improvements] (AIImprovements-1.7.10-0.0.1b8.jar)      UCHIJAAAA    antiidconflict{1.3.5} [Anti Id Conflict] (AntiIdConflict-1.3.5-1.7.10.jar)      UCHIJAAAA    appliedenergistics2{rv3-beta-6} [Applied Energistics 2] (appliedenergistics2-rv3-beta-6.jar)      UCHIJAAAA    Aquaculture{1.2.6} [Aquaculture] (Aquaculture-1.7.10-1.2.6.21.jar)      UCHIJAAAA    Aroma1997CoreHelper{1.0.2.16} [Aroma1997Core|Helper] (Aroma1997Core-1.7.10-1.0.2.16.jar)      UCHIJAAAA    Aroma1997sDimension{1.0} [Aroma1997's Dimensional World] (Aroma1997s-Dimensional-World-1.7.10-1.1.0.1.jar)      UCHIJAAAA    atum{0.6} [Atum] (Atum-1.7.10-0.6.77.jar)      UCHIJAAAA    AWWayofTime{v1.3.3} [Blood Magic: Alchemical Wizardry] (BloodMagic-1.7.10-1.3.3-17.jar)      UCHIJAAAA    Thaumcraft{4.2.3.5} [Thaumcraft] (Thaumcraft-1.7.10-4.2.3.5.jar)      UCHIJAAAA    Botania{r1.8-249} [Botania] (Botania r1.8-249.jar)      UCHIJAAAA    Avaritia{1.13} [Avaritia] (Avaritia-1.13.jar)      UCHIJAAAA    iChunUtil{4.2.3} [iChunUtil] (iChunUtil-4.2.3.jar)      UCHIJAAAA    BackTools{4.0.0} [BackTools] (BackTools-4.0.0.jar)      UCHIJAAAA    BBG{1.0.0} [BetterBedrockGen] (BBG-1.0.0.jar)      UCHIJAAAA    bdlib{1.9.5.1} [BD Lib] (bdlib-1.9.5.1-mc1.7.10.jar)      UCHIJAAAA    Mantle{1.7.10-0.3.2.jenkins191} [Mantle] (Mantle-1.7.10-0.3.2b.jar)      UCHIJAAAA    Natura{2.2.0} [Natura] (natura-1.7.10-2.2.0.1.jar)      UCHIJAAAA    BiomesOPlenty{2.1.0} [Biomes O' Plenty] (BiomesOPlenty-1.7.10-2.1.0.1889-universal.jar)      UCHIJAAAA    ExtrabiomesXL{3.16.4} [ExtrabiomesXL] (extrabiomesxl_1.7.10-3.16.4.jar)      UCHIJAAAA    Forestry{4.2.16.64} [Forestry for Minecraft] (forestry_1.7.10-4.2.16.64.jar)      UCHIJAAAA    beebetteratbees{0.2} [BeeBetterAtBees] (BeeBetterAtBees-0.3.jar)      UCHIJAAAA    BetterAchievements{0.1.0} [Better Achievements] (BetterAchievements-1.7.10-0.1.0.jar)      UCHIJAAAA    BetterPing{1.0} [Better Ping] (BetterPing-1.7.10-1.0.jar)      UCHIJAAAA    BiblioCraft{1.11.7} [BiblioCraft] (BiblioCraft[v1.11.7][MC1.7.10].jar)      UCHIJAAAA    BiblioWoodsBoP{1.9} [BiblioWoods Biomes O'Plenty Edition] (BiblioWoods[BiomesOPlenty][v1.9].jar)      UCHIJAAAA    BiblioWoodsEBXL{1.4} [BiblioWoods ExtraBiomesXL Edition] (BiblioWoods[ExtraBiomesXL][v1.4].jar)      UCHIJAAAA    BiblioWoodsForestry{1.7} [BiblioWoods Forestry Edition] (BiblioWoods[Forestry][v1.7].jar)      UCHIJAAAA    BiblioWoodsNatura{1.5} [BiblioWoods Natura Edition] (BiblioWoods[Natura][v1.5].jar)      UCHIJAAAA    ThermalFoundation{1.7.10R1.2.6} [Thermal Foundation] (ThermalFoundation-[1.7.10]1.2.6-118.jar)      UCHIJAAAA    ThermalExpansion{1.7.10R4.1.5} [Thermal Expansion] (ThermalExpansion-[1.7.10]4.1.5-248.jar)      UCHIJAAAA    BigReactors{0.4.3A} [Big Reactors] (BigReactors-0.4.3A.jar)      UCHIJAAAA    BinnieCore{2.0.22.7} [Binnie Core] (binnie-mods-1.7.10-2.0.22.7.jar)      UCHIJAAAA    Botany{2.0.22.7} [Botany] (binnie-mods-1.7.10-2.0.22.7.jar)      UCHIJAAAA    ExtraTrees{2.0.22.7} [Extra Trees] (binnie-mods-1.7.10-2.0.22.7.jar)      UCHIJAAAA    Genetics{2.0.22.7} [Genetics] (binnie-mods-1.7.10-2.0.22.7.jar)      UCHIJAAAA    ExtraBees{2.0.22.7} [Extra Bees] (binnie-mods-1.7.10-2.0.22.7.jar)      UCHIJAAAA    blur{MC1.7.10-1.0.1-2} [Blur] (Blur-MC1.7.10-1.0.1-2.jar)      UCHIJAAAA    BrandonsCore{1.0.0.12} [Brandon's Core] (BrandonsCore-1.0.0.12.jar)      UCHIJAAAA    BuildCraft|Builders{7.1.25} [BC Builders] (buildcraft-7.1.25.jar)      UCHIJAAAA    BuildCraft|Robotics{7.1.25} [BC Robotics] (buildcraft-7.1.25.jar)      UCHIJAAAA    BuildCraft|Silicon{7.1.25} [BC Silicon] (buildcraft-7.1.25.jar)      UCHIJAAAA    BuildCraft|Transport{7.1.25} [BC Transport] (buildcraft-7.1.25.jar)      UCHIJAAAA    BuildCraft|Factory{7.1.25} [BC Factory] (buildcraft-7.1.25.jar)      UCHIJAAAA    Railcraft{9.12.2.0} [Railcraft] (Railcraft_1.7.10-9.12.2.0.jar)      UCHIJAAAA    TwilightForest{2.4.3} [The Twilight Forest] (TwilightForest-2.4.3.jar)      UCHIJAAAA    ForgeMultipart{1.2.0.345} [Forge Multipart] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar)      UCHIJAAAA    chisel{2.9.5.11} [Chisel] (Chisel-2.9.5.11.jar)      UCHIJAAAA    CarpentersBlocks{3.3.8.2} [Carpenter's Blocks] (Carpenter's Blocks v3.3.8.2 - MC 1.7.10.jar)      UCHIJAAAA    ChestTransporter{2.0.6} [Chest Transporter] (ChestTransporter-1.7.10-2.0.6.jar)      UCHIJAAAA    ChickenChunks{1.3.4.19} [ChickenChunks] (ChickenChunks-1.7.10-1.3.4.19-universal.jar)      UCHIJAAAA    chococraft{4.1.5} [Clienthax's ChocoCraft] (ChocoCraft-4.1.5.jar)      UCHIJAAAA    CompactSolars{4.4.39.315} [Compact Solar Arrays] (CompactSolars-1.7.10-4.4.39.315-universal.jar)      UCHIJAAAA    ComputerCraft{1.75} [ComputerCraft] (ComputerCraft1.75.jar)      UCHIJAAAA    cosmeticarmorreworked{1.7.10-v7} [CosmeticArmorReworked] (CosmeticArmorReworked-1.7.10-v7.jar)      UCHIJAAAA    CustomSpawner{3.3.0} [DrZhark's CustomSpawner] (CustomMobSpawner 3.3.0.zip)      UCHIJAAAA    dimensionalcake{0.0.1} [Dimensional Cake] (dimensionalcakes-0.0.1.jar)      UCHIJAAAA    DisenchanterMod{1.6} [Disenchanter] (DisenchanterMod-[1.7.10]1.6.jar)      UCHIJAAAA    DraconicEvolution{1.0.2h} [Draconic Evolution] (Draconic-Evolution-1.7.10-1.0.2h.jar)      UCHIJAAAA    MoCreatures{6.3.1} [DrZhark's Mo'Creatures Mod] (DrZharks MoCreatures Mod v6.3.1.zip)      UCHIJAAAA    DynamicLights{1.3.9a} [Dynamic Lights] (Dynamic.Lights-1.3.9abugfix2024.jar)      UCHIJAAAA    dsurround{1.0.6.4} [Dynamic Surroundings] (DynamicSurroundings-1.7.10-1.0.6.4.jar)      UCHIJAAAA    elementalcreepers{4.3.0} [Elemental Creepers] (Elemental Creepers-universal_1.7.10-4.3.0.jar)      UCHIJAAAA    eplus{3.0.2-d} [Enchanting Plus] (EnchantingPlus-1.7.10-3.0.2-d.jar)      UCHIJAAAA    Enchiridion{1.3} [Enchiridion] (Enchiridion 2-1.7.10-2.0.2a.jar)      UCHIJAAAA    Enchiridion2{2.0.2a} [Enchiridion 2] (Enchiridion 2-1.7.10-2.0.2a.jar)      UCHIJAAAA    endercore{1.7.10-0.2.0.40_beta} [EnderCore] (EnderCore-1.7.10-0.2.0.40_beta.jar)      UCHIJAAAA    endercrop{1.7.10-1.1} [Ender Crop] (endercrop-1.7.10-1.2.jar)      UCHIJAAAA    MineFactoryReloaded{1.7.10R2.8.1} [MineFactory Reloaded] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    Waila{1.5.10} [Waila] (Waila-1.5.10_1.7.10.jar)      UCHIJAAAA    EnderIO{1.7.10-2.3.0.430_beta} [Ender IO] (EnderIO-1.7.10-2.3.0.430_beta.jar)      UCHIJAAAA    Roguelike{roguelike-1.5.3-GTNH-master.5+8684ddd572-dirty-master.9+2f9a51e578-dirty} [Roguelike Dungeons] (roguelike-1.5.5.jar)      UCHIJAAAA    enderlicious{Enderlicious} [§5Enderlicious] (enderlicious-1.1.2.jar)      UCHIJAAAA    EnderTech{1.7.10-0.3.2.405} [EnderTech] (EnderTech-1.7.10-0.3.2.405.jar)      UCHIJAAAA    enderutilities{0.5.3} [Ender Utilities] (enderutilities-1.7.10-0.5.3.jar)      UCHIJAAAA    EnderZoo{1.7.10-1.0.15.32} [Ender Zoo] (EnderZoo-1.7.10-1.0.15.32.jar)      UCHIJAAAA    entityculling{@VER@} [EntityCulling] (entityculling-1.6.4-mc1.7.10.jar)      UCHIJAAAA    evilcraft{0.9.13} [EvilCraft] (EvilCraft-1.7.10-0.9.13.jar)      UCHIJAAAA    golems{1.20} [Extra Golems] (Extra-Golems[1.7.10]-1.20.jar)      UCHIJAAAA    extracells{2.4.0} [Extra Cells 2] (ExtraCells-1.7.10-2.4.0.jar)      UCHIJAAAA    golems_addon_tconstruct{1.08} [Tinkers' Golems Addon] (ExtraGolemsTinkersAddon[1.7.10]-1.08.jar)      UCHIJAAAA    ExtraUtilities{1.2.12} [Extra Utilities] (extrautilities-1.2.12.jar)      UCHIJAAAA    harvestcraft{1.7.10j} [Pam's HarvestCraft] (Pam's HarvestCraft 1.7.10Lb.jar)      UCHIJAAAA    ImmersiveEngineering{0.7.7} [Immersive Engineering] (ImmersiveEngineering-0.7.7.jar)      UCHIJAAAA    TConstruct{1.7.10-1.8.8.build988} [Tinkers' Construct] (TConstruct-1.7.10-1.8.8.jar)      UCHIJAAAA    ExtraTiC{1.4.6} [ExtraTiC] (ExtraTiC-1.7.10-1.4.6.jar)      UCHIJAAAA    farlanders{1.2b} [The Farlanders] (farlanders-1.7.10-v1.2b.jar)      UCHIJAAAA    foamfix{@VERSION@} [FoamFix] (FoamFix-1.7.10-universal-1.0.4.jar)      UCHIJAAAA    FoodExpansion{1.0} [Food Expansion] (FoodExpansion1.1.1-mc1.7.10.jar)      UCHIJAAAA    llibrary{1.5.2} [LLibrary] (llibrary-1.5.2-1.7.10.jar)      UCHIJAAAA    fossil{7.3.2} [Fossils and Archeology Revival] (fossilsarcheology-7.3.2.jar)      UCHIJAAAA    GalacticraftCore{3.0.12} [Galacticraft Core] (Galacticraft-1.7-3.0.12.504.jar)      UCHIJAAAA    GalacticraftMars{3.0.12} [Galacticraft Planets] (Galacticraft-1.7-3.0.12.504.jar)      UCHIJAAAA    MagicBees{2.4.4} [Magic Bees] (magicbees-1.7.10-2.4.4.jar)      UCHIJAAAA    gendustry{1.6.3.132} [GenDustry] (gendustry-1.6.3.132-mc1.7.10.jar)      UCHIJAAAA    GraviGun{4.0.0-beta} [GraviGun] (GravityGun-4.0.0-beta.jar)      UCHIJAAAA    gtnhlib{0.5.13} [GTNH Lib] (gtnhlib-0.5.13.jar)      UCHIJAAAA    headcrumbs{1.7.4} [Headcrumbs] (Headcrumbs-1.7.4.jar)      UCHIJAAAA    hexcraft{0.13.2} [HEXCraft] (HEXCraft-1.7.10-0.13.2.jar)      UCHIJAAAA    hexxitgear{1.5.2R1.0} [Hexxit Gear] (HexxitGear-1.7.10-4.0a.jar)      UCHIJAAAA    voltzengine{1.11.0.491} [Voltz Engine] (VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar)      UCHIJAAAA    icbmclassic{2.16.4.3} [ICBM-Classic] (ICBM-classic-1.7.10-2.16.4b3.jar)      UCHIJAAAA    immersivecavegen{1.2g-hotfix5} [Immersive Cavegen] (immersivecavegen-1.2g-hotfix5.jar)      UCHIJAAAA    immersiveintegration{0.6.8} [Immersive Integration] (immersiveintegration-0.6.8.jar)      UCHIJAAAA    Instrumentus{1.7.10-1.4.1} [Instrumentus] (Instrumentus-1.4.1.jar)      UCHIJAAAA    InventoryPets{1.5.2} [Inventory Pets] (inventorypets-1.7.10-1.5.2-universal.jar)      UCHIJAAAA    inventorytweaks{1.59-dev-152-cf6e263} [Inventory Tweaks] (InventoryTweaks-1.59-dev-152.jar)      UCHIJAAAA    IronChest{6.0.62.742} [Iron Chest] (ironchest-1.7.10-6.0.62.742-universal.jar)      UCHIJAAAA    ironfurnaces{1.2.4} [Iron Furnaces] (ironfurnaces-1.2.4R.jar)      UCHIJAAAA    irontank{1.7.10-1.1.16.16} [Iron Tanks] (irontanks-1.7.10-1.1.16.16.jar)      UCHIJAAAA    jaff{1.4.2_for_1.7.10} [Just a Few Fish] (JustAFewFish-1.4.2_for_1.7.10.jar)      UCHIJAAAA    LavaMonsters{2.2.1} [Lava Monsters] (LavaMonsters-1.7.10-2.2.1.jar)      UCHIJAAAA    legendgear{2.b.2.1} [LegendGear 2] (LegendGear 2-1.7.10-2.b.2.1.jar)      UCHIJAAAA    levels{r3.0.1} [Levels] (Levels-1.7.10-r3.0.1.jar)      UCHIJAAAA    lpb{1.0} [Loading Progress Bar] (Loading-Progress-Bar-v1.0-mc1.7.10.jar)      UCHIJAAAA    login_shield{1.7.10-2-gf6e21a7} [Login Shield] (Login_Shield-1.7.10-2-gf6e21a7.jar)      UCHIJAAAA    lucky{5.1.0} [Lucky Block] (lucky-block-forge-1.7.10-1.0.jar)      UCHIJAAAA    LunatriusCore{1.1.2.21} [LunatriusCore] (LunatriusCore-1.7.10-1.1.2.21-universal.jar)      UCHIJAAAA    Mekanism{9.1.1} [Mekanism] (Mekanism-1.7.10-9.1.1.1031.jar)      UCHIJAAAA    magicalcrops{4.0.0_PUBLIC_BETA_4b} [Magical Crops: Core] (magicalcrops-4.0.0_PUBLIC_BETA_5.jar)      UCHIJAAAA    MekanismGenerators{9.1.1} [MekanismGenerators] (MekanismGenerators-1.7.10-9.1.1.1031.jar)      UCHIJAAAA    MekanismTools{9.1.1} [MekanismTools] (MekanismTools-1.7.10-9.1.1.1031.jar)      UCHIJAAAA    meteors{2.14.3} [Falling Meteors] (meteors-1.7.10-2.14.3.jar)      UCHIJAAAA    MineFactoryReloaded|CompatAppliedEnergistics{1.7.10R2.8.1} [MFR Compat: Applied Energistics] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatBuildCraft{1.7.10R2.8.1} [MFR Compat: BuildCraft] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatChococraft{1.7.10R2.8.1} [MFR Compat: Chococraft] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatExtraBiomes{1.7.10R2.8.1} [MFR Compat: ExtraBiomes] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatForestry{1.7.10R2.8.1} [MFR Compat: Forestry] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatForgeMicroblock{1.7.10R2.8.1} [MFR Compat: ForgeMicroblock] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatIC2{1.7.10R2.8.1} [MFR Compat: IC2] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MrTJPCoreMod{1.1.0.33} [MrTJPCore] (MrTJPCore-1.1.0.33-universal.jar)      UCHIJAAAA    ProjRed|Core{4.7.0pre12.95} [ProjectRed Core] (ProjectRed-1.7.10-4.7.0pre12.95-Base.jar)      UCHIJAAAA    ProjRed|Exploration{4.7.0pre12.95} [ProjectRed Exploration] (ProjectRed-1.7.10-4.7.0pre12.95-World.jar)      UCHIJAAAA    MineFactoryReloaded|CompatProjRed{1.7.10R2.8.1} [MFR Compat ProjectRed] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatRailcraft{1.7.10R2.8.1} [MFR Compat: Railcraft] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatThaumcraft{1.7.10R2.8.1} [MFR Compat: Thaumcraft] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatThermalExpansion{1.7.10R2.8.1} [MFR Compat: Thermal Expansion] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatTConstruct{1.7.10R2.8.1} [MFR Compat: Tinkers' Construct] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatTwilightForest{1.7.10R2.8.1} [MFR Compat: TwilightForest] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatVanilla{1.7.10R2.8.1} [MFR Compat: Vanilla] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    testdummy{1.0} [MmmMmmMmmMmm] (MmmMmmMmmMmm-1.7.10-1.9.jar)      UCHIJAAAA    mozombies{2.1.0} [Mo' Zombies] (mo_zombies_2.1.0.jar)      UCHIJAAAA    numina{1.7.10} [Numina] (Numina-0.4.1.106.jar)      UCHIJAAAA    p455w0rdslib{1.0.4} [p455w0rd's Library] (p455w0rdslib-1.7.10-1.0.4.jar)      UCHIJAAAA    ae2wct{1.7.10-rv3-1.8.7.4b} [AE2 Wireless Crafting Terminal] (WirelessCraftingTerminal-1.7.10-rv3-1.8.7.4b.jar)      UCHIJAAAA    powersuits{1.7.10-0.11.1.117} [MachineMuse's Modular Powersuits] (ModularPowersuits-1.7.10-0.11.1.117.jar)      UCHIJAAAA    MoreBows{1.0.10} [More Bows Restrung] (MoreBows-1.0.10.jar)      UCHIJAAAA    MouseTweaks{2.4.4} [Mouse Tweaks] (MouseTweaks-2.4.4-mc1.7.10.jar)      UCHIJAAAA    mowziesmobs{1.2.9} [Mowzie's Mobs] (MowziesMobs-1.2.99.jar)      UCHIJAAAA    cfm{3.4.7} [§9MrCrayfish's Furniture Mod] (MrCrayfishFurnitureModv3.4.7(1.7.10).jar)      UCHIJAAAA    Mystcraft{0.12.3.04} [Mystcraft] (mystcraft-1.7.10-0.12.3.04.jar)      UCHIJAAAA    naturescompass{1.3.1} [Nature's Compass] (NaturesCompass-1.7.10-1.3.1.jar)      UCHIJAAAA    NetherOres{1.7.10R2.3.1} [Nether Ores] (NetherOres-[1.7.10]2.3.1-22.jar)      UCHIJAAAA    notenoughIDs{1.4.3.4} [NotEnoughIDs] (NotEnoughIDs-1.4.3.4.jar)      UCHIJAAAA    NuclearCraft{1.9g} [NuclearCraft] (NuclearCraft-1.9g--1.7.10.jar)      UCHIJAAAA    samsocean{1.7.10-1.0.0} [Classic Oceans] (OceanFloor-1.7.10-1.0.0.jar)      UCHIJAAAA    OpenMods{0.10.1} [OpenMods] (OpenModsLib-1.7.10-0.10.1.jar)      UCHIJAAAA    OpenBlocks{1.6} [OpenBlocks] (OpenBlocks-1.7.10-1.6.jar)      UCHIJAAAA    openmodularturrets{2.3.6} [Open Modular Turrets] (OpenModularTurrets-2.3.6.jar)      UCHIJAAAA    PickleTweaks{1.5} [PickleTweaks] (PickleTweaks-1.6.jar)      UCHIJAAAA    PortalGun{4.0.0-beta-6} [PortalGun] (PortalGun-4.0.0-beta-6-fix-1.jar)      UCHIJAAAA    pressure{1.3.0.fix1} [Pressure Pipes] (pressure-1.3.0.fix1-mc1.7.10.jar)      UCHIJAAAA    primitivemobs{1.0} [Primitive Mobs] (primitivemobs-1.0c-1.7.10.jar)      UCHIJAAAA    ProjectE{1.7.10-PE1.10.1} [ProjectE] (ProjectE-1.7.10-PE1.10.1.jar)      UCHIJAAAA    ProjRed|Transmission{4.7.0pre12.95} [ProjectRed Transmission] (ProjectRed-1.7.10-4.7.0pre12.95-Integration.jar)      UCHIJAAAA    ProjRed|Transportation{4.7.0pre12.95} [ProjectRed Transportation] (ProjectRed-1.7.10-4.7.0pre12.95-Mechanical.jar)      UCHIJAAAA    ProjRed|Compatibility{4.7.0pre12.95} [ProjectRed Compatibility] (ProjectRed-1.7.10-4.7.0pre12.95-Compat.jar)      UCHIJAAAA    ProjRed|Integration{4.7.0pre12.95} [ProjectRed Integration] (ProjectRed-1.7.10-4.7.0pre12.95-Integration.jar)      UCHIJAAAA    ProjRed|Fabrication{4.7.0pre12.95} [ProjectRed Fabrication] (ProjectRed-1.7.10-4.7.0pre12.95-Fabrication.jar)      UCHIJAAAA    ProjRed|Illumination{4.7.0pre12.95} [ProjectRed Illumination] (ProjectRed-1.7.10-4.7.0pre12.95-Lighting.jar)      UCHIJAAAA    ProjRed|Expansion{4.7.0pre12.95} [ProjectRed Expansion] (ProjectRed-1.7.10-4.7.0pre12.95-Mechanical.jar)      UCHIJAAAA    quantumflux{1.7.10-1.3.4} [QuantumFlux] (QuantumFlux-1.7.10-1.3.4.jar)      UCHIJAAAA    RandomThings{2.2.4} [Random Things] (RandomThings-2.2.4.jar)      UCHIJAAAA    reborncore{1.1.0.15} [RebornCore] (RebornCore-1.1.0.15-universal.jar)      UCHIJAAAA    rfutilities{0.5-hotfix4} [RFUtilities] (RFUtilities-MC1.7.10-0.5-hotfix4.jar)      UCHIJAAAA    secretroomsmod{4.7.1} [The SecretRoomsMod] (secretroomsmod-1.7.10-4.7.1.413.jar)      UCHIJAAAA    simplecore{1.1.1.3} [SimpleCore API] (simplecore-1.7.10-1.1.1.3.jar)      UCHIJAAAA    simpleores{1.6.1.4} [SimpleOres 2] (simpleores-1.7.10-1.6.1.4.jar)      UCHIJAAAA    SophisticatedWolves{3.2.0} [SophisticatedWolves] (Sophisticated Wolves 3.2.0.jar)      UCHIJAAAA    Stackie{1.6.0.36} [Stackie] (Stackie-1.7.10-1.6.0.36-universal.jar)      UCHIJAAAA    StevesFactoryManager{A93} [Steve's Factory Manager] (StevesFactoryManagerA93.jar)      UCHIJAAAA    StevesAddons{0.10.16} [Steve's Addons] (StevesAddons-1.7.10-0.10.16.jar)      UCHIJAAAA    StevesCarts{2.0.0.b18} [Steve's Carts 2] (StevesCarts2.0.0.b18.jar)      UCHIJAAAA    StorageDrawers{1.7.10-1.10.9} [Storage Drawers] (StorageDrawers-1.7.10-1.10.9.jar)      UCHIJAAAA    Sync{4.0.1} [Sync] (Sync-4.0.1.jar)      UCHIJAAAA    techreborn{0.7.21.1131} [TechReborn] (TechReborn-1.7.10-0.7.21.1131-universal.jar)      UCHIJAAAA    thaumcraftneiplugin{@VERSION@} [Thaumcraft NEI Plugin] (thaumcraftneiplugin-1.7.10-1.7a.jar)      UCHIJAAAA    thebetweenlands{1.0.6-alpha} [The Betweenlands] (TheBetweenlands-1.0.6-alpha-universal.jar)      UCHIJAAAA    erebus{0.4.7} [Erebus] (TheErebus-0.4.7.jar)      UCHIJAAAA    ThermalDynamics{1.7.10R1.2.1} [Thermal Dynamics] (ThermalDynamics-[1.7.10]1.2.1-172.jar)      UCHIJAAAA    TiCTooltips{1.2.5} [TiC Tooltips] (TiCTooltips-mc1.7.10-1.2.5.jar)      UCHIJAAAA    tumbleweed{1.7.10-0.2} [Tumbleweed] (tumbleweed-1.7.10-0.2.jar)      UCHIJAAAA    ultimate_unicorn_mod{1.5.17} [Wings, Horns, and Hooves, the Ultimate Unicorn Mod!] (ultimate_unicorn_mod-1.7.10-1.5.17.jar)      UCHIJAAAA    vampirism{0.7.9} [Vampirism] (Vampirism-1.7.10-0.7.9.jar)      UCHIJAAAA    VanillaPlus{1.5.1} [VanillaPlus] (VanillaPlus-1.7.10-1.5.1.jar)      UCHIJAAAA    VeinMiner{0.36.0_1.7.10-28a7f13} [Vein Miner] (VeinMiner-1.7.10-0.36.0.496+28a7f13.jar)      UCHIJAAAA    VeinMinerModSupport{0.36.0_1.7.10-28a7f13} [Mod Support] (VeinMiner-1.7.10-0.36.0.496+28a7f13.jar)      UCHIJAAAA    voltzenginemodflag{1.11.0.491} [VoltzEngine mod protection, flag, and region system] (VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar)      UCHIJAAAA    voltzenginemodcompat{1.11.0.491} [Voltz Engine Mod Compatibility Loader] (VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar)      UCHIJAAAA    WailaHarvestability{1.1.6} [Waila Harvestability] (WailaHarvestability-mc1.7.10-1.1.6.jar)      UCHIJAAAA    wailaplugins{MC1.7.10-0.2.0-25} [WAILA Plugins] (WAILAPlugins-MC1.7.10-0.2.0-25.jar)      UCHIJAAAA    wawla{1.3.1} [What Are We Looking At] (Wawla-1.0.5.120.jar)      UCHIJAAAA    wildnetherwart{2.1} [Wild Netherwart] (wild_netherwart-1.7.10-v2.1.jar)      UCHIJAAAA    witchery{0.24.1} [Witchery] (witchery-1.7.10-0.24.1.jar)      UCHIJAAAA    wolfarmor{1.3.0} [Wolf Armor and Storage] (wolfarmor-1.3.0.1.jar)      UCHIJAAAA    XaeroMinimapFair{21.10.40} [Xaero's Minimap] (Xaeros_Minimap_FP21.10.40_Forge_1.7.10.jar)      UCHIJAAAA    XaeroWorldMap{1.14.1.32} [Xaero's World Map] (XaerosWorldMap_1.14.1.32_Forge_1.7.10.jar)      UCHIJAAAA    McMultipart{1.2.0.345} [Minecraft Multipart Plugin] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar)      UCHIJAAAA    ForgeRelocation{0.0.1.4} [ForgeRelocation] (ForgeRelocation-0.0.1.4-universal.jar)      UCHIJAAAA    MCFrames{1.0} [MCFrames] (ForgeRelocation-0.0.1.4-universal.jar)      UCHIJAAAA    RelocationFMP{0.0.1.2} [RelocationFMP] (ForgeRelocationFMP-0.0.1.2-universal.jar)      UCHIJAAAA    libsandstone{1.0.0} [libsandstone] (LibSandstone-1.0.0.jar)      UCHIJAAAA    IguanaTweaksTConstruct{1.7.10-2.1.6.163} [Iguana Tinker Tweaks] (IguanaTinkerTweaks-1.7.10-2.1.6.jar)      UCHIJAAAA    jaopca{1.7.10-W.0.6.25} [JAOPCA] (JAOPCA-1.7.10-W.0.6.25.jar)      UCHIJAAAA    UniDict{1.7.10-2.9.2} [UniDict] (UniDict-1.7.10-2.9.2.jar)      UCHIJAAAA    ForgeMicroblock{1.2.0.345} [Forge Microblocks] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar)      UD    MineFactoryReloaded|CompatAtum{1.7.10R2.8.1} [MFR Compat: Atum] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UD    MineFactoryReloaded|CompatBackTools{1.7.10R2.8.1} [MFR Compat: BackTools] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UD    MineFactoryReloaded|CompatSufficientBiomes{1.7.10R2.8.1} [MFR Compat: Sufficient Biomes] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 551.76' Renderer: 'NVIDIA GeForce GTX 1050 Ti/PCIe/SSE2'     OpenModsLib class transformers: [stencil_patches:FINISHED],[movement_callback:FINISHED],[player_damage_hook:FINISHED],[map_gen_fix:FINISHED],[gl_capabilities_hook:FINISHED],[player_render_hook:FINISHED]     Class transformer null safety: all safe     CoFHCore: -[1.7.10]3.1.4-329     AE2 Version: beta rv3-beta-6 for Forge 10.13.4.1448     Mantle Environment: DO NOT REPORT THIS CRASH! Unsupported mods in environment: optifine     ThermalFoundation: -[1.7.10]1.2.6-118     ThermalExpansion: -[1.7.10]4.1.5-248     MineFactoryReloaded: -[1.7.10]2.8.1-174     TConstruct Environment: Environment healthy.     NetherOres: -[1.7.10]2.3.1-22     ThermalDynamics: -[1.7.10]1.2.1-172     List of loaded APIs:          * AbyssalCraftAPI (1.7) from AbyssalCraft-1.7.10-1.9.1.3-FINAL.jar         * ActuallyAdditionsAPI (3) from ActuallyAdditions-1.7.10-r21.jar         * ae2wct|API (1.7.10-rv3-1.8.6b) from WirelessCraftingTerminal-1.7.10-rv3-1.8.7.4b.jar         * AgriCraftAPI (1.0) from AgriCraft-1.7.10-1.5.0.jar         * appliedenergistics2|API (rv3) from appliedenergistics2-rv3-beta-6.jar         * Baubles|API (1.0.1.10) from Baubles-1.7.10-1.0.1.10.jar         * BetterAchievements|API (0.1.0) from BetterAchievements-1.7.10-0.1.0.jar         * BiomesOPlentyAPI (1.0.0) from BiomesOPlenty-1.7.10-2.1.0.1889-universal.jar         * BloodMagicAPI (1.3.3-13) from BloodMagic-1.7.10-1.3.3-17.jar         * BotaniaAPI (76) from Botania r1.8-249.jar         * BuildCraftAPI|blocks (1.0) from Railcraft_1.7.10-9.12.2.0.jar         * BuildCraftAPI|blueprints (1.5) from buildcraft-7.1.25.jar         * BuildCraftAPI|boards (2.0) from buildcraft-7.1.25.jar         * BuildCraftAPI|core (1.0) from extrautilities-1.2.12.jar         * BuildCraftAPI|crops (1.1) from buildcraft-7.1.25.jar         * BuildCraftAPI|events (2.0) from buildcraft-7.1.25.jar         * BuildCraftAPI|facades (1.1) from buildcraft-7.1.25.jar         * BuildCraftAPI|filler (4.0) from buildcraft-7.1.25.jar         * BuildCraftAPI|fuels (2.0) from buildcraft-7.1.25.jar         * BuildCraftAPI|gates (4.1) from buildcraft-7.1.25.jar         * BuildCraftAPI|items (1.1) from buildcraft-7.1.25.jar         * BuildCraftAPI|library (2.0) from buildcraft-7.1.25.jar         * BuildCraftAPI|lists (1.0) from Railcraft_1.7.10-9.12.2.0.jar         * BuildCraftAPI|power (1.3) from buildcraft-7.1.25.jar         * BuildCraftAPI|recipes (3.1) from buildcraft-7.1.25.jar         * BuildCraftAPI|robotics (3.0) from buildcraft-7.1.25.jar         * BuildCraftAPI|statements (1.1) from Railcraft_1.7.10-9.12.2.0.jar         * BuildCraftAPI|tablet (1.0) from Railcraft_1.7.10-9.12.2.0.jar         * BuildCraftAPI|tiles (1.2) from Railcraft_1.7.10-9.12.2.0.jar         * BuildCraftAPI|tools (1.0) from extrautilities-1.2.12.jar         * BuildCraftAPI|transport (4.1) from Railcraft_1.7.10-9.12.2.0.jar         * CarpentersBlocks|API (3.3.7) from Carpenter's Blocks v3.3.8.2 - MC 1.7.10.jar         * ChiselAPI (0.1.1) from Chisel-2.9.5.11.jar         * ChiselAPI|Carving (0.1.1) from Chisel-2.9.5.11.jar         * ChiselAPI|Rendering (0.1.1) from Chisel-2.9.5.11.jar         * CoFHAPI (1.7.10R1.1.0) from NuclearCraft-1.9g--1.7.10.jar         * CoFHAPI|block (1.7.10R1.1.0) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHAPI|core (1.7.10R1.3.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHAPI|energy (1.7.10R1.0.7) from StevesAddons-1.7.10-0.10.16.jar         * CoFHAPI|fluid (1.7.10R1.1.0) from NuclearCraft-1.9g--1.7.10.jar         * CoFHAPI|inventory (1.7.10R1.3.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHAPI|item (1.7.10R1.0.10) from Mekanism-1.7.10-9.1.1.1031.jar         * CoFHAPI|modhelpers (1.7.10R1.1.0) from NuclearCraft-1.9g--1.7.10.jar         * CoFHAPI|tileentity (1.7.10R1.3.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHAPI|transport (1.7.10R1.1.0) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHAPI|world (1.7.10R1.3.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHLib|audio (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|gui (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|gui|container (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHLib|gui|element (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHLib|gui|element|listbox (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|gui|slot (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|inventory (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHLib|render (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHLib|render|particle (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|util (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|util|helpers (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|util|position (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|world (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHLib|world|feature (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * ComputerCraft|API (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|FileSystem (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Lua (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Media (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Peripheral (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Permissions (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Redstone (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Turtle (1.75) from ComputerCraft1.75.jar         * DraconicEvolution|API (1.2) from Draconic-Evolution-1.7.10-1.0.2h.jar         * EnderIOAPI (0.0.2) from EnderIO-1.7.10-2.3.0.430_beta.jar         * EnderIOAPI|Redstone (0.0.2) from EnderIO-1.7.10-2.3.0.430_beta.jar         * EnderIOAPI|Teleport (0.0.2) from EnderIO-1.7.10-2.3.0.430_beta.jar         * EnderIOAPI|Tools (0.0.2) from EnderIO-1.7.10-2.3.0.430_beta.jar         * ForestryAPI|apiculture (4.8.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|arboriculture (4.2.1) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|circuits (3.1.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|core (5.0.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|farming (2.1.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|food (1.1.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|fuels (2.0.1) from TechReborn-1.7.10-0.7.21.1131-universal.jar         * ForestryAPI|genetics (4.7.1) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|hives (4.1.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|lepidopterology (1.3.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|mail (3.0.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|multiblock (3.0.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|recipes (5.4.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|storage (3.0.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|world (2.1.0) from forestry_1.7.10-4.2.16.64.jar         * ForgeRelocation|API (0.0.1.4) from ForgeRelocation-0.0.1.4-universal.jar         * Fossils and Archeology Revival API (7.3.1) from fossilsarcheology-7.3.2.jar         * Galacticraft API (1.1) from Galacticraft-1.7-3.0.12.504.jar         * gendustryAPI (2.3.0) from gendustry-1.6.3.132-mc1.7.10.jar         * IC2API (1.0) from industrialcraft-2-2.2.827-experimental.jar         * ImmersiveEngineering|API (1.0) from ImmersiveEngineering-0.7.7.jar         * MekanismAPI|core (9.0.0) from NuclearCraft-1.9g--1.7.10.jar         * MekanismAPI|energy (9.0.0) from NuclearCraft-1.9g--1.7.10.jar         * MekanismAPI|gas (9.0.0) from Mekanism-1.7.10-9.1.1.1031.jar         * MekanismAPI|infuse (9.0.0) from Mekanism-1.7.10-9.1.1.1031.jar         * MekanismAPI|laser (9.0.0) from Mekanism-1.7.10-9.1.1.1031.jar         * MekanismAPI|reactor (9.0.0) from Mekanism-1.7.10-9.1.1.1031.jar         * MekanismAPI|recipe (9.0.0) from Mekanism-1.7.10-9.1.1.1031.jar         * MekanismAPI|transmitter (9.0.0) from NuclearCraft-1.9g--1.7.10.jar         * MekanismAPI|util (9.0.0) from Mekanism-1.7.10-9.1.1.1031.jar         * Mystcraft|API (0.1) from mystcraft-1.7.10-0.12.3.04.jar         * OpenBlocks|API (1.1) from OpenBlocks-1.7.10-1.6.jar         * pressureAPI (1.3.0.fix1) from pressure-1.3.0.fix1-mc1.7.10.jar         * ProjectEAPI (7) from ProjectE-1.7.10-PE1.10.1.jar         * RailcraftAPI|bore (1.0.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|carts (1.6.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|core (1.5.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|crafting (1.0.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|electricity (2.0.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|events (1.0.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|fuel (1.0.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|helpers (1.1.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|items (1.0.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|locomotive (1.1.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|signals (2.3.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|tracks (2.3.0) from Railcraft_1.7.10-9.12.2.0.jar         * reborncoreAPI (1.1.0.15) from RebornCore-1.1.0.15-universal.jar         * StorageDrawersAPI (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|config (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|event (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|inventory (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|pack (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|registry (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|render (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|storage (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|storage-attribute (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * techrebornAPI (0.7.21.1131) from TechReborn-1.7.10-0.7.21.1131-universal.jar         * Thaumcraft|API (4.2.2.0) from Railcraft_1.7.10-9.12.2.0.jar         * VeinMinerApi (0.3) from VeinMiner-1.7.10-0.36.0.496+28a7f13.jar         * VoltzEngineAPI (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|crafting-items (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|data (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|energy (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|energy-items (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|event (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|explosive-items (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|explosives (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|items (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|recipe (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|tile (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|tools (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|weapons (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * WailaAPI (1.2) from Waila-1.5.10_1.7.10.jar     Chisel: Errors like "[FML]: Unable to lookup ..." are NOT the cause of this crash. You can safely ignore these errors. And update forge while you're at it.     EnderIO: Found the following problem(s) with your installation:                   * Optifine is installed. This is NOT supported.                   * An unknown AE2 API is installed (rv3 from appliedenergistics2-rv3-beta-6.jar).                     Ender IO was build against API version rv2 and may or may not work with a newer version.                   * The RF API that is being used (1.7.10R1.0.2 from <unknown>) differes from that that is reported as being loaded (1.7.10R1.0.7 from StevesAddons-1.7.10-0.10.16.jar).                     It is a supported version, but that difference may lead to problems.                  This may have caused the error. Try reproducing the crash WITHOUT this/these mod(s) before reporting it.     Stencil buffer state: Function set: GL30, pool: forge, bits: 8     Forestry : Warning: You have mods that change the behavior of Minecraft, ForgeModLoader, and/or Minecraft Forge to your client:  Optifine These may have caused this error, and may not be supported. Try reproducing the crash WITHOUT these mods, and report it then.     AE2 Integration: IC2:ON, RotaryCraft:OFF, RC:ON, BuildCraftCore:ON, BuildCraftTransport:ON, BuildCraftBuilder:ON, RF:ON, RFItem:ON, MFR:ON, DSU:ON, FZ:OFF, FMP:ON, RB:OFF, CLApi:OFF, Waila:ON, InvTweaks:ON, NEI:ON, CraftGuide:OFF, Mekanism:ON, ImmibisMicroblocks:OFF, BetterStorage:OFF, OpenComputers:OFF, PneumaticCraft:OFF     Launched Version: forge-10.13.4.1614     LWJGL: 2.9.1     OpenGL: NVIDIA GeForce GTX 1050 Ti/PCIe/SSE2 GL version 4.6.0 NVIDIA 551.76, NVIDIA Corporation     GL Caps: Using GL 1.3 multitexturing. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Anisotropic filtering is supported and maximum anisotropy is 16. Shaders are available because OpenGL 2.1 is supported.     Is Modded: Definitely; Client brand changed to 'fml,forge'     Type: Client (map_client.txt)     Resource Packs: []     Current Language: English (US)     Profiler Position: N/A (disabled)     Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used     Anisotropic Filtering: Off (1)     OptiFine Version: OptiFine_1.7.10_HD_U_D6     Render Distance Chunks: 8     Mipmaps: 4     Anisotropic Filtering: 1     Antialiasing: 0     Multitexture: false     OpenGlVersion: 4.6.0 NVIDIA 551.76     OpenGlRenderer: NVIDIA GeForce GTX 1050 Ti/PCIe/SSE2     OpenGlVendor: NVIDIA Corporation     CpuCount: 4
    • Also doubting if my usage of awardStat is correct. It just looks like this right now: player.awardStat(SampleModRegistry.FIREWORK_BOOSTS_USED.getId()); but there are places vanilla Minecraft uses the function like this: .awardStat(Stats.CUSTOM.get(Stats.DAMAGE_BLOCKED_BY_SHIELD)
    • Make a test without fancytrinkets
    • What's the issue your running into? The link for the image you posted is also broken.
    • What does NetworkHooks.openScreen(player, blockEntity, pPos) do?
  • Topics

×
×
  • Create New...

Important Information

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