Jump to content

[1.10.2] Textures not working.


10forever

Recommended Posts

I have an item called itemRegid and the textures aren't working when I run the game.

 

The itemRegid.png is in: src/main/resources/assets/rm/textures/items

The itemRegid.json is in: src/main/resources/assets/rm/models/item

 

itemRegid.json:

{
  "parent": "item/generated",
  "textures": {
    "layer0": "rm:items/itemRegid"
  }
}

 

ModItems.java:

package tntdiamond.regidmod.item;

import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.Item;
import net.minecraftforge.fml.common.registry.GameRegistry;

public class ModItems {

public static ItemBase itemRegid;

public static void init() {
	itemRegid = register(new ItemBase("itemRegid").setCreativeTab(CreativeTabs.MATERIALS));

}

private static <T extends Item> T register(T item) {
	GameRegistry.register(item);

	if(item instanceof ItemModelProvider) {
		((ItemModelProvider)item).registerItemModel(item);
	}

	return item;
}
}

 

itemRegid.class

Link to comment
Share on other sites

Here is the log:

 

[17:30:09] [main/INFO]: Extra: []
[17:30:10] [main/INFO]: Running with arguments: [--userProperties, {}, --assetsDir, /Users/Tnt/.gradle/caches/minecraft/assets, --assetIndex, 1.10, --accessToken{REDACTED}, --version, 1.10.2, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[17:30:10] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[17:30:10] [main/INFO]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[17:30:10] [main/INFO]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[17:30:10] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[17:30:10] [main/INFO]: Forge Mod Loader version 12.18.1.2046 for Minecraft 1.10.2 loading
[17:30:10] [main/INFO]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_60, running on Mac OS X:x86_64:10.11.6, installed at /Library/Java/JavaVirtualMachines/jdk1.8.0_60.jdk/Contents/Home/jre
[17:30:10] [main/INFO]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[17:30:10] [main/INFO]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[17:30:10] [main/INFO]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[17:30:10] [main/INFO]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[17:30:10] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[17:30:10] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[17:30:10] [main/INFO]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[17:30:10] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[17:30:10] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[17:30:10] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[17:30:10] [main/ERROR]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[17:30:13] [main/ERROR]: FML appears to be missing any signature data. This is not a good thing
[17:30:13] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[17:30:13] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[17:30:15] [main/INFO]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[17:30:15] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[17:30:15] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[17:30:15] [main/INFO]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[17:30:17] [Client thread/INFO]: Setting user: Player460
[17:30:29] [Client thread/WARN]: Skipping bad option: lastServer:
[17:30:29] [Client thread/INFO]: LWJGL Version: 2.9.2
[17:30:30] [Client thread/INFO]: MinecraftForge v12.18.1.2046 Initialized
[17:30:30] [Client thread/INFO]: Replaced 233 ore recipes
[17:30:30] [Client thread/INFO]: Found 0 mods from the command line. Injecting into mod discoverer
[17:30:30] [Client thread/INFO]: Searching /Users/Tnt/Desktop/Modding Workspace 1.10/run/mods for mods
[17:30:34] [Client thread/INFO]: Forge Mod Loader has identified 4 mods to load
[17:30:34] [Client thread/INFO]: Attempting connection with missing mods [mcp, FML, Forge, rm] at CLIENT
[17:30:34] [Client thread/INFO]: Attempting connection with missing mods [mcp, FML, Forge, rm] at SERVER
[17:30:36] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Regid Mod
[17:30:36] [Client thread/INFO]: Processing ObjectHolder annotations
[17:30:36] [Client thread/INFO]: Found 423 ObjectHolder annotations
[17:30:36] [Client thread/INFO]: Identifying ItemStackHolder annotations
[17:30:36] [Client thread/INFO]: Found 0 ItemStackHolder annotations
[17:30:37] [Client thread/INFO]: Configured a dormant chunk cache size of 0
[17:30:37] [Forge Version Check/INFO]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[17:30:37] [Client thread/INFO]: [tntdiamond.regidmod.RegidMod:preInit:28]: Tutorial Mod is loading!
[17:30:37] [Client thread/INFO]: Applying holder lookups
[17:30:37] [Client thread/INFO]: Holder lookups applied
[17:30:37] [Client thread/INFO]: Injecting itemstacks
[17:30:37] [Client thread/INFO]: Itemstack injection complete
[17:30:37] [Forge Version Check/INFO]: [Forge] Found status: OUTDATED Target: 12.18.1.2073
[17:30:40] [sound Library Loader/INFO]: Starting up SoundSystem...
[17:30:40] [Thread-6/INFO]: Initializing LWJGL OpenAL
[17:30:40] [Thread-6/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[17:30:40] [Thread-6/INFO]: OpenAL initialized.
[17:30:41] [sound Library Loader/INFO]: Sound engine started
[17:30:46] [Client thread/INFO]: Max texture size: 16384
[17:30:46] [Client thread/INFO]: Created: 16x16 textures-atlas
[17:30:49] [Client thread/ERROR]: Exception loading model for variant tutorial:itemRegid#inventory for item "rm:itemRegid", normal location exception: 
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model tutorial:item/itemRegid with loader VanillaLoader.INSTANCE, skipping
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:317) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?]
at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:147) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:122) [simpleReloadableResourceManager.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:499) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:351) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(SourceFile:124) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_60]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_60]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_60]
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_60]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_60]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_60]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_60]
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_60]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: java.io.FileNotFoundException: tutorial:models/item/itemRegid.json
at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:69) ~[simpleReloadableResourceManager.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:311) ~[ModelBakery.class:?]
at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:118) ~[ModelLoader.class:?]
at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:868) ~[ModelLoader$VanillaLoader.class:?]
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
... 20 more
[17:30:49] [Client thread/ERROR]: Exception loading model for variant tutorial:itemRegid#inventory for item "rm:itemRegid", blockstate location exception: 
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model tutorial:itemRegid#inventory with loader VariantLoader.INSTANCE, skipping
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:325) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?]
at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:147) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:122) [simpleReloadableResourceManager.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:499) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:351) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(SourceFile:124) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_60]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_60]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_60]
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_60]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_60]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_60]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_60]
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_60]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?]
at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1183) ~[ModelLoader$VariantLoader.class:?]
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
... 20 more
[17:30:50] [Client thread/INFO]: Injecting itemstacks
[17:30:50] [Client thread/INFO]: Itemstack injection complete
[17:30:50] [Client thread/INFO]: Forge Mod Loader has successfully loaded 4 mods
[17:30:50] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Regid Mod
[17:30:53] [Client thread/INFO]: SoundSystem shutting down...
[17:30:53] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
[17:30:53] [sound Library Loader/INFO]: Starting up SoundSystem...
[17:30:54] [Thread-8/INFO]: Initializing LWJGL OpenAL
[17:30:54] [Thread-8/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[17:30:54] [Thread-8/INFO]: OpenAL initialized.
[17:30:54] [sound Library Loader/INFO]: Sound engine started
[17:30:57] [Client thread/INFO]: Max texture size: 16384
[17:30:57] [Client thread/INFO]: Created: 1024x512 textures-atlas
[17:30:59] [Client thread/ERROR]: Exception loading model for variant tutorial:itemRegid#inventory for item "rm:itemRegid", normal location exception: 
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model tutorial:item/itemRegid with loader VanillaLoader.INSTANCE, skipping
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:317) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?]
at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:147) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:132) [simpleReloadableResourceManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:113) [simpleReloadableResourceManager.class:?]
at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:755) [Minecraft.class:?]
at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:338) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:520) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:351) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(SourceFile:124) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_60]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_60]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_60]
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_60]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_60]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_60]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_60]
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_60]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: java.io.FileNotFoundException: tutorial:models/item/itemRegid.json
at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:69) ~[simpleReloadableResourceManager.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:311) ~[ModelBakery.class:?]
at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:118) ~[ModelLoader.class:?]
at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:868) ~[ModelLoader$VanillaLoader.class:?]
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
... 23 more
[17:30:59] [Client thread/ERROR]: Exception loading model for variant tutorial:itemRegid#inventory for item "rm:itemRegid", blockstate location exception: 
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model tutorial:itemRegid#inventory with loader VariantLoader.INSTANCE, skipping
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:325) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?]
at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:147) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:132) [simpleReloadableResourceManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:113) [simpleReloadableResourceManager.class:?]
at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:755) [Minecraft.class:?]
at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:338) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:520) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:351) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(SourceFile:124) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_60]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_60]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_60]
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_60]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_60]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_60]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_60]
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_60]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?]
at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1183) ~[ModelLoader$VariantLoader.class:?]
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
... 23 more
[17:30:59] [Client thread/WARN]: Skipping bad option: lastServer:
[17:31:01] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
[17:31:08] [server thread/INFO]: Starting integrated minecraft server version 1.10.2
[17:31:08] [server thread/INFO]: Generating keypair
[17:31:08] [server thread/INFO]: Injecting existing block and item data into this server instance
[17:31:08] [server thread/INFO]: Applying holder lookups
[17:31:08] [server thread/INFO]: Holder lookups applied
[17:31:08] [server thread/INFO]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@1695e794)
[17:31:09] [server thread/INFO]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@1695e794)
[17:31:09] [server thread/INFO]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@1695e794)
[17:31:09] [server thread/INFO]: Preparing start region for level 0
[17:31:11] [server thread/INFO]: Preparing spawn area: 0%
[17:31:12] [server thread/INFO]: Preparing spawn area: 17%
[17:31:13] [server thread/INFO]: Preparing spawn area: 67%
[17:31:14] [server thread/INFO]: Changing view distance to 12, from 10
[17:31:15] [Netty Local Client IO #0/INFO]: Server protocol version 2
[17:31:15] [Netty Server IO #1/INFO]: Client protocol version 2
[17:31:15] [Netty Server IO #1/INFO]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]
[17:31:15] [Netty Local Client IO #0/INFO]: [Netty Local Client IO #0] Client side modded connection established
[17:31:15] [server thread/INFO]: [server thread] Server side modded connection established
[17:31:15] [server thread/INFO]: Player460[local:E:769bf1f0] logged in with entity id 157 at (-32.5, 67.0, 67.5)
[17:31:15] [server thread/INFO]: Player460 joined the game
[17:31:18] [server thread/INFO]: Saving and pausing game...
[17:31:18] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[17:31:18] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[17:31:18] [server thread/INFO]: Saving chunks for level 'New World'/The End
[17:31:19] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 3169ms behind, skipping 63 tick(s)
[17:31:19] [server thread/INFO]: Saving and pausing game...
[17:31:19] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[17:31:20] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@4087b57[id=46c1b760-ca01-3b6f-9924-2c0867885238,name=Player460,properties={},legacy=false]
com.mojang.authlib.exceptions.AuthenticationException: The client has sent too many requests within a certain amount of time
at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:65) ~[YggdrasilAuthenticationService.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:175) [YggdrasilMinecraftSessionService.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:59) [YggdrasilMinecraftSessionService$1.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:56) [YggdrasilMinecraftSessionService$1.class:?]
at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3524) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2317) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2280) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2195) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache.get(LocalCache.java:3934) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3938) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4821) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:4827) [guava-17.0.jar:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:165) [YggdrasilMinecraftSessionService.class:?]
at net.minecraft.client.Minecraft.getProfileProperties(Minecraft.java:2907) [Minecraft.class:?]
at net.minecraft.client.resources.SkinManager$3.run(SourceFile:106) [skinManager$3.class:?]
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [?:1.8.0_60]
at java.util.concurrent.FutureTask.run(FutureTask.java:266) [?:1.8.0_60]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [?:1.8.0_60]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [?:1.8.0_60]
at java.lang.Thread.run(Thread.java:745) [?:1.8.0_60]
[17:31:20] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[17:31:20] [server thread/INFO]: Saving chunks for level 'New World'/The End
[17:31:28] [server thread/INFO]: Player460 has just earned the achievement [Taking Inventory]
[17:31:28] [Client thread/INFO]: [CHAT] Player460 has just earned the achievement [Taking Inventory]
[17:31:37] [server thread/INFO]: Saving and pausing game...
[17:31:37] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[17:31:37] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[17:31:37] [server thread/INFO]: Saving chunks for level 'New World'/The End
[17:31:37] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 4298ms behind, skipping 85 tick(s)
[17:31:38] [server thread/INFO]: Stopping server
[17:31:38] [server thread/INFO]: Saving players
[17:31:38] [server thread/INFO]: Saving worlds
[17:31:38] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[17:31:38] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[17:31:38] [server thread/INFO]: Saving chunks for level 'New World'/The End
[17:31:38] [server thread/INFO]: Unloading dimension 0
[17:31:38] [server thread/INFO]: Unloading dimension -1
[17:31:38] [server thread/INFO]: Unloading dimension 1
[17:31:39] [server thread/INFO]: Applying holder lookups
[17:31:39] [server thread/INFO]: Holder lookups applied
[17:31:39] [Client thread/INFO]: Stopping!
[17:31:39] [Client thread/INFO]: SoundSystem shutting down...
[17:31:40] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com

Link to comment
Share on other sites

What's the model registration code?

 

The code where you tell Minecraft which models to use for your

Item

s.

 

You should be calling

ModelLoader.setCustomModelResourceLocation

or

ModelLoader.setCustomMeshDefinition

in preInit on the client side only.

 

[17:30:49] [Client thread/ERROR]: Exception loading model for variant tutorial:itemRegid#inventory for item "rm:itemRegid", normal location exception: 
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model tutorial:item/itemRegid with loader VanillaLoader.INSTANCE, skipping
...
Caused by: java.io.FileNotFoundException: tutorial:models/item/itemRegid.json

 

You're telling Minecraft to use the

tutorial:itemRegid

model, which doesn't exist. To use the assets/rm/models/item/itemRegid.json model file, pass

rm:itemRegid

as the domain/path component of the

ModelResourceLocation

.

 

I have an explanation of the model loading process and how model locations are mapped to model files here, you may find it useful.

 

1.11 will require all asset file names (and probably registry names) to be lowercase. I'd recommend using lowercase names now to avoid having to rename things when updating.

 

In future when someone asks for the FML log, please post the logs/fml-client-latest.log file rather than the console output. This contains some additional information that's useful in some cases (though not required in this case).

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

What's the model registration code?

Post your client proxy (and any of your mod's item model registration code called from it).

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Link to comment
Share on other sites

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

    • Just like the title says, my game keeps crashing while just trying to build a torch in my inventory or anything really that isn't a block. I get this error: Error: java.lang.NullPointerException: Rendering screen Here is my full crash report: ---- Minecraft Crash Report ---- WARNING: coremods are present:   IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar)   UniversalTweaksCore (UniversalTweaks-1.12.2-1.12.0.jar)   LoadingPlugin (ChunkAnimator-1.12.2-1.2.1.jar)   MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)   LogisticsPipesCoreLoader (logisticspipes-0.10.3.114.jar)   SuperMartijn642's Core Lib Plugin (_supermartijn642corelib-1.1.17a-forge-mc1.12.jar)   Quark Plugin (Quark-r1.6-179.jar)   AppleCore (AppleCore-mc1.12.2-3.4.0.jar)   UniDictCoreMod (UniDict-1.12.2-3.0.10.jar)   LoadingPlugin (BetterWithLib-1.12-1.5.jar)   MixinBooter (!mixinbooter-9.3.jar)   Fusion Plugin (fusion-1.1.1-forge-mc1.12.jar)   Inventory Tweaks Coremod (InventoryTweaks-1.63.jar)   ChunkGenLimiterCoremod (chunkgenlimiter-1.1-core.jar)   GregTechLoadingPlugin (gregtech-1.12.2-2.8.10-beta.jar)   LoadingPlugin (ResourceLoader-MC1.12.1-1.5.3.jar)   MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar)   JeiUtilitiesLoadingPlugin (JEI-Utilities-1.12.2-0.2.12.jar)   LoadingPlugin (Reskillable-1.12.2-1.13.0.jar)   CoreMod (Aroma1997Core-1.12.2-2.0.0.2.jar)   Moving Elevators Plugin (movingelevators-1.4.8-forge-mc1.12.jar)   FutureMC (Future-MC-0.2.20.jar)   TransformLoader (DynamicSurroundings-1.12.2-3.6.1.0.jar)   LoadingPlugin (RandomThings-MC1.12.2-4.2.7.4.jar)   RandomPatches (randompatches-1.12.2-1.22.1.10.jar)   SSLoadingPlugin (SereneSeasons-1.12.2-1.2.18-universal.jar)   PregenHooks (Chunk-Pregenerator-1.12.2-4.4.9.jar)   ForgelinPlugin (Forgelin-1.8.4.jar)   ReplantFMLLoadingPlugin (replant1.12.2-1.0.0.jar)   OpenModsCorePlugin (OpenModsLib-1.12.2-0.12.2.jar)   ApotheosisCore (Apotheosis-1.12.2-1.12.5.jar)   NWRTweak (redstonepaste-mc1.12-1.7.5.jar)   CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   EnderCorePlugin (EnderCore-1.12.2-0.5.78-core.jar)   CharmLoadingPlugin (Charm-1.12.2-1.4.1.jar)   RenderPlayerAPIPlugin (RenderPlayerAPI-1.12.2-1.0.jar)   AstralCore (astralsorcery-1.12.2-1.10.27.jar)   CoreMod (ForgeMixinFix-1.0.0.jar)   RenderLibPlugin (RenderLib-1.12.2-1.3.5.jar)   ShetiPhian-ASM (ShetiPhian-ASM-1.12.0.jar)   CreativePatchingLoader (CreativeCore_v1.10.71_mc1.12.2.jar)   JustEnoughIDs Extension Plugin (JustEnoughIDs-1.0.4-SNAPSHOT-thin.jar)   MekanismTweaks (mekanismtweaks-1.1.jar)   ConfigAnytimePlugin (!configanytime-3.0.jar)   CarbonConfigHooks (CarbonConfig-1.12.2-1.2.4.jar)   DLFMLCorePlugin (DynamicLights-1.12.2.jar)   BetterFoliageLoader (BetterFoliage-MC1.12-2.3.3.jar)   RenderChunk rebuildChunk Hooks (RenderChunk-rebuildChunk-Hooks-1.12.2-0.3.1.jar) Contact their authors BEFORE contacting forge // I let you down. Sorry :( Time: 9/7/24 4:14 PM Description: Rendering screen java.lang.NullPointerException: Rendering screen     at compressions.Base$ShapelessRecipe.getGridStack(Base.java:1662)     at compressions.Compressed$ShapelessRecipe.func_77569_a(Compressed.java:1134)     at assets.recipehandler.CraftingHandler.getCrafts(CraftingHandler.java:194)     at assets.recipehandler.CraftingHandler.getNumberOfCraft(CraftingHandler.java:312)     at assets.recipehandler.GuiEventHandler$CreativeButton.func_191745_a(GuiEventHandler.java:154)     at net.minecraft.client.gui.GuiScreen.func_73863_a(GuiScreen.java:70)     at net.minecraft.client.gui.inventory.GuiContainer.func_73863_a(GuiContainer.java:80)     at net.minecraft.client.renderer.InventoryEffectRenderer.func_73863_a(InventoryEffectRenderer.java:51)     at net.minecraft.client.gui.inventory.GuiInventory.func_73863_a(SourceFile:75)     at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:396)     at net.minecraft.client.renderer.EntityRenderer.func_181560_a(EntityRenderer.java:1124)     at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:1119)     at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:398)     at net.minecraft.client.main.Main.main(SourceFile:123)     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) No Mixin Metadata is found in the Stacktrace. A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Client thread Stacktrace:     at compressions.Base$ShapelessRecipe.getGridStack(Base.java:1662)     at compressions.Compressed$ShapelessRecipe.func_77569_a(Compressed.java:1134)     at assets.recipehandler.CraftingHandler.getCrafts(CraftingHandler.java:194)     at assets.recipehandler.CraftingHandler.getNumberOfCraft(CraftingHandler.java:312)     at assets.recipehandler.GuiEventHandler$CreativeButton.func_191745_a(GuiEventHandler.java:154)     at net.minecraft.client.gui.GuiScreen.func_73863_a(GuiScreen.java:70)     at net.minecraft.client.gui.inventory.GuiContainer.func_73863_a(GuiContainer.java:80)     at net.minecraft.client.renderer.InventoryEffectRenderer.func_73863_a(InventoryEffectRenderer.java:51)     at net.minecraft.client.gui.inventory.GuiInventory.func_73863_a(SourceFile:75)     at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:396) -- Screen render details -- Details:     Screen name: net.minecraft.client.gui.inventory.GuiInventory     Mouse location: Scaled: (340, 73). Absolute: (1361, 769)     Screen size: Scaled: (640, 266). Absolute: (2560, 1061). Scale factor of 4 -- Affected level -- Details:     Level name: MpServer     All players: 1 total; [EntityPlayerSP['BobTheFurby'/9558, l='MpServer', x=-914.57, y=7.00, z=-760.36]]     Chunk stats: MultiplayerChunkCache: 361, 361     Level seed: 0     Level generator: ID 09 - RTG, ver 0. Features enabled: false     Level generator options:      Level spawn location: World: (-53,64,150), Chunk: (at 11,4,6 in -4,9; contains blocks -64,0,144 to -49,255,159), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)     Level time: 1079640 game time, 1453905 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: survival (ID 0). Hardcore: false. Cheats: false     Forced entities: 76 total; [EntityZombie['Zombie'/9601, l='MpServer', x=-925.50, y=22.00, z=-714.50], EntitySpider['Spider'/9602, l='MpServer', x=-927.50, y=41.00, z=-708.50], EntitySpider['Spider'/9603, l='MpServer', x=-924.50, y=41.00, z=-710.50], EntitySkeleton['Skeleton'/9605, l='MpServer', x=-906.50, y=18.00, z=-822.50], EntitySkeleton['Skeleton'/9606, l='MpServer', x=-901.25, y=38.00, z=-791.50], EntitySkeleton['Skeleton'/9608, l='MpServer', x=-903.53, y=33.00, z=-761.73], EntitySkeleton['Skeleton'/9609, l='MpServer', x=-907.49, y=35.00, z=-764.22], EntityEnderman['Enderman'/9737, l='MpServer', x=-845.50, y=24.00, z=-827.50], EntitySkeleton['Madam Erebloodottir'/9610, l='MpServer', x=-902.52, y=29.00, z=-745.29], EntityZombie['Zombie'/9611, l='MpServer', x=-896.50, y=38.00, z=-737.50], EntityZombie['Zombie'/9612, l='MpServer', x=-895.72, y=38.00, z=-741.51], EntityBat['Bat'/9613, l='MpServer', x=-882.36, y=13.07, z=-743.74], EntityZombie['Zombie'/9743, l='MpServer', x=-844.82, y=43.00, z=-791.50], EntityRooster['Rooster'/9744, l='MpServer', x=-941.54, y=65.00, z=-678.94], EntityMinecartChest['Minecart with Chest'/9618, l='MpServer', x=-894.17, y=38.00, z=-815.78], EntitySkeleton['Skeleton'/9622, l='MpServer', x=-892.73, y=42.00, z=-782.36], EntityItem['item.tile.stone.andesite'/9623, l='MpServer', x=-894.32, y=7.00, z=-766.89], EntitySkeleton['Skeleton'/9624, l='MpServer', x=-879.51, y=38.00, z=-734.68], EntityBabySkeleton['Baby Skeleton'/9625, l='MpServer', x=-895.50, y=43.00, z=-740.50], EntityCreeper['Creeper'/9626, l='MpServer', x=-884.50, y=34.00, z=-741.50], EntityBat['Bat'/9627, l='MpServer', x=-869.25, y=12.10, z=-747.25], EntityArchaeologist['Archaeologist'/9628, l='MpServer', x=-871.00, y=20.00, z=-741.00], EntityZombie['Zombie'/9629, l='MpServer', x=-865.50, y=22.00, z=-742.45], EntityBat['Bat'/9630, l='MpServer', x=-878.37, y=22.10, z=-736.75], EntityBabySkeleton['Baby Skeleton'/9631, l='MpServer', x=-875.50, y=38.00, z=-740.50], EntityZombie['Tonfor'/9632, l='MpServer', x=-874.50, y=11.00, z=-720.49], EntityCreeper['Creeper'/9633, l='MpServer', x=-863.50, y=17.00, z=-777.50], EntityDweller['Dweller'/9634, l='MpServer', x=-861.70, y=17.00, z=-774.70], EntityBabySkeleton['Baby Skeleton'/9635, l='MpServer', x=-852.91, y=38.00, z=-761.97], EntityZombie['Zombie'/9636, l='MpServer', x=-860.50, y=28.00, z=-751.50], EntityBat['Bat'/9637, l='MpServer', x=-838.81, y=34.00, z=-742.48], EntityMinecartChest['Minecart with Chest'/9656, l='MpServer', x=-846.23, y=34.00, z=-739.94], EntityMinecartChest['Minecart with Chest'/9664, l='MpServer', x=-845.50, y=34.06, z=-712.50], EntityCreeper['Creeper'/9665, l='MpServer', x=-978.50, y=24.00, z=-833.50], EntityZombie['Zombie'/9666, l='MpServer', x=-977.50, y=44.00, z=-832.50], EntityCreeper['Creeper'/9675, l='MpServer', x=-974.81, y=24.00, z=-835.50], EntityWitherSkeleton['Branlob'/9676, l='MpServer', x=-847.54, y=28.00, z=-697.57], EntityCreeper['Creeper'/9678, l='MpServer', x=-836.21, y=31.00, z=-694.50], EntitySpider['Spider'/9686, l='MpServer', x=-950.50, y=43.00, z=-834.50], EntityCreeper['Creeper'/9563, l='MpServer', x=-978.82, y=4.00, z=-749.61], EntityCreeper['Creeper'/9564, l='MpServer', x=-990.50, y=49.00, z=-732.50], EntityZombie['Zombie'/9565, l='MpServer', x=-978.50, y=16.00, z=-714.50], EntitySpider['Spider'/9566, l='MpServer', x=-978.00, y=47.00, z=-714.46], EntityCreeper['Creeper'/9567, l='MpServer', x=-975.39, y=24.00, z=-828.75], EntityRooster['Rooster'/9568, l='MpServer', x=-970.14, y=65.00, z=-808.51], EntityItem['item.item.feather'/9569, l='MpServer', x=-963.98, y=65.00, z=-810.29], EntityWitherSkeleton['Gerger the Knight'/9572, l='MpServer', x=-970.50, y=34.50, z=-779.59], EntityZombie['Zombie'/9573, l='MpServer', x=-979.55, y=53.00, z=-733.82], EntitySkeleton['Skeleton'/9701, l='MpServer', x=-934.50, y=44.00, z=-837.50], EntityCreeper['Creeper'/9574, l='MpServer', x=-965.51, y=58.00, z=-739.22], EntityBat['Bat'/9575, l='MpServer', x=-956.11, y=11.10, z=-815.42], EntityItem['item.tile.stonebrick'/9576, l='MpServer', x=-945.73, y=7.00, z=-789.53], EntitySalmon['Salmon'/9577, l='MpServer', x=-945.65, y=46.00, z=-741.35], EntitySpider['Spider'/9578, l='MpServer', x=-953.50, y=36.00, z=-710.50], EntitySpider['Spider'/9579, l='MpServer', x=-957.50, y=36.00, z=-712.50], EntityButterfly['Madeiran Speckled Wood'/9580, l='MpServer', x=-959.01, y=66.00, z=-715.65], EntityButterfly['Gatekeeper'/9581, l='MpServer', x=-951.94, y=66.00, z=-710.71], EntityButterfly['Holly Blue'/9582, l='MpServer', x=-951.95, y=66.00, z=-710.40], EntityBat['Bat'/9583, l='MpServer', x=-942.51, y=37.10, z=-816.37], EntityItem['item.tile.stonebrick'/9584, l='MpServer', x=-937.60, y=7.00, z=-789.61], EntityItem['item.tile.clayHardened'/9585, l='MpServer', x=-938.78, y=7.00, z=-789.55], EntityItem['item.tile.stone.andesite'/9586, l='MpServer', x=-941.21, y=7.00, z=-786.13], EntityZombie['Zombie'/9587, l='MpServer', x=-935.79, y=7.00, z=-797.20], EntitySkeleton['Skeleton'/9588, l='MpServer', x=-942.68, y=39.00, z=-784.50], EntityArchaeologist['Archaeologist'/9589, l='MpServer', x=-944.00, y=27.00, z=-776.00], EntityItem['item.item.fish.salmon.raw'/9590, l='MpServer', x=-939.83, y=47.00, z=-737.44], EntitySkeleton['Skeleton'/9591, l='MpServer', x=-938.50, y=21.00, z=-731.50], EntitySkeleton['Skeleton'/9592, l='MpServer', x=-943.50, y=32.00, z=-704.50], EntitySpider['Spider'/9593, l='MpServer', x=-935.70, y=51.10, z=-715.70], EntitySpider['Spider'/9594, l='MpServer', x=-935.50, y=50.00, z=-719.50], EntityMinecartTNT['entity.MinecartTNT.name'/9595, l='MpServer', x=-925.27, y=34.00, z=-779.93], EntitySalmon['Salmon'/9596, l='MpServer', x=-919.68, y=9.17, z=-735.37], EntityPlayerSP['BobTheFurby'/9558, l='MpServer', x=-914.57, y=7.00, z=-760.36], EntitySalmon['Salmon'/9597, l='MpServer', x=-923.16, y=10.00, z=-734.23], EntityLatchedRenderer['unknown'/9982, l='MpServer', x=8.50, y=65.00, z=8.50], EntitySalmon['Salmon'/9598, l='MpServer', x=-918.28, y=8.19, z=-735.41]]     Retry entities: 1 total; [EntityLatchedRenderer['unknown'/9982, l='MpServer', x=8.50, y=65.00, z=8.50]]     Server brand: fml,forge     Server type: Integrated singleplayer server Stacktrace:     at net.minecraft.client.multiplayer.WorldClient.func_72914_a(WorldClient.java:420)     at net.minecraft.client.Minecraft.func_71396_d(Minecraft.java:2741)     at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:419)     at net.minecraft.client.main.Main.main(SourceFile:123)     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.12.2     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: 17939541008 bytes (17108 MB) / 30131879936 bytes (28736 MB) up to 31138512896 bytes (29696 MB)     JVM Flags: 8 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx29G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M     IntCache: cache: 0, tcache: 0, allocated: 15, tallocated: 95     FML: MCP 9.42 Powered by Forge 14.23.5.2860 354 mods loaded, 354 mods active     States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored     | State  | ID                                | Version                  | Source                                             | Signature                                |     |:------ |:--------------------------------- |:------------------------ |:-------------------------------------------------- |:---------------------------------------- |     | LCHIJA | minecraft                         | 1.12.2                   | minecraft.jar                                      | None                                     |     | LCHIJA | mcp                               | 9.42                     | minecraft.jar                                      | None                                     |     | LCHIJA | FML                               | 8.0.99.99                | forge-1.12.2-14.23.5.2860.jar                      | e3c3d50c7c986df74c645c0ac54639741c90a557 |     | LCHIJA | forge                             | 14.23.5.2860             | forge-1.12.2-14.23.5.2860.jar                      | e3c3d50c7c986df74c645c0ac54639741c90a557 |     | LCHIJA | creativecoredummy                 | 1.0.0                    | minecraft.jar                                      | None                                     |     | LCHIJA | RenderPlayerAPI                   | 1.0                      | minecraft.jar                                      | None                                     |     | LCHIJA | mixinbooter                       | 9.3                      | minecraft.jar                                      | None                                     |     | LCHIJA | openmodscore                      | 0.12.2                   | minecraft.jar                                      | None                                     |     | LCHIJA | render_chunk-rebuild_chunk-hooks  | 1.12.2-0.3.1             | RenderChunk-rebuildChunk-Hooks-1.12.2-0.3.1.jar    | 1500c8bdd9178003afd944bc165f1984f9515082 |     | LCHIJA | randompatches                     | 1.12.2-1.22.1.10         | randompatches-1.12.2-1.22.1.10.jar                 | None                                     |     | LCHIJA | configanytime                     | 3.0                      | !configanytime-3.0.jar                             | None                                     |     | LCHIJA | bspkrscore                        | 7.6.0.1                  | [1.12]bspkrsCore-universal-7.6.0.1.jar             | None                                     |     | LCHIJA | treecapitator                     | 1.43.0                   | [1.12]TreeCapitator-client-1.43.0.jar              | None                                     |     | LCHIJA | supermartijn642corelib            | 1.1.17a                  | _supermartijn642corelib-1.1.17a-forge-mc1.12.jar   | None                                     |     | LCHIJA | actuallyadditions                 | 1.12.2-r152              | ActuallyAdditions-1.12.2-r152.jar                  | None                                     |     | LCHIJA | additionalcompression             | 3.4                      | Additional-Compression-1.12.2-3.4.jar              | None                                     |     | LCHIJA | infinitylib                       | 1.12.2-1.12.1            | infinitylib-1.12.1.jar                             | None                                     |     | LCHIJA | agricraft                         | 2.12.0-1.12.2-b2         | agricraft-2.12.0-1.12.2-b2.jar                     | None                                     |     | LCHIJA | akashictome                       | 1.2-12                   | AkashicTome-1.2-12.jar                             | None                                     |     | LCHIJA | creativecore                      | 1.10.0                   | CreativeCore_v1.10.71_mc1.12.2.jar                 | None                                     |     | LCHIJA | ambientsounds                     | 3.0                      | AmbientSounds_v3.1.7_mc1.12.2.jar                  | None                                     |     | LCHIJA | placebo                           | 1.6.0                    | Placebo-1.12.2-1.6.1.jar                           | None                                     |     | LCHIJA | apotheosis                        | 1.12.4                   | Apotheosis-1.12.2-1.12.5.jar                       | None                                     |     | LCHIJA | applecore                         | 3.4.0                    | AppleCore-mc1.12.2-3.4.0.jar                       | None                                     |     | LCHIJA | crafttweaker                      | 4.1.20                   | CraftTweaker2-1.12-4.1.20.700.jar                  | None                                     |     | LCHIJA | mtlib                             | 3.0.7                    | MTLib-3.0.7.jar                                    | None                                     |     | LCHIJA | modtweaker                        | 4.0.19                   | modtweaker-4.0.20.11.jar                           | None                                     |     | LCHIJA | jei                               | 4.16.1.301               | jei_1.12.2-4.16.1.301.jar                          | None                                     |     | LCHIJA | appleskin                         | 1.0.14                   | AppleSkin-mc1.12-1.0.14.jar                        | None                                     |     | LCHIJA | ctm                               | MC1.12.2-1.0.2.31        | CTM-MC1.12.2-1.0.2.31.jar                          | None                                     |     | LCHIJA | appliedenergistics2               | rv6-stable-7             | appliedenergistics2-rv6-stable-7.jar               | dfa4d3ac143316c6f32aa1a1beda1e34d42132e5 |     | LCHIJA | aquaculture                       | 1.6.8                    | Aquaculture-1.12.2-1.6.8.jar                       | None                                     |     | LCHIJA | aroma1997core                     | 2.0.0.2                  | Aroma1997Core-1.12.2-2.0.0.2.jar                   | dfbfe4c473253d8c5652417689848f650b2cbe32 |     | LCHIJA | baubles                           | 1.5.2                    | Baubles-1.12-1.5.2.jar                             | None                                     |     | LCHIJA | astralsorcery                     | 1.10.27                  | astralsorcery-1.12.2-1.10.27.jar                   | a0f0b759d895c15ceb3e3bcb5f3c2db7c582edf0 |     | LCHIJA | morphtool                         | 1.2-21                   | Morph-o-Tool-1.2-21.jar                            | None                                     |     | LCHIJA | quark                             | r1.6-179                 | Quark-r1.6-179.jar                                 | None                                     |     | LCHIJA | autoreglib                        | 1.3-32                   | AutoRegLib-1.3-32.jar                              | None                                     |     | LCHIJA | badwithernocookiereloaded         | 1.12.2-3.4.18            | badwithernocookiereloaded-1.12.2-3.4.18.jar        | None                                     |     | LCHIJA | bdlib                             | 1.14.4.1                 | bdlib-1.14.4.1-mc1.12.2.jar                        | None                                     |     | LCHIJA | betteradvancements                | 0.1.0.77                 | BetterAdvancements-1.12.2-0.1.0.77.jar             | None                                     |     | LCHIJA | betterbuilderswands               | 0.13.2                   | BetterBuildersWands-1.12.2-0.13.2.271+5997513.jar  | None                                     |     | LCHIJA | bettercaves                       | 1.12.2                   | bettercaves-1.12.2-2.0.4.jar                       | None                                     |     | LCHIJA | forgelin                          | 1.8.4                    | Forgelin-1.8.4.jar                                 | None                                     |     | LCHIJA | betterfoliage                     | 2.3.2                    | BetterFoliage-MC1.12-2.3.3.jar                     | None                                     |     | LCHIJA | bettergolem                       | 1.0                      | bettergolem-1.12.2-1.0.jar                         | None                                     |     | LCHIJA | bettermineshafts                  | 1.12.2-2.2.1             | BetterMineshaftsForge-1.12.2-2.2.1.jar             | None                                     |     | LCHIJA | betternether                      | 0.1.8.6                  | betternether-0.1.8.6.jar                           | None                                     |     | LCHIJA | betterwithlib                     | ${version}               | BetterWithLib-1.12-1.5.jar                         | None                                     |     | LCHIJA | bibliocraft                       | 2.4.6                    | BiblioCraft[v2.4.6][MC1.12.2].jar                  | None                                     |     | LCHIJA | buildcraftlib                     | 7.99.24.8                | buildcraft-all-7.99.24.8.jar                       | None                                     |     | LCHIJA | buildcraftcore                    | 7.99.24.8                | buildcraft-all-7.99.24.8.jar                       | None                                     |     | LCHIJA | buildcraftenergy                  | 7.99.24.8                | buildcraft-all-7.99.24.8.jar                       | None                                     |     | LCHIJA | ic2                               | 2.8.222-ex112            | industrialcraft-2-2.8.222-ex112.jar                | de041f9f6187debbc77034a344134053277aa3b0 |     | LCHIJA | mantle                            | 1.12-1.3.3.55            | Mantle-1.12-1.3.3.55.jar                           | None                                     |     | LCHIJA | natura                            | 1.12.2-4.3.2.69          | natura-1.12.2-4.3.2.69.jar                         | None                                     |     | LCHIJA | reborncore                        | 3.19.5                   | RebornCore-1.12.2-3.19.5-universal.jar             | None                                     |     | LCHIJA | techreborn                        | 2.27.3.1084              | TechReborn-1.12.2-2.27.3.1084-universal.jar        | 8727a3141c8ec7f173b87aa78b9b9807867c4e6b |     | LCHIJA | forestry                          | 5.8.2.387                | forestry_1.12.2-5.8.2.387.jar                      | None                                     |     | LCHIJA | binniecore                        | 2.5.1.203                | binnie-mods-1.12.2-2.5.1.203.jar                   | None                                     |     | LCHIJA | binniedesign                      | 2.5.1.203                | binnie-mods-1.12.2-2.5.1.203.jar                   | None                                     |     | LCHIJA | genetics                          | 2.5.1.203                | binnie-mods-1.12.2-2.5.1.203.jar                   | None                                     |     | LCHIJA | botany                            | 2.5.1.203                | binnie-mods-1.12.2-2.5.1.203.jar                   | None                                     |     | LCHIJA | extrabees                         | 2.5.1.203                | binnie-mods-1.12.2-2.5.1.203.jar                   | None                                     |     | LCHIJA | extratrees                        | 2.5.1.203                | binnie-mods-1.12.2-2.5.1.203.jar                   | None                                     |     | LCHIJA | biomesoplenty                     | 7.0.1.2445               | BiomesOPlenty-1.12.2-7.0.1.2445-universal.jar      | None                                     |     | LCHIJA | blockcraftery                     | 1.12.2-1.3.1             | blockcraftery-1.12.2-1.3.1.jar                     | None                                     |     | LCHIJA | cyclicmagic                       | 1.20.12                  | Cyclic-1.12.2-1.20.14.jar                          | 0e5cb559be7d03f3fc18b8cba547d663e25f28af |     | LCHIJA | guideapi                          | 1.12-2.1.8-63            | Guide-API-1.12-2.1.8-63.jar                        | None                                     |     | LCHIJA | bloodmagic                        | 1.12.2-2.4.3-105         | BloodMagic-1.12.2-2.4.3-105.jar                    | None                                     |     | LCHIJA | bookshelf                         | 2.3.590                  | Bookshelf-1.12.2-2.3.590.jar                       | d476d1b22b218a10d845928d1665d45fce301b27 |     | LCHIJA | bookworm                          | 1.12.2-2.5.2.1           | bookworm-1.12.2-2.5.2.1.jar                        | None                                     |     | LCHIJA | codechickenlib                    | 3.2.3.358                | CodeChickenLib-1.12.2-3.2.3.358-universal.jar      | f1850c39b2516232a2108a7bd84d1cb5df93b261 |     | LCHIJA | redstoneflux                      | 2.1.1                    | RedstoneFlux-1.12-2.1.1.1-universal.jar            | None                                     |     | LCHIJA | brandonscore                      | 2.4.20                   | BrandonsCore-1.12.2-2.4.20.162-universal.jar       | None                                     |     | LCHIJA | buildcraftbuilders                | 7.99.24.8                | buildcraft-all-7.99.24.8.jar                       | None                                     |     | LCHIJA | buildcrafttransport               | 7.99.24.8                | buildcraft-all-7.99.24.8.jar                       | None                                     |     | LCHIJA | buildcraftsilicon                 | 7.99.24.8                | buildcraft-all-7.99.24.8.jar                       | None                                     |     | LCHIJA | buildcraftcompat                  | 7.99.24.8                | buildcraft-all-7.99.24.8.jar                       | None                                     |     | LCHIJA | buildcraftfactory                 | 7.99.24.8                | buildcraft-all-7.99.24.8.jar                       | None                                     |     | LCHIJA | buildcraftrobotics                | 7.99.24.8                | buildcraft-all-7.99.24.8.jar                       | None                                     |     | LCHIJA | carbonconfig                      | 1.2.1                    | CarbonConfig-1.12.2-1.2.4.jar                      | None                                     |     | LCHIJA | ceilingtorch                      | v1.3.1                   | ceilingtorch-1.12.2-v1.3.1.jar                     | None                                     |     | LCHIJA | chisel                            | MC1.12.2-1.0.2.45        | Chisel-MC1.12.2-1.0.2.45.jar                       | None                                     |     | LCHIJA | endercore                         | 1.12.2-0.5.78            | EnderCore-1.12.2-0.5.78.jar                        | None                                     |     | LCHIJA | thaumcraft                        | 6.1.BETA26               | Thaumcraft-1.12.2-6.1.BETA26.jar                   | None                                     |     | LCHIJA | enderio                           | 5.3.72                   | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     | LCHIJA | enderiointegrationtic             | 5.3.72                   | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     | LCHIJA | tconstruct                        | 1.12.2-2.13.0.183        | TConstruct-1.12.2-2.13.0.183.jar                   | None                                     |     | LCHIJA | ceramics                          | 1.12-1.3.7b              | Ceramics-1.12-1.3.7b.jar                           | None                                     |     | LCHIJA | chameleon                         | 1.12-4.1.3               | Chameleon-1.12-4.1.3.jar                           | None                                     |     | LCHIJA | charm                             | 1.4                      | Charm-1.12.2-1.4.1.jar                             | None                                     |     | LCHIJA | chickenchunks                     | 2.4.2.74                 | ChickenChunks-1.12.2-2.4.2.74-universal.jar        | f1850c39b2516232a2108a7bd84d1cb5df93b261 |     | LCHIJA | chiselsandbits                    | 14.33                    | chiselsandbits-14.33.jar                           | None                                     |     | LCHIJA | chunkpregenerator                 | 4.4.9                    | Chunk-Pregenerator-1.12.2-4.4.9.jar                | None                                     |     | LCHIJA | chunkanimator                     | 1.12.2-1.2               | ChunkAnimator-1.12.2-1.2.1.jar                     | None                                     |     | LCHIJA | chunkgenlimit                     | 1.1                      | chunkgenlimiter-1.1.jar                            | None                                     |     | LCHIJA | clienttweaks                      | 3.1.11                   | ClientTweaks_1.12.2-3.1.11.jar                     | None                                     |     | LCHIJA | clumps                            | 3.1.2                    | Clumps-3.1.2.jar                                   | None                                     |     | LCHIJA | cofhcore                          | 4.6.6                    | CoFHCore-1.12.2-4.6.6.1-universal.jar              | None                                     |     | LCHIJA | cofhworld                         | 1.4.0                    | CoFHWorld-1.12.2-1.4.0.1-universal.jar             | None                                     |     | LCHIJA | cyclopscore                       | 1.6.7                    | CyclopsCore-1.12.2-1.6.7.jar                       | bd0353b3e8a2810d60dd584e256e364bc3bedd44 |     | LCHIJA | commoncapabilities                | 2.4.8                    | CommonCapabilities-1.12.2-2.4.8.jar                | bd0353b3e8a2810d60dd584e256e364bc3bedd44 |     | LCHIJA | refinedstorage                    | 1.6.16                   | refinedstorage-1.6.16.jar                          | 57893d5b90a7336e8c63fe1c1e1ce472c3d59578 |     | LCHIJA | compactmachines3                  | 3.0.18                   | compactmachines3-1.12.2-3.0.18-b278.jar            | None                                     |     | LCHIJA | compactsolars                     | 1.12.2-5.0.18.341        | CompactSolars-1.12.2-5.0.18.341-universal.jar      | None                                     |     | LCHIJA | ci                                | 1.4                      | Compressed Items-1.4.jar                           | None                                     |     | LCHIJA | compressedblocks                  | 1.12.2                   | CompressedBlocks-1.0.3.jar                         | None                                     |     | LCHIJA | compressedpickaxe                 | 1.0.2                    | CompressedUtilities.jar                            | None                                     |     | LCHIJA | compressions                      | 4.0.5                    | Compressions [1.12.1]-[4.0.5].jar                  | None                                     |     | LCHIJA | controlling                       | 3.0.10                   | Controlling-3.0.12.4.jar                           | None                                     |     | LCHIJA | cookingforblockheads              | 6.5.0                    | CookingForBlockheads_1.12.2-6.5.0.jar              | None                                     |     | LCHIJA | extendedrenderer                  | v1.0                     | coroutil-1.12.1-1.2.37.jar                         | None                                     |     | LCHIJA | coroutil                          | 1.12.1-1.2.37            | coroutil-1.12.1-1.2.37.jar                         | None                                     |     | LCHIJA | configmod                         | v1.0                     | coroutil-1.12.1-1.2.37.jar                         | None                                     |     | LCHIJA | craftstudioapi                    | 1.0.0                    | CraftStudioAPI-universal-1.0.1.95-mc1.12-alpha.jar | None                                     |     | LCHIJA | ctgui                             | 1.0.0                    | CraftTweaker2-1.12-4.1.20.700.jar                  | None                                     |     | LCHIJA | crafttweakerjei                   | 2.0.3                    | CraftTweaker2-1.12-4.1.20.700.jar                  | None                                     |     | LCHIJA | crafttweakerutils                 | 0.7                      | crafttweakerutils-0.7.jar                          | None                                     |     | LCHIJA | creeperconfetti                   | 1.4.2                    | creeperconfetti-1.4.2.jar                          | None                                     |     | LCHIJA | cucumber                          | 1.1.3                    | Cucumber-1.12.2-1.1.3.jar                          | None                                     |     | LCHIJA | custommainmenu                    | 2.0.9.1                  | CustomMainMenu-MC1.12.2-2.0.9.1.jar                | None                                     |     | LCHIJA | waila                             | 1.8.26                   | Hwyla-1.8.26-B41_1.12.2.jar                        | None                                     |     | LCHIJA | tesla                             | 1.0.63                   | Tesla-1.12.2-1.0.63.jar                            | d476d1b22b218a10d845928d1665d45fce301b27 |     | LCHIJA | p455w0rdslib                      | 2.3.161                  | p455w0rdslib-1.12.2-2.3.161.jar                    | 186bc454cd122c9c2f1aa4f95611254bcc543363 |     | LCHIJA | mousetweaks                       | 2.10.1                   | MouseTweaks-2.10.1-mc1.12.2.jar                    | None                                     |     | LCHIJA | danknull                          | 1.7.91                   | DankNull-1.12.2-1.7.91.jar                         | 644f38521a349310a5dae0239577dc7beebefaec |     | LCHIJA | darkutils                         | 1.8.230                  | DarkUtils-1.12.2-1.8.230.jar                       | d476d1b22b218a10d845928d1665d45fce301b27 |     | LCHIJA | eleccore                          | 1.9.453                  | ElecCore-1.12.2-1.9.453.jar                        | None                                     |     | LCHIJA | mcjtylib_ng                       | 3.5.4                    | mcjtylib-1.12-3.5.4.jar                            | None                                     |     | LCHIJA | deepresonance                     | 1.8.0                    | deepresonance-1.12-1.8.0.jar                       | None                                     |     | LCHIJA | journeymap                        | 1.12.2-5.7.1p2           | journeymap-1.12.2-5.7.1p2.jar                      | None                                     |     | LCHIJA | defaultoptions                    | 9.2.8                    | DefaultOptions_1.12.2-9.2.8.jar                    | None                                     |     | LCHIJA | disenchanter                      | 1.8                      | disenchanter[1.12]1.8.jar                          | None                                     |     | LCHIJA | draconicevolution                 | 2.3.28                   | Draconic-Evolution-1.12.2-2.3.28.354-universal.jar | None                                     |     | LCHIJA | dynamiclights                     | 1.4.9                    | DynamicLights-1.12.2.jar                           | None                                     |     | LCHIJA | dynamiclights_onfire              | 1.0.7                    | DynamicLights-1.12.2.jar                           | None                                     |     | LCHIJA | dynamiclights_creepers            | 1.0.6                    | DynamicLights-1.12.2.jar                           | None                                     |     | LCHIJA | dynamiclights_dropitems           | 1.1.0                    | DynamicLights-1.12.2.jar                           | None                                     |     | LCHIJA | dynamiclights_entityclasses       | 1.0.1                    | DynamicLights-1.12.2.jar                           | None                                     |     | LCHIJA | dynamiclights_mobequipment        | 1.1.0                    | DynamicLights-1.12.2.jar                           | None                                     |     | LCHIJA | dynamiclights_flamearrows         | 1.0.1                    | DynamicLights-1.12.2.jar                           | None                                     |     | LCHIJA | dynamiclights_floodlights         | 1.0.3                    | DynamicLights-1.12.2.jar                           | None                                     |     | LCHIJA | dynamiclights_otherplayers        | 1.0.9                    | DynamicLights-1.12.2.jar                           | None                                     |     | LCHIJA | dynamiclights_theplayer           | 1.1.3                    | DynamicLights-1.12.2.jar                           | None                                     |     | LCHIJA | sereneseasons                     | 1.2.18                   | SereneSeasons-1.12.2-1.2.18-universal.jar          | None                                     |     | LCHIJA | orelib                            | 3.6.0.1                  | OreLib-1.12.2-3.6.0.1.jar                          | 7a2128d395ad96ceb9d9030fbd41d035b435753a |     | LCHIJA | dsurround                         | 3.6.1.0                  | DynamicSurroundings-1.12.2-3.6.1.0.jar             | 7a2128d395ad96ceb9d9030fbd41d035b435753a |     | LCHIJA | dynamictrees                      | 1.12.2-0.9.29            | DynamicTrees-1.12.2-0.9.29.jar                     | None                                     |     | LCHIJA | spookytree                        | 1.12.2a                  | Pam's Spooky Tree 1.12.2a.jar                      | None                                     |     | LCHIJA | redbudtree                        | 1.12.2b                  | PamsRedbudTree1.12.2b.jar                          | None                                     |     | LCHIJA | dynamictreespamtrees              | 1.12.2-1.0.5             | DynamicTreesPamTrees-1.12.2-1.0.5.jar              | None                                     |     | LCHIJA | harvestcraft                      | 1.12.2zb                 | Pam's HarvestCraft 1.12.2zg.jar                    | None                                     |     | LCHIJA | dynamictreesphc                   | 2.0.6                    | DynamicTreesPHC-1.12.2-2.0.6.jar                   | None                                     |     | LCHIJA | dynamictreestconstruct            | 1.12.2-1.2.7             | DynamicTreesTinkersConstruct-1.12.2-1.2.7.jar      | None                                     |     | LCHIJA | elevatorid                        | 1.3.14                   | ElevatorMod-1.12.2-1.3.14.jar                      | None                                     |     | LCHIJA | eplus                             | 5.0.176                  | EnchantingPlus-1.12.2-5.0.176.jar                  | d476d1b22b218a10d845928d1665d45fce301b27 |     | LCHIJA | enderiobase                       | 5.3.72                   | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     | LCHIJA | enderioconduits                   | 5.3.72                   | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     | LCHIJA | enderioconduitsappliedenergistics | 5.3.72                   | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     | LCHIJA | enderioconduitsopencomputers      | 5.3.72                   | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     | LCHIJA | enderioconduitsrefinedstorage     | 5.3.72                   | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     | LCHIJA | enderiointegrationforestry        | 5.3.72                   | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     | LCHIJA | enderiointegrationticlate         | 5.3.72                   | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     | LCHIJA | enderioinvpanel                   | 5.3.72                   | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     | LCHIJA | ftblib                            | 5.4.7.2                  | FTBLib-5.4.7.2.jar                                 | None                                     |     | LCHIJA | enderiomachines                   | 5.3.72                   | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     | LCHIJA | enderiopowertools                 | 5.3.72                   | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     | LCHIJA | enderstorage                      | 2.4.6.137                | EnderStorage-1.12.2-2.4.6.137-universal.jar        | f1850c39b2516232a2108a7bd84d1cb5df93b261 |     | LCHIJA | energyconverters                  | 1.3.7.30                 | energyconverters_1.12.2-1.3.7.30.jar               | None                                     |     | LCHIJA | enhancedfarming                   | 1.1.3                    | Enhanced-Farming-1.12.2-1.1.3.jar                  | None                                     |     | LCHIJA | valkyrielib                       | 1.12.2-2.0.20.1          | valkyrielib-1.12.2-2.0.20.1.jar                    | None                                     |     | LCHIJA | environmentaltech                 | 1.12.2-2.0.20.1          | environmentaltech-1.12.2-2.0.20.1.jar              | None                                     |     | LCHIJA | motnt                             | 1.0.1                    | EvenMoreTNT-1.0.1.jar                              | None                                     |     | LCHIJA | extrautils2                       | 1.0                      | extrautils2-1.12-1.9.9.jar                         | None                                     |     | LCHIJA | esrainplants                      | 1.5.1                    | Farming in Rain - 1.12.2 - 1.5.1.jar               | None                                     |     | LCHIJA | farmingforblockheads              | 3.1.28                   | FarmingForBlockheads_1.12.2-3.1.28.jar             | None                                     |     | LCHIJA | farm_life                         | 1.0                      | FarmLife-1.0.1-1.12.2.jar                          | None                                     |     | LCHIJA | fastfurnace                       | 1.3.1                    | FastFurnace-1.12.2-1.3.1.jar                       | None                                     |     | LCHIJA | fenceoverhaul                     | 1.3.4                    | FenceOverhaul-1.3.4.jar                            | None                                     |     | LCHIJA | flatcoloredblocks                 | mc1.12-6.8               | flatcoloredblocks-mc1.12-6.8.jar                   | None                                     |     | LCHIJA | foodexpansion                     | 1.3                      | FoodExpansion1.3.3-1.12.2.jar                      | None                                     |     | LCHIJA | forgemultipartcbe                 | 2.6.2.83                 | ForgeMultipart-1.12.2-2.6.2.83-universal.jar       | f1850c39b2516232a2108a7bd84d1cb5df93b261 |     | LCHIJA | microblockcbe                     | 2.6.2.83                 | ForgeMultipart-1.12.2-2.6.2.83-universal.jar       | None                                     |     | LCHIJA | minecraftmultipartcbe             | 2.6.2.83                 | ForgeMultipart-1.12.2-2.6.2.83-universal.jar       | None                                     |     | LCHIJA | forgivingvoid                     | 1.1.0                    | ForgivingVoid_1.12.2-1.1.0.jar                     | None                                     |     | LCHIJA | ftbbackups                        | 1.1.0.1                  | FTBBackups-1.1.0.1.jar                             | None                                     |     | LCHIJA | ftbutilities                      | 5.4.1.131                | FTBUtilities-5.4.1.131.jar                         | None                                     |     | LCHIJA | funkylocomotion                   | 1.0                      | funky-locomotion-1.12.2-1.1.2.jar                  | None                                     |     | LCHIJA | furnaceoverhaul                   | 2.2.2                    | furnaceoverhaul-1.12.2-2.2.2.jar                   | None                                     |     | LCHIJA | cfm                               | 6.3.0                    | furniture-6.3.2-1.12.2.jar                         | None                                     |     | LCHIJA | fusion                            | 1.1.1                    | fusion-1.1.1-forge-mc1.12.jar                      | None                                     |     | LCHIJA | futuremc                          | 0.2.6                    | Future-MC-0.2.20.jar                               | None                                     |     | LCHIJA | gendustry                         | 1.6.5.8                  | gendustry-1.6.5.8-mc1.12.2.jar                     | None                                     |     | LCHIJA | gendustryjei                      | 1.0.2                    | gendustryjei-1.0.2.jar                             | None                                     |     | LCHIJA | advgenerators                     | 0.9.20.12                | generators-0.9.20.12-mc1.12.2.jar                  | None                                     |     | LCHIJA | glassential                       | 1.1.0                    | glassential-1.12.2-1.1.0.jar                       | None                                     |     | LCHIJA | goodnightsleep                    | 0.2.2                    | good-nights-sleep-1.12.2-v0.2.2.jar                | None                                     |     | LCHIJA | gravestone                        | 1.10.3                   | gravestone-1.10.3.jar                              | None                                     |     | LCHIJA | gregtech                          | 2.8.10-beta              | gregtech-1.12.2-2.8.10-beta.jar                    | None                                     |     | LCHIJA | growthcraft_hops                  | 4.3.0                    | growthcraft-1.12.2-4.3.0.jar                       | None                                     |     | LCHIJA | growthcraft                       | 4.3.0                    | growthcraft-1.12.2-4.3.0.jar                       | None                                     |     | LCHIJA | growthcraft_fishtrap              | 4.3.0                    | growthcraft-1.12.2-4.3.0.jar                       | None                                     |     | LCHIJA | growthcraft_cellar                | 4.3.0                    | growthcraft-1.12.2-4.3.0.jar                       | None                                     |     | LCHIJA | growthcraft_bees                  | 4.3.0                    | growthcraft-1.12.2-4.3.0.jar                       | None                                     |     | LCHIJA | growthcraft_milk                  | 4.3.0                    | growthcraft-1.12.2-4.3.0.jar                       | None                                     |     | LCHIJA | growthcraft_bamboo                | 4.3.0                    | growthcraft-1.12.2-4.3.0.jar                       | None                                     |     | LCHIJA | growthcraft_apples                | 4.3.0                    | growthcraft-1.12.2-4.3.0.jar                       | None                                     |     | LCHIJA | growthcraft_grapes                | 4.3.0                    | growthcraft-1.12.2-4.3.0.jar                       | None                                     |     | LCHIJA | growthcraft_rice                  | 4.3.0                    | growthcraft-1.12.2-4.3.0.jar                       | None                                     |     | LCHIJA | gunpowderlib                      | 1.12.2-1.1               | GunpowderLib-1.12.2-1.1.jar                        | 4ffa87db52cf086d00ecc4853a929367b1c39b5c |     | LCHIJA | harvest                           | 1.12-1.2.8-25            | Harvest-1.12-1.2.8-25.jar                          | None                                     |     | LCHIJA | hatchery                          | 2.2.2                    | hatchery-1.12.2-2.2.2.jar                          | None                                     |     | LCHIJA | hgp                               | Release                  | hgp-1.0.jar                                        | None                                     |     | LCHIJA | horse_colors                      | 1.12.2-1.2.6             | horse_colors-1.12.2-1.3.6.a.jar                    | None                                     |     | LCHIJA | iizvullok_icemountains            | 0.3.1                    | IceMountains_0.3.2_1.12.2.jar                      | None                                     |     | LCHIJA | ichunutil                         | 7.2.2                    | iChunUtil-1.12.2-7.2.2.jar                         | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |     | LCHIJA | immersiveengineering              | 0.12-98                  | ImmersiveEngineering-0.12-98.jar                   | None                                     |     | LCHIJA | immersivecables                   | 1.3.2                    | ImmersiveCables-1.12.2-1.3.2.jar                   | None                                     |     | LCHIJA | immersivefood                     | 1.12.1-0.0.2             | immersivefood-1.12.2-0.0.3.jar                     | None                                     |     | LCHIJA | immersivepetroleum                | 1.1.10                   | immersivepetroleum-1.12.2-1.1.10.jar               | None                                     |     | LCHIJA | immersiveruins                    | 1.0.0                    | ImmersiveRuins-1.0.jar                             | None                                     |     | LCHIJA | mcmultipart                       | 2.5.3                    | MCMultiPart-2.5.3.jar                              | None                                     |     | LCHIJA | mekanism                          | 1.12.2-9.8.3.390         | Mekanism-1.12.2-9.8.3.390.jar                      | None                                     |     | LCHIJA | teslacorelib                      | 1.0.18                   | tesla-core-lib-1.12.2-1.0.18.jar                   | d476d1b22b218a10d845928d1665d45fce301b27 |     | LCHIJA | industrialforegoing               | 1.12.2-1.12.2            | industrialforegoing-1.12.2-1.12.13-237.jar         | None                                     |     | LCHIJA | integrateddynamics                | 1.1.11                   | IntegratedDynamics-1.12.2-1.1.11.jar               | bd0353b3e8a2810d60dd584e256e364bc3bedd44 |     | LCHIJA | integrateddynamicscompat          | 1.0.0                    | IntegratedDynamics-1.12.2-1.1.11.jar               | None                                     |     | LCHIJA | integratedtunnels                 | 1.6.14                   | IntegratedTunnels-1.12.2-1.6.14.jar                | bd0353b3e8a2810d60dd584e256e364bc3bedd44 |     | LCHIJA | integratedtunnelscompat           | 1.0.0                    | IntegratedTunnels-1.12.2-1.6.14.jar                | None                                     |     | LCHIJA | inventorysorter                   | 1.13.3+57                | inventorysorter-1.12.2-1.13.3+57.jar               | None                                     |     | LCHIJA | inventorytweaks                   | 1.63+release.109.220f184 | InventoryTweaks-1.63.jar                           | 55d2cd4f5f0961410bf7b91ef6c6bf00a766dcbe |     | LCHIJA | i_recycle                         | 0.4                      | IRecycle_forge1.12.2-0.4.jar                       | None                                     |     | LCHIJA | ironbackpacks                     | 1.12.2-3.0.8-12          | IronBackpacks-1.12.2-3.0.8-12.jar                  | None                                     |     | LCHIJA | ironchest                         | 1.12.2-7.0.67.844        | ironchest-1.12.2-7.0.72.847.jar                    | None                                     |     | LCHIJA | jeiutilities                      | 0.2.12                   | JEI-Utilities-1.12.2-0.2.12.jar                    | None                                     |     | LCHIJA | jeibees                           | 0.9.0.5                  | jeibees-0.9.0.5-mc1.12.2.jar                       | None                                     |     | LCHIJA | jeiintegration                    | 1.6.0                    | jeiintegration_1.12.2-1.6.0.jar                    | None                                     |     | LCHIJA | jehc                              | 1.7.2                    | just-enough-harvestcraft-1.12.2-1.7.2.jar          | None                                     |     | LCHIJA | jeid                              | 1.0.4-SNAPSHOT           | JustEnoughIDs-1.0.4-SNAPSHOT-thin.jar              | None                                     |     | LCHIJA | jeresources                       | 0.9.2.60                 | JustEnoughResources-1.12.2-0.9.2.60.jar            | None                                     |     | LCHIJA | letsencryptcraft                  | @VERSION@                | letsencryptcraft-1.10.2-1.2.0.jar                  | None                                     |     | LCHIJA | llor                              | 1.1.6-mc1.12.2           | LLOverlayReloaded-1.1.6-mc1.12.2.jar               | None                                     |     | LCHIJA | logisticspipes                    | 0.10.3.114               | logisticspipes-0.10.3.114.jar                      | e0c86912b2f7cc0cc646ad57799574aea43dbd45 |     | LCHIJA | lootoverhaul                      | 1.2                      | LootOverhaul-1.2.jar                               | None                                     |     | LCHIJA | malisiscore                       | 1.12.2-6.5.1-SNAPSHOT    | malisiscore-1.12.2-6.5.1.jar                       | None                                     |     | LCHIJA | malisisdoors                      | 1.12.2-7.3.0             | malisisdoors-1.12.2-7.3.0.jar                      | None                                     |     | LCHIJA | mcwdoors                          | 1.3                      | mcw-doors-1.0.3-mc1.12.2.jar                       | None                                     |     | LCHIJA | mcwfences                         | 1.0.0                    | mcw-fences-1.0.0-mc1.12.2.jar                      | None                                     |     | LCHIJA | mcwfurnitures                     | 1.0.1                    | mcw-furniture-1.0.1-mc1.12.2beta.jar               | None                                     |     | LCHIJA | mcwpaths                          | 1.0.2                    | mcw-paths-1.0.2forge-mc1.12.2.jar                  | None                                     |     | LCHIJA | mcwtrpdoors                       | 1.0.2                    | mcw-trapdoors-1.0.3-mc1.12.2.jar                   | None                                     |     | LCHIJA | mcwwindows                        | 1.0                      | mcw-windows-1.0.0-mc1.12.2.jar                     | None                                     |     | LCHIJA | mekanismgenerators                | 1.12.2-9.8.3.390         | MekanismGenerators-1.12.2-9.8.3.390.jar            | None                                     |     | LCHIJA | mekanismtools                     | 1.12.2-9.8.3.390         | MekanismTools-1.12.2-9.8.3.390.jar                 | None                                     |     | LCHIJA | mekatweaker                       | 1.2.0                    | mekatweaker-1.12-1.2.0.jar                         | None                                     |     | LCHIJA | mekores                           | 2.0.13                   | mekores-2.0.13.jar                                 | None                                     |     | LCHIJA | mercurius                         | 1.0.6                    | Mercurius-1.12.2.jar                               | None                                     |     | LCHIJA | mob_grinding_utils                | 0.3.13                   | MobGrindingUtils-0.3.13.jar                        | None                                     |     | LCHIJA | modnametooltip                    | 1.10.1                   | modnametooltip_1.12.2-1.10.1.jar                   | None                                     |     | LCHIJA | monk                              | 1.4                      | monk-mod-1.4.jar                                   | None                                     |     | LCHIJA | morebuckets                       | 1.0.4                    | MoreBuckets-1.12.2-1.0.4.jar                       | None                                     |     | LCHIJA | guilib                            | $version                 | morepaintings-paintings-1.12.2-5.0.1.2.jar         | None                                     |     | LCHIJA | paintingselgui                    | $version                 | morepaintings-paintings-1.12.2-5.0.1.2.jar         | None                                     |     | LCHIJA | morepaintings                     | $version                 | morepaintings-paintings-1.12.2-5.0.1.2.jar         | None                                     |     | LCHIJA | morph                             | 7.2.0                    | Morph-1.12.2-7.2.1.jar                             | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |     | LCHIJA | morpheus                          | 1.12.2-3.5.106           | Morpheus-1.12.2-3.5.106.jar                        | None                                     |     | LCHIJA | supermartijn642configlib          | 1.1.6                    | supermartijn642configlib-1.1.8-forge-mc1.12.jar    | None                                     |     | LCHIJA | movingelevators                   | 1.4.8                    | movingelevators-1.4.8-forge-mc1.12.jar             | None                                     |     | LCHIJA | mrtjpcore                         | 2.1.4.43                 | MrTJPCore-1.12.2-2.1.4.43-universal.jar            | None                                     |     | LCHIJA | mushroomlib                       | 1                        | MushroomLib.jar                                    | None                                     |     | LCHIJA | mushroomgarden                    | 1                        | MushroomGarden.jar                                 | None                                     |     | LCHIJA | gachashroom                       | 1.0.0                    | MushroomQuest 1.12.2 - v1.7.jar                    | None                                     |     | LCHIJA | newwalls                          | 1.0.0                    | NewWalls-1.12.2-1.0.0.jar                          | None                                     |     | LCHIJA | openmods                          | 0.12.2                   | OpenModsLib-1.12.2-0.12.2.jar                      | d2a9a8e8440196e26a268d1f3ddc01b2e9c572a5 |     | LCHIJA | openblocks                        | 1.8.1                    | OpenBlocks-1.12.2-1.8.1.jar                        | d2a9a8e8440196e26a268d1f3ddc01b2e9c572a5 |     | LCHIJA | bonecraft                         | 1.12.2b                  | Pam's BoneCraft 1.12.2b.jar                        | None                                     |     | LCHIJA | brewcraft                         | 1.12.2-1.0.2             | Pam's BrewCraft 1.12.2-1.0.2.jar                   | None                                     |     | LCHIJA | clayspawn                         | 1.12a                    | Pam's ClaySpawn 1.12a.jar                          | None                                     |     | LCHIJA | desertcraft                       | 1.12.2b                  | Pam's DesertCraft 1.12.2c.jar                      | None                                     |     | LCHIJA | getalltheseeds                    | 1.12a                    | Pam's Get all the Seeds! 1.12a.jar                 | None                                     |     | LCHIJA | llamamilking                      | 1.12.2b                  | Pam's Llama Milking 1.12.2b.jar                    | None                                     |     | LCHIJA | pigskin                           | 1.12.2b                  | Pam's Pig Skin 1.12.2b.jar                         | None                                     |     | LCHIJA | portalpoof                        | 1.12a                    | Pam's Portal Poof 1.12.Xa.jar                      | None                                     |     | LCHIJA | sheepmilking                      | 1.12.2b                  | Pam's Sheep Milking 1.12.2b.jar                    | None                                     |     | LCHIJA | simplerecipes                     | 1.12.2c                  | Pam's Simple Recipes 1.12.2c.jar                   | None                                     |     | LCHIJA | simplystrawberries                | 1.12.2-1.0.0             | Pam's Simply Strawberries 1.12.2 - 1.0.0.jar       | None                                     |     | LCHIJA | squidmilking                      | 1.12.2a                  | Pam's Squid Milking 1.12.2a.jar                    | None                                     |     | LCHIJA | pamsbreadcraft                    | 1.1.0                    | Pam's+BreadCraft+1.12.2-1.1.2.jar                  | None                                     |     | LCHIJA | pamscookables                     | 1.1                      | pamscookables-1.1.jar                              | None                                     |     | LCHIJA | pamsimpleharvest                  | 2.0.0                    | pamsimpleharvest-2.0.0.jar                         | None                                     |     | LCHIJA | patchouli                         | 1.0-23.6                 | Patchouli-1.0-23.6.jar                             | None                                     |     | LCHIJA | plonk                             | 10.0.4                   | plonk-1.12.2-10.0.4.jar                            | None                                     |     | LCHIJA | poweradapters                     | 1.0.9                    | PowerAdapters-1.12.2-1.0.9.jar                     | d476d1b22b218a10d845928d1665d45fce301b27 |     | LCHIJA | projectred-core                   | 4.9.4.120                | ProjectRed-1.12.2-4.9.4.120-Base.jar               | None                                     |     | LCHIJA | projectred-compat                 | 1.0                      | ProjectRed-1.12.2-4.9.4.120-compat.jar             | None                                     |     | LCHIJA | projectred-integration            | 4.9.4.120                | ProjectRed-1.12.2-4.9.4.120-integration.jar        | None                                     |     | LCHIJA | projectred-transmission           | 4.9.4.120                | ProjectRed-1.12.2-4.9.4.120-integration.jar        | None                                     |     | LCHIJA | projectred-fabrication            | 4.9.4.120                | ProjectRed-1.12.2-4.9.4.120-fabrication.jar        | None                                     |     | LCHIJA | projectred-illumination           | 4.9.4.120                | ProjectRed-1.12.2-4.9.4.120-lighting.jar           | None                                     |     | LCHIJA | projectred-expansion              | 4.9.4.120                | ProjectRed-1.12.2-4.9.4.120-mechanical.jar         | None                                     |     | LCHIJA | projectred-relocation             | 4.9.4.120                | ProjectRed-1.12.2-4.9.4.120-mechanical.jar         | None                                     |     | LCHIJA | projectred-transportation         | 4.9.4.120                | ProjectRed-1.12.2-4.9.4.120-mechanical.jar         | None                                     |     | LCHIJA | projectred-exploration            | 4.9.4.120                | ProjectRed-1.12.2-4.9.4.120-world.jar              | None                                     |     | LCHIJA | psi                               | r1.1-78                  | Psi-r1.1-78.2.jar                                  | None                                     |     | LCHIJA | quarkoddities                     | 1                        | QuarkOddities-1.12.2.jar                           | None                                     |     | LCHIJA | randomthings                      | 4.2.7.4                  | RandomThings-MC1.12.2-4.2.7.4.jar                  | d72e0dd57935b3e9476212aea0c0df352dd76291 |     | LCHIJA | randomtweaks                      | 1.12.2-2.8.3.1           | randomtweaks-1.12.2-2.8.3.1.jar                    | 20d08fb3fe9c268a63a75d337fb507464c8aaccd |     | LCHIJA | rangedpumps                       | 0.5                      | rangedpumps-0.5.jar                                | None                                     |     | LCHIJA | reap                              | 1.5.2                    | reap-1.5.2.jar                                     | None                                     |     | LCHIJA | reauth                            | 4.0.7                    | ReAuth-1.12-Forge-4.0.7.jar                        | daba0ec4df71b6da841768c49fb873def208a1e3 |     | LCHIJA | rebornstorage                     | 1.0.0                    | RebornStorage-1.12.2-3.3.4.1.jar                   | None                                     |     | LCHIJA | redstonearsenal                   | 2.6.6                    | RedstoneArsenal-1.12.2-2.6.6.1-universal.jar       | None                                     |     | LCHIJA | redstonepaste                     | 1.7.5                    | redstonepaste-mc1.12-1.7.5.jar                     | None                                     |     | LCHIJA | refinedstorageaddons              | 0.4.5                    | refinedstorageaddons-0.4.5.jar                     | None                                     |     | LCHIJA | renderlib                         | 1.3.5                    | RenderLib-1.12.2-1.3.5.jar                         | None                                     |     | LCHIJA | reskillable                       | 1.12.2-1.13.0            | Reskillable-1.12.2-1.13.0.jar                      | None                                     |     | LCHIJA | resourceloader                    | 1.5.3                    | ResourceLoader-MC1.12.1-1.5.3.jar                  | d72e0dd57935b3e9476212aea0c0df352dd76291 |     | LCHIJA | ruins                             | 17.2                     | Ruins-1.12.2.jar                                   | None                                     |     | LCHIJA | vanillawalls                      | 1.0.0                    | Simple-Walls-1.12.2-R.jar                          | None                                     |     | LCHIJA | solarenergy                       | 0.5.0.0                  | solarenergy-1.12.2-0.5.0.0.jar                     | None                                     |     | LCHIJA | solargeneration                   | 1.3.0                    | SolarGeneration-1.12.2-1.3.0.jar                   | None                                     |     | LCHIJA | storagedrawers                    | 5.5.1                    | StorageDrawers-1.12.2-5.5.1.jar                    | None                                     |     | LCHIJA | storagedrawersextra               | @VERSION@                | StorageDrawersExtras-1.12-3.1.0.jar                | None                                     |     | LCHIJA | strongfarmland                    | 1.12.2-1.0.0             | strongfarmland-1.12.2-1.0.0.jar                    | 0e5cb559be7d03f3fc18b8cba547d663e25f28af |     | LCHIJA | thaumicjei                        | 1.6.0                    | ThaumicJEI-1.12.2-1.7.0.jar                        | None                                     |     | LCHIJA | theimpossiblelibrary              | 1.12.2-0.3.0             | theimpossiblelibrary-1.12.2-0.3.0.jar              | None                                     |     | LCHIJA | tinkertoolleveling                | 1.12.2-1.1.0.DEV.b23e769 | TinkerToolLeveling-1.12.2-1.1.0.jar                | None                                     |     | LCHIJA | tinymobfarm                       | 1.0.5                    | TinyMobFarm-1.12.2-1.0.5.jar                       | None                                     |     | LCHIJA | tipthescales                      | 1.0.4                    | TipTheScales-1.12.2-1.0.4.jar                      | None                                     |     | LCHIJA | tramplestopper                    | 1.2.0.4                  | tramplestopper-1.12.2-1.2.0.5-universal.jar        | None                                     |     | LCHIJA | xat                               | 0.32                     | Trinkets and Baubles-32.4.jar                      | None                                     |     | LCHIJA | universaltweaks                   | 1.12.0                   | UniversalTweaks-1.12.2-1.12.0.jar                  | None                                     |     | LCHIJA | universalmodifiers                | 1.12.2-1.0.16.1          | valkyrielib-1.12.2-2.0.20.1.jar                    | None                                     |     | LCHIJA | vanillafoodpantry                 | 4.3.1                    | vanillafoodpantry-mc1.12.2-4.3.1.jar               | None                                     |     | LCHIJA | veinminer                         | 0.38.2                   | VeinMiner-1.12-0.38.2.647+b31535a.jar              | None                                     |     | LCHIJA | veinminermodsupport               | 0.38.2                   | VeinMiner-1.12-0.38.2.647+b31535a.jar              | None                                     |     | LCHIJA | wanionlib                         | 1.12.2-2.91              | WanionLib-1.12.2-2.91.jar                          | None                                     |     | LCHIJA | configex                          | 1.0                      | Weather2Remastered-1.12.2-2.8.11.jar               | None                                     |     | LCHIJA | weather2remaster                  | 2.8.11                   | Weather2Remastered-1.12.2-2.8.11.jar               | None                                     |     | LCHIJA | weeeflowers                       | 1.12.2b                  | Weee! Flowers 1.12.2b.jar                          | None                                     |     | LCHIJA | well                              | 1.0.1                    | Well-Mod-v1.0.1-mc1.12.2.jar                       | None                                     |     | LCHIJA | worldedit                         | 6.1.10                   | worldedit-forge-mc1.12.2-6.1.10-dist.jar           | None                                     |     | LCHIJA | xlfoodmod                         | 1.12.2-1.9.2             | XL-Food-Mod-1.12.2-1.9.2.jar                       | None                                     |     | LCHIJA | recipehandler                     | 0.14                     | YARCF-0.14(1.12.2).jar                             | None                                     |     | LCHIJA | zerocore                          | 1.12.2-0.1.2.9           | zerocore-1.12.2-0.1.2.9.jar                        | None                                     |     | LCHIJA | rtg                               | 6.1.0.0-snapshot.1       | RTG-1.12.2-6.1.0.0-snapshot.1.jar                  | None                                     |     | LCHIJA | shetiphiancore                    | 3.5.9                    | shetiphiancore-1.12.0-3.5.9.jar                    | None                                     |     | LCHIJA | techreborn_compat                 | 1.0.0                    | TechReborn-ModCompatibility-1.12.2-1.4.0.76.jar    | 8727a3141c8ec7f173b87aa78b9b9807867c4e6b |     | LCHIJA | eleccoreloader                    | 1.9.453                  | ElecCore-1.12.2-1.9.453.jar                        | None                                     |     | LCHIJA | hungeroverhaul                    | 1.12.2-1.3.3.jenkins148  | HungerOverhaul-1.12.2-1.3.3.jenkins148.jar         | None                                     |     | LCHIJA | mysticallib                       | 1.12.2-1.13.0            | mysticallib-1.12.2-1.13.0.jar                      | None                                     |     | LCHIJA | teslacorelib_registries           | 1.0.18                   | tesla-core-lib-1.12.2-1.0.18.jar                   | None                                     |     | LCHIJA | unidict                           | 1.12.2-3.0.10            | UniDict-1.12.2-3.0.10.jar                          | None                                     |     Loaded coremods (and transformers):  IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar)   blusunrize.immersiveengineering.common.asm.IEClassTransformer UniversalTweaksCore (UniversalTweaks-1.12.2-1.12.0.jar)    LoadingPlugin (ChunkAnimator-1.12.2-1.2.1.jar)   lumien.chunkanimator.asm.ClassTransformer MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)   mekanism.coremod.KeybindingMigrationHelper LogisticsPipesCoreLoader (logisticspipes-0.10.3.114.jar)   logisticspipes.asm.LogisticsClassTransformer SuperMartijn642's Core Lib Plugin (_supermartijn642corelib-1.1.17a-forge-mc1.12.jar)    Quark Plugin (Quark-r1.6-179.jar)   vazkii.quark.base.asm.ClassTransformer AppleCore (AppleCore-mc1.12.2-3.4.0.jar)   squeek.applecore.asm.TransformerModuleHandler UniDictCoreMod (UniDict-1.12.2-3.0.10.jar)   wanion.unidict.core.UniDictCoreModTransformer LoadingPlugin (BetterWithLib-1.12-1.5.jar)   betterwithmods.library.core.ClassTransformer MixinBooter (!mixinbooter-9.3.jar)    Fusion Plugin (fusion-1.1.1-forge-mc1.12.jar)    Inventory Tweaks Coremod (InventoryTweaks-1.63.jar)   invtweaks.forge.asm.ContainerTransformer ChunkGenLimiterCoremod (chunkgenlimiter-1.1-core.jar)   io.github.barteks2x.chunkgenlimiter.coremod.ChunkGenLimitTransformer GregTechLoadingPlugin (gregtech-1.12.2-2.8.10-beta.jar)   gregtech.asm.GregTechTransformer LoadingPlugin (ResourceLoader-MC1.12.1-1.5.3.jar)   lumien.resourceloader.asm.ClassTransformer MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar)    JeiUtilitiesLoadingPlugin (JEI-Utilities-1.12.2-0.2.12.jar)   com.github.vfyjxf.jeiutilities.asm.JeiUtilitiesClassTransformer LoadingPlugin (Reskillable-1.12.2-1.13.0.jar)   codersafterdark.reskillable.base.asm.ClassTransformer CoreMod (Aroma1997Core-1.12.2-2.0.0.2.jar)    Moving Elevators Plugin (movingelevators-1.4.8-forge-mc1.12.jar)    FutureMC (Future-MC-0.2.20.jar)   thedarkcolour.futuremc.asm.CoreTransformer TransformLoader (DynamicSurroundings-1.12.2-3.6.1.0.jar)    LoadingPlugin (RandomThings-MC1.12.2-4.2.7.4.jar)   lumien.randomthings.asm.ClassTransformer RandomPatches (randompatches-1.12.2-1.22.1.10.jar)   com.therandomlabs.randompatches.core.RPTransformer SSLoadingPlugin (SereneSeasons-1.12.2-1.2.18-universal.jar)   sereneseasons.asm.transformer.EntityRendererTransformer   sereneseasons.asm.transformer.WorldTransformer PregenHooks (Chunk-Pregenerator-1.12.2-4.4.9.jar)   pregenerator.base.hooks.PregenHooks ForgelinPlugin (Forgelin-1.8.4.jar)    ReplantFMLLoadingPlugin (replant1.12.2-1.0.0.jar)    OpenModsCorePlugin (OpenModsLib-1.12.2-0.12.2.jar)   openmods.core.OpenModsClassTransformer ApotheosisCore (Apotheosis-1.12.2-1.12.5.jar)   shadows.ApotheosisTransformer NWRTweak (redstonepaste-mc1.12-1.7.5.jar)   net.fybertech.nwr.NWRTransformer CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   team.chisel.ctm.client.asm.CTMTransformer EnderCorePlugin (EnderCore-1.12.2-0.5.78-core.jar)   com.enderio.core.common.transform.EnderCoreTransformer   com.enderio.core.common.transform.SimpleMixinPatcher CharmLoadingPlugin (Charm-1.12.2-1.4.1.jar)   svenhjol.charm.base.CharmClassTransformer RenderPlayerAPIPlugin (RenderPlayerAPI-1.12.2-1.0.jar)   api.player.forge.RenderPlayerAPITransformer AstralCore (astralsorcery-1.12.2-1.10.27.jar)    CoreMod (ForgeMixinFix-1.0.0.jar)    RenderLibPlugin (RenderLib-1.12.2-1.3.5.jar)   meldexun.renderlib.asm.RenderLibClassTransformer ShetiPhian-ASM (ShetiPhian-ASM-1.12.0.jar)   shetiphian.asm.ClassTransformer CreativePatchingLoader (CreativeCore_v1.10.71_mc1.12.2.jar)    JustEnoughIDs Extension Plugin (JustEnoughIDs-1.0.4-SNAPSHOT-thin.jar)   org.dimdev.jeid.JEIDTransformer MekanismTweaks (mekanismtweaks-1.1.jar)    ConfigAnytimePlugin (!configanytime-3.0.jar)    CarbonConfigHooks (CarbonConfig-1.12.2-1.2.4.jar)   carbonconfiglib.impl.internal.CarbonConfigHooks DLFMLCorePlugin (DynamicLights-1.12.2.jar)   atomicstryker.dynamiclights.common.DLTransformer BetterFoliageLoader (BetterFoliage-MC1.12-2.3.3.jar)   mods.betterfoliage.loader.BetterFoliageTransformer RenderChunk rebuildChunk Hooks (RenderChunk-rebuildChunk-Hooks-1.12.2-0.3.1.jar)   io.github.cadiboo.renderchunkrebuildchunkhooks.core.classtransformer.RenderChunkRebuildChunkHooksRenderChunkClassTransformerForge     GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 560.70' Renderer: 'NVIDIA GeForce GTX 1650/PCIe/SSE2'     OpenModsLib class transformers: [llama_null_fix:FINISHED],[horse_base_null_fix:FINISHED],[pre_world_render_hook:FINISHED],[player_render_hook:FINISHED],[horse_null_fix:FINISHED]     AE2 Version: stable rv6-stable-7 for Forge 14.23.5.2768     Pulsar/natura loaded Pulses:          - NaturaCommons (Enabled/Forced)         - NaturaOverworld (Enabled/Not Forced)         - NaturaNether (Enabled/Not Forced)         - NaturaDecorative (Enabled/Not Forced)         - NaturaTools (Enabled/Not Forced)         - NaturaEntities (Enabled/Not Forced)         - NaturaOredict (Enabled/Forced)         - NaturaWorld (Enabled/Not Forced)     Ender IO: No known problems detected.     Authlib is : /C:/Users/Irene/Twitch/Minecraft/Install/libraries/com/mojang/authlib/1.5.25/authlib-1.5.25.jar     !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!     !!!You are looking at the diagnostics information, not at the crash.       !!!     !!!Scroll up until you see the line with '---- Minecraft Crash Report ----'!!!     !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!     Pulsar/tconstruct loaded Pulses:          - TinkerCommons (Enabled/Forced)         - TinkerWorld (Enabled/Not Forced)         - TinkerTools (Enabled/Not Forced)         - TinkerHarvestTools (Enabled/Forced)         - TinkerMeleeWeapons (Enabled/Forced)         - TinkerRangedWeapons (Enabled/Forced)         - TinkerModifiers (Enabled/Forced)         - TinkerSmeltery (Enabled/Not Forced)         - TinkerGadgets (Enabled/Not Forced)         - TinkerOredict (Enabled/Forced)         - TinkerIntegration (Enabled/Forced)         - TinkerFluids (Enabled/Forced)         - TinkerMaterials (Enabled/Forced)         - TinkerModelRegister (Enabled/Forced)         - chiselIntegration (Enabled/Not Forced)         - chiselsandbitsIntegration (Enabled/Not Forced)         - wailaIntegration (Enabled/Not Forced)         - quarkIntegration (Enabled/Not Forced)     List of loaded APIs:          * actuallyadditionsapi (34) from ActuallyAdditions-1.12.2-r152.jar         * AgriCraftAPI (1.0) from agricraft-2.12.0-1.12.2-b2.jar         * AppleCoreAPI (3.4.0) from AppleCore-mc1.12.2-3.4.0.jar         * appliedenergistics2|API (rv6) from appliedenergistics2-rv6-stable-7.jar         * Baubles|API (1.4.0.2) from Baubles-1.12-1.5.2.jar         * betteradvancements|API (0.1.0.77) from BetterAdvancements-1.12.2-0.1.0.77.jar         * BetterWithModsAPI (Beta 0.6) from AppleSkin-mc1.12-1.0.14.jar         * bloodmagic-api (2.0.0) from BloodMagic-1.12.2-2.4.3-105.jar         * BotaniaAPI (79) from AkashicTome-1.2-12.jar         * buildcraftapi_blocks (1.0) from buildcraft-all-7.99.24.8.jar         * buildcraftapi_boards (2.0) from buildcraft-all-7.99.24.8.jar         * buildcraftapi_core (2.2) from buildcraft-all-7.99.24.8.jar         * buildcraftapi_crops (1.1) from buildcraft-all-7.99.24.8.jar         * buildcraftapi_enums (1.0) from buildcraft-all-7.99.24.8.jar         * buildcraftapi_events (2.0) from buildcraft-all-7.99.24.8.jar         * buildcraftapi_facades (1.1) from buildcraft-all-7.99.24.8.jar         * buildcraftapi_filler (5.0) from buildcraft-all-7.99.24.8.jar         * buildcraftapi_fuels (2.0) from buildcraft-all-7.99.24.8.jar         * buildcraftapi_gates (4.1) from buildcraft-all-7.99.24.8.jar         * buildcraftapi_items (1.1) from buildcraft-all-7.99.24.8.jar         * buildcraftapi_library (2.0) from buildcraft-all-7.99.24.8.jar         * buildcraftapi_lists (1.0) from buildcraft-all-7.99.24.8.jar         * buildcraftapi_power (1.3) from buildcraft-all-7.99.24.8.jar         * buildcraftapi_recipes (3.0) from buildcraft-all-7.99.24.8.jar         * buildcraftapi_robotics (3.0) from buildcraft-all-7.99.24.8.jar         * buildcraftapi_statements (1.1) from buildcraft-all-7.99.24.8.jar         * buildcraftapi_tiles (1.2) from buildcraft-all-7.99.24.8.jar         * buildcraftapi_tools (1.0) from buildcraft-all-7.99.24.8.jar         * buildcraftapi_transport (5.0) from buildcraft-all-7.99.24.8.jar         * Chisel-API (0.0.1) from Chisel-MC1.12.2-1.0.2.45.jar         * ChiselAPI|Carving (0.0.1) from Chisel-MC1.12.2-1.0.2.45.jar         * ChiselsAndBitsAPI (14.25.0) from chiselsandbits-14.33.jar         * cofhapi (2.5.0) from CoFHCore-1.12.2-4.6.6.1-universal.jar         * commoncapabilities|api (0.0.1) from CommonCapabilities-1.12.2-2.4.8.jar         * CoroAI|dynamicdifficulty (1.0) from coroutil-1.12.1-1.2.37.jar         * ctm-api (0.1.0) from CTM-MC1.12.2-1.0.2.31.jar         * ctm-api-events (0.1.0) from CTM-MC1.12.2-1.0.2.31.jar         * ctm-api-models (0.1.0) from CTM-MC1.12.2-1.0.2.31.jar         * ctm-api-textures (0.1.0) from CTM-MC1.12.2-1.0.2.31.jar         * ctm-api-utils (0.1.0) from CTM-MC1.12.2-1.0.2.31.jar         * DR-API (1.0.4-Beta) from deepresonance-1.12-1.8.0.jar         * DraconicEvolution|API (1.3) from Draconic-Evolution-1.12.2-2.3.28.354-universal.jar         * ElecCoreAPI (1.0.0) from ElecCore-1.12.2-1.9.453.jar         * enderioapi (4.0.0) from EnderIO-1.12.2-5.3.72.jar         * enderioapi|addon (4.0.0) from EnderIO-1.12.2-5.3.72.jar         * enderioapi|capacitor (4.0.0) from EnderIO-1.12.2-5.3.72.jar         * enderioapi|conduits (4.0.0) from EnderIO-1.12.2-5.3.72.jar         * enderioapi|farm (4.0.0) from EnderIO-1.12.2-5.3.72.jar         * enderioapi|redstone (4.0.0) from EnderIO-1.12.2-5.3.72.jar         * enderioapi|teleport (4.0.0) from EnderIO-1.12.2-5.3.72.jar         * enderioapi|tools (4.0.0) from EnderIO-1.12.2-5.3.72.jar         * enderioapi|upgrades (4.0.0) from EnderIO-1.12.2-5.3.72.jar         * farmingforblockheads|api (1.0) from FarmingForBlockheads_1.12.2-3.1.28.jar         * ForestryAPI|apiculture (5.0.0) from forestry_1.12.2-5.8.2.387.jar         * ForestryAPI|arboriculture (4.3.0) from forestry_1.12.2-5.8.2.387.jar         * ForestryAPI|book (5.8.1) from forestry_1.12.2-5.8.2.387.jar         * ForestryAPI|circuits (3.1.0) from forestry_1.12.2-5.8.2.387.jar         * ForestryAPI|climate (5.0.0) from forestry_1.12.2-5.8.2.387.jar         * ForestryAPI|core (5.7.0) from forestry_1.12.2-5.8.2.387.jar         * ForestryAPI|farming (5.8.0) from forestry_1.12.2-5.8.2.387.jar         * ForestryAPI|food (1.1.0) from forestry_1.12.2-5.8.2.387.jar         * ForestryAPI|fuels (3.0.0) from forestry_1.12.2-5.8.2.387.jar         * ForestryAPI|genetics (5.7.0) from forestry_1.12.2-5.8.2.387.jar         * ForestryAPI|gui (5.8.0) from forestry_1.12.2-5.8.2.387.jar         * ForestryAPI|hives (4.1.0) from forestry_1.12.2-5.8.2.387.jar         * ForestryAPI|lepidopterology (1.4.0) from forestry_1.12.2-5.8.2.387.jar         * ForestryAPI|mail (3.1.0) from forestry_1.12.2-5.8.2.387.jar         * ForestryAPI|modules (5.7.0) from forestry_1.12.2-5.8.2.387.jar         * ForestryAPI|multiblock (3.0.0) from forestry_1.12.2-5.8.2.387.jar         * ForestryAPI|recipes (5.4.0) from forestry_1.12.2-5.8.2.387.jar         * ForestryAPI|storage (5.0.0) from forestry_1.12.2-5.8.2.387.jar         * ForestryAPI|world (2.1.0) from forestry_1.12.2-5.8.2.387.jar         * funkylocomotion_api (2.0) from funky-locomotion-1.12.2-1.1.2.jar         * gendustryAPI (2.3.0) from gendustry-1.6.5.8-mc1.12.2.jar         * Guide-API|API (2.0.0) from Guide-API-1.12-2.1.8-63.jar         * HatcheryAPI (1.11.2R1.0.0) from hatchery-1.12.2-2.2.2.jar         * iChunUtil API (1.2.0) from iChunUtil-1.12.2-7.2.2.jar         * ImmersiveEngineering|API (1.0) from ImmersiveEngineering-0.12-98.jar         * ImmersiveEngineering|ImmersiveFluxAPI (1.0) from ImmersiveEngineering-0.12-98.jar         * industrialforegoingapi (5) from industrialforegoing-1.12.2-1.12.13-237.jar         * integrateddynamics|api (0.2.0) from IntegratedDynamics-1.12.2-1.1.11.jar         * jeresources|API (0.9.2.60) from JustEnoughResources-1.12.2-0.9.2.60.jar         * journeymap|client-api (1.4) from journeymap-1.12.2-5.7.1p2.jar         * journeymap|client-api-display (1.4) from journeymap-1.12.2-5.7.1p2.jar         * journeymap|client-api-event (1.4) from journeymap-1.12.2-5.7.1p2.jar         * journeymap|client-api-model (1.4) from journeymap-1.12.2-5.7.1p2.jar         * journeymap|client-api-util (1.4) from journeymap-1.12.2-5.7.1p2.jar         * JustEnoughItemsAPI (4.13.0) from jei_1.12.2-4.16.1.301.jar         * MekanismAPI|core (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar         * MekanismAPI|energy (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar         * MekanismAPI|gas (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar         * MekanismAPI|infuse (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar         * MekanismAPI|laser (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar         * MekanismAPI|transmitter (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar         * MekanismAPI|util (9.0.0) from Mekanism-1.12.2-9.8.3.390.jar         * MouseTweaks|API (1.0) from MouseTweaks-2.10.1-mc1.12.2.jar         * openblocks|api (1.2) from OpenBlocks-1.12.2-1.8.1.jar         * PatchouliAPI (6) from Patchouli-1.0-23.6.jar         * projectred|api (2.1) from ProjectRed-1.12.2-4.9.4.120-Base.jar         * PsiAPI (16) from Psi-r1.1-78.2.jar         * QuarkAPI (4) from Quark-r1.6-179.jar         * reborncoreAPI (3.19.5) from RebornCore-1.12.2-3.19.5-universal.jar         * reborncoreAPI|Power (3.19.5) from RebornCore-1.12.2-3.19.5-universal.jar         * reborncoreAPI|Recipe (3.19.5) from RebornCore-1.12.2-3.19.5-universal.jar         * reborncoreAPI|Tile (3.19.5) from RebornCore-1.12.2-3.19.5-universal.jar         * redstonefluxapi (2.1.1) from RedstoneFlux-1.12-2.1.1.1-universal.jar         * rtgapi (1.0.0) from RTG-1.12.2-6.1.0.0-snapshot.1.jar         * StorageDrawersAPI (2.1.0) from StorageDrawers-1.12.2-5.5.1.jar         * StorageDrawersAPI|event (2.1.0) from StorageDrawers-1.12.2-5.5.1.jar         * StorageDrawersAPI|registry (2.1.0) from StorageDrawers-1.12.2-5.5.1.jar         * StorageDrawersAPI|render (2.1.0) from StorageDrawers-1.12.2-5.5.1.jar         * StorageDrawersAPI|storage (2.1.0) from StorageDrawers-1.12.2-5.5.1.jar         * StorageDrawersAPI|storage-attribute (2.1.0) from StorageDrawers-1.12.2-5.5.1.jar         * team_reborn|Praescriptum (3.19.5) from RebornCore-1.12.2-3.19.5-universal.jar         * techrebornAPI (2.27.3.1084) from TechReborn-1.12.2-2.27.3.1084-universal.jar         * Thaumcraft|API (6.0.2) from Thaumcraft-1.12.2-6.1.BETA26.jar         * valkyrielib.api (1.12.2-2.0.10a) from valkyrielib-1.12.2-2.0.20.1.jar         * veinminerApi (0.3) from VeinMiner-1.12-0.38.2.647+b31535a.jar         * WailaAPI (1.3) from Hwyla-1.8.26-B41_1.12.2.jar         * zerocore|API|multiblock (1.10.2-0.0.2) from zerocore-1.12.2-0.1.2.9.jar         * zerocore|API|multiblock|rectangular (1.10.2-0.0.2) from zerocore-1.12.2-0.1.2.9.jar         * zerocore|API|multiblock|tier (1.10.2-0.0.2) from zerocore-1.12.2-0.1.2.9.jar         * zerocore|API|multiblock|validation (1.10.2-0.0.2) from zerocore-1.12.2-0.1.2.9.jar     RebornCore:          Plugin Engine: 0         RebornCore Version: 3.19.5         Runtime Debofucsation 1         Invalid fingerprint detected for RebornCore!         RenderEngine: 0     Patchouli open book context: n/a     [Psi] Active spell: None     AE2 Integration: IC2:ON, RC:OFF, MFR:OFF, Waila:ON, InvTweaks:ON, JEI:ON, Mekanism:ON, OpenComputers:OFF, THE_ONE_PROBE:OFF, TESLA:ON, CRAFTTWEAKER:ON     Launched Version: forge-14.23.5.2860     LWJGL: 2.9.4     OpenGL: NVIDIA GeForce GTX 1650/PCIe/SSE2 GL version 4.6.0 NVIDIA 560.70, NVIDIA Corporation     GL Caps: Using GL 1.3 multitexturing. Using GL 1.3 texture combiners. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Shaders are available because OpenGL 2.1 is supported. VBOs are available because OpenGL 1.5 is supported.     Using VBOs: No     Is Modded: Definitely; Client brand changed to 'fml,forge'     Type: Client (map_client.txt)     Resource Packs: Faithful SEUS Version 4.zip     Current Language: English (US)     Profiler Position: N/A (disabled)     CPU: 8x Intel(R) Core(TM) i7-4790K CPU @ 4.00GHz   thank you so much for any help
    • I am trying to play a modpack, but this error message: "org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError:" keeps showing up. I've tried going through the logs, but to no avail. Please help. The Log: https://paste.ee/p/3omFW
    • hi, i always had this issue in my pc whenever i play minecraft with mods, no matter if i only add 1 or 2 mods, i always have these annoying lag spikes everytime i play, my pc's cpu might not be the best, but i have some friends with worse pc's than mine and modded minecraft works perfectly fine in them. Maybe is some configuration error within my pc or game, whatever the case is, i have this spark profile i created earlier so i can get some help from you guys https://spark.lucko.me/5TP6FrIpS1
    • Does anyone want to make a mod with me I have basic modding skills and would love to work with someone!   If your interested I will DM you on the forge forum site and we can go from there.
    • I'm assuming the Creative Crate contains multiple creative mode items?
  • Topics

×
×
  • Create New...

Important Information

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