
WitherDoggie
Forge Modder-
Posts
90 -
Joined
-
Last visited
Everything posted by WitherDoggie
-
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Found what I was looking for. I used ModelLoader.setCustomStateMapper. The blocks now render in-game with their models and textures. The only thing that doesn't work is the blocks don't have a texture in the inventory. What final piece am I missing to get them to render properly? ClientProxy http://pastebin.com/6BrkucFe Log http://pastebin.com/vGHzqT4m -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Then in what class does minecraft render blocks? -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Then in what class does minecraft render blocks? -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Each color of the stained glass pane has it's own blockstate and model files. I want to see how this is setup inside the minecraft classes so I can use this concept for my block. -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Each color of the stained glass pane has it's own blockstate and model files. I want to see how this is setup inside the minecraft classes so I can use this concept for my block. -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Like I said, I attempted to write one. Do you know what class that minecraft renders stained glass panes? -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Like I said, I attempted to write one. Do you know what class that minecraft renders stained glass panes? -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
I looked at the link you gave me and attempted to write a json file for my block, but it doesn't work. { "forge_marker": 1, "defaults":{ }, "variants":{ "type":{ 0:{ "texture": "withermod:blocks/woodWall_oak" "model" : "east=false,north=false,south=false,west=false": { "model": "withermod:woodWall_oak_nsew" }, "east=false,north=true,south=false,west=false": { "model": "withermod:woodWall_oak_n" }, "east=true,north=false,south=false,west=false": { "model": "withermod:woodWall_oak_n", "y": 90 }, "east=false,north=false,south=true,west=false": { "model": "withermod:woodWall_oak_n", "y": 180 }, "east=false,north=false,south=false,west=true": { "model": "withermod:woodWall_oak_n", "y": 270 }, "east=true,north=true,south=false,west=false": { "model": "withermod:woodWall_oak_ne" }, "east=true,north=false,south=true,west=false": { "model": "withermod:woodWall_oak_ne", "y": 90 }, "east=false,north=false,south=true,west=true": { "model": "withermod:woodWall_oak_ne", "y": 180 }, "east=false,north=true,south=false,west=true": { "model": "withermod:woodWall_oak_ne", "y": 270 }, "east=false,north=true,south=true,west=false": { "model": "withermod:woodWall_oak_ns" }, "east=true,north=false,south=false,west=true": { "model": "withermod:woodWall_oak_ns", "y": 90 }, "east=true,north=true,south=true,west=false": { "model": "withermod:woodWall_oak_nse" }, "east=true,north=false,south=true,west=true": { "model": "withermod:woodWall_oak_nse", "y": 90 }, "east=false,north=true,south=true,west=true": { "model": "withermod:woodWall_oak_nse", "y": 180 }, "east=true,north=true,south=false,west=true": { "model": "withermod:woodWall_oak_nse", "y": 270 }, "east=true,north=true,south=true,west=true": { "model": "withermod:woodWall_oak_nsew" } } } -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
I looked at the link you gave me and attempted to write a json file for my block, but it doesn't work. { "forge_marker": 1, "defaults":{ }, "variants":{ "type":{ 0:{ "texture": "withermod:blocks/woodWall_oak" "model" : "east=false,north=false,south=false,west=false": { "model": "withermod:woodWall_oak_nsew" }, "east=false,north=true,south=false,west=false": { "model": "withermod:woodWall_oak_n" }, "east=true,north=false,south=false,west=false": { "model": "withermod:woodWall_oak_n", "y": 90 }, "east=false,north=false,south=true,west=false": { "model": "withermod:woodWall_oak_n", "y": 180 }, "east=false,north=false,south=false,west=true": { "model": "withermod:woodWall_oak_n", "y": 270 }, "east=true,north=true,south=false,west=false": { "model": "withermod:woodWall_oak_ne" }, "east=true,north=false,south=true,west=false": { "model": "withermod:woodWall_oak_ne", "y": 90 }, "east=false,north=false,south=true,west=true": { "model": "withermod:woodWall_oak_ne", "y": 180 }, "east=false,north=true,south=false,west=true": { "model": "withermod:woodWall_oak_ne", "y": 270 }, "east=false,north=true,south=true,west=false": { "model": "withermod:woodWall_oak_ns" }, "east=true,north=false,south=false,west=true": { "model": "withermod:woodWall_oak_ns", "y": 90 }, "east=true,north=true,south=true,west=false": { "model": "withermod:woodWall_oak_nse" }, "east=true,north=false,south=true,west=true": { "model": "withermod:woodWall_oak_nse", "y": 90 }, "east=false,north=true,south=true,west=true": { "model": "withermod:woodWall_oak_nse", "y": 180 }, "east=true,north=true,south=false,west=true": { "model": "withermod:woodWall_oak_nse", "y": 270 }, "east=true,north=true,south=true,west=true": { "model": "withermod:woodWall_oak_nsew" } } } -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
What would be the best way to set this up since I have 1 block with 6 types (oak, spruce, birch, jungle, acacia, and dark oak) and each type has to have 12 models to it since it is a pane block. -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
What would be the best way to set this up since I have 1 block with 6 types (oak, spruce, birch, jungle, acacia, and dark oak) and each type has to have 12 models to it since it is a pane block. -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Would a setup like this work? { "variants": { "type=oak":{ "east=false,north=false,south=false,west=false": { "model": "withermod:woodWall_oak_nsew" }, "east=false,north=true,south=false,west=false": { "model": "withermod:woodWall_oak_n" }, "east=true,north=false,south=false,west=false": { "model": "withermod:woodWall_oak_n", "y": 90 }, "east=false,north=false,south=true,west=false": { "model": "withermod:woodWall_oak_n", "y": 180 }, "east=false,north=false,south=false,west=true": { "model": "withermod:woodWall_oak_n", "y": 270 }, "east=true,north=true,south=false,west=false": { "model": "withermod:woodWall_oak_ne" }, "east=true,north=false,south=true,west=false": { "model": "withermod:woodWall_oak_ne", "y": 90 }, "east=false,north=false,south=true,west=true": { "model": "withermod:woodWall_oak_ne", "y": 180 }, "east=false,north=true,south=false,west=true": { "model": "withermod:woodWall_oak_ne", "y": 270 }, "east=false,north=true,south=true,west=false": { "model": "withermod:woodWall_oak_ns" }, "east=true,north=false,south=false,west=true": { "model": "withermod:woodWall_oak_ns", "y": 90 }, "east=true,north=true,south=true,west=false": { "model": "withermod:woodWall_oak_nse" }, "east=true,north=false,south=true,west=true": { "model": "withermod:woodWall_oak_nse", "y": 90 }, "east=false,north=true,south=true,west=true": { "model": "withermod:woodWall_oak_nse", "y": 180 }, "east=true,north=true,south=false,west=true": { "model": "withermod:woodWall_oak_nse", "y": 270 }, "east=true,north=true,south=true,west=true": { "model": "withermod:woodWall_oak_nsew" } } "type=spruce":{ "east=false,north=false,south=false,west=false": { "model": "withermod:woodWall_spruce_nsew" }, "east=false,north=true,south=false,west=false": { "model": "withermod:woodWall_spruce_n" }, "east=true,north=false,south=false,west=false": { "model": "withermod:woodWall_spruce_n", "y": 90 }, "east=false,north=false,south=true,west=false": { "model": "withermod:woodWall_spruce_n", "y": 180 }, "east=false,north=false,south=false,west=true": { "model": "withermod:woodWall_spruce_n", "y": 270 }, "east=true,north=true,south=false,west=false": { "model": "withermod:woodWall_spruce_ne" }, "east=true,north=false,south=true,west=false": { "model": "withermod:woodWall_spruce_ne", "y": 90 }, "east=false,north=false,south=true,west=true": { "model": "withermod:woodWall_spruce_ne", "y": 180 }, "east=false,north=true,south=false,west=true": { "model": "withermod:woodWall_spruce_ne", "y": 270 }, "east=false,north=true,south=true,west=false": { "model": "withermod:woodWall_spruce_ns" }, "east=true,north=false,south=false,west=true": { "model": "withermod:woodWall_spruce_ns", "y": 90 }, "east=true,north=true,south=true,west=false": { "model": "withermod:woodWall_spruce_nse" }, "east=true,north=false,south=true,west=true": { "model": "withermod:woodWall_spruce_nse", "y": 90 }, "east=false,north=true,south=true,west=true": { "model": "withermod:woodWall_spruce_nse", "y": 180 }, "east=true,north=true,south=false,west=true": { "model": "withermod:woodWall_spruce_nse", "y": 270 }, "east=true,north=true,south=true,west=true": { "model": "withermod:woodWall_spruce_nsew" } } } } Then all I have to do is tell the game to use type=oak, right? -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Would a setup like this work? { "variants": { "type=oak":{ "east=false,north=false,south=false,west=false": { "model": "withermod:woodWall_oak_nsew" }, "east=false,north=true,south=false,west=false": { "model": "withermod:woodWall_oak_n" }, "east=true,north=false,south=false,west=false": { "model": "withermod:woodWall_oak_n", "y": 90 }, "east=false,north=false,south=true,west=false": { "model": "withermod:woodWall_oak_n", "y": 180 }, "east=false,north=false,south=false,west=true": { "model": "withermod:woodWall_oak_n", "y": 270 }, "east=true,north=true,south=false,west=false": { "model": "withermod:woodWall_oak_ne" }, "east=true,north=false,south=true,west=false": { "model": "withermod:woodWall_oak_ne", "y": 90 }, "east=false,north=false,south=true,west=true": { "model": "withermod:woodWall_oak_ne", "y": 180 }, "east=false,north=true,south=false,west=true": { "model": "withermod:woodWall_oak_ne", "y": 270 }, "east=false,north=true,south=true,west=false": { "model": "withermod:woodWall_oak_ns" }, "east=true,north=false,south=false,west=true": { "model": "withermod:woodWall_oak_ns", "y": 90 }, "east=true,north=true,south=true,west=false": { "model": "withermod:woodWall_oak_nse" }, "east=true,north=false,south=true,west=true": { "model": "withermod:woodWall_oak_nse", "y": 90 }, "east=false,north=true,south=true,west=true": { "model": "withermod:woodWall_oak_nse", "y": 180 }, "east=true,north=true,south=false,west=true": { "model": "withermod:woodWall_oak_nse", "y": 270 }, "east=true,north=true,south=true,west=true": { "model": "withermod:woodWall_oak_nsew" } } "type=spruce":{ "east=false,north=false,south=false,west=false": { "model": "withermod:woodWall_spruce_nsew" }, "east=false,north=true,south=false,west=false": { "model": "withermod:woodWall_spruce_n" }, "east=true,north=false,south=false,west=false": { "model": "withermod:woodWall_spruce_n", "y": 90 }, "east=false,north=false,south=true,west=false": { "model": "withermod:woodWall_spruce_n", "y": 180 }, "east=false,north=false,south=false,west=true": { "model": "withermod:woodWall_spruce_n", "y": 270 }, "east=true,north=true,south=false,west=false": { "model": "withermod:woodWall_spruce_ne" }, "east=true,north=false,south=true,west=false": { "model": "withermod:woodWall_spruce_ne", "y": 90 }, "east=false,north=false,south=true,west=true": { "model": "withermod:woodWall_spruce_ne", "y": 180 }, "east=false,north=true,south=false,west=true": { "model": "withermod:woodWall_spruce_ne", "y": 270 }, "east=false,north=true,south=true,west=false": { "model": "withermod:woodWall_spruce_ns" }, "east=true,north=false,south=false,west=true": { "model": "withermod:woodWall_spruce_ns", "y": 90 }, "east=true,north=true,south=true,west=false": { "model": "withermod:woodWall_spruce_nse" }, "east=true,north=false,south=true,west=true": { "model": "withermod:woodWall_spruce_nse", "y": 90 }, "east=false,north=true,south=true,west=true": { "model": "withermod:woodWall_spruce_nse", "y": 180 }, "east=true,north=true,south=false,west=true": { "model": "withermod:woodWall_spruce_nse", "y": 270 }, "east=true,north=true,south=true,west=true": { "model": "withermod:woodWall_spruce_nsew" } } } } Then all I have to do is tell the game to use type=oak, right? -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Of course. How? Since this is possible it will be the way I do this. -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Of course. How? Since this is possible it will be the way I do this. -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Based on the logs, I figured that's what was happening. How can I get the game to load the blockstate json based on the block's variant? Is there a way I can create a blockstate json that includes the variants and all of the models for each variant? -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Based on the logs, I figured that's what was happening. How can I get the game to load the blockstate json based on the block's variant? Is there a way I can create a blockstate json that includes the variants and all of the models for each variant? -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Added the ":" and the inventory model of the block loads, but it still shows up with no model or texture when placed in the world. package com.wither.withermod; import com.wither.withermod.blocks.BlockRegistry; import com.wither.withermod.blocks.BlockRender; import com.wither.withermod.blocks.WoodWall; import com.wither.withermod.items.ItemRegistry; import com.wither.withermod.items.RegisterRender; import net.minecraft.client.Minecraft; import net.minecraft.client.resources.model.ModelBakery; import net.minecraft.client.resources.model.ModelResourceLocation; import net.minecraft.item.Item; import net.minecraft.util.ResourceLocation; import net.minecraftforge.client.model.ModelLoader; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPostInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; import net.minecraftforge.fml.common.registry.GameRegistry; public class ClientProxy extends CommonProxy { @Override public void PreInit(FMLPreInitializationEvent e){ super.PreInit(e); //ModelResourceLocation woodWall_oak = new ModelResourceLocation (Main.MODID + "woodWall_oak"); //ModelResourceLocation woodWall_spruce = new ModelResourceLocation (Main.MODID + "woodWall_spruce" , "inventory"); ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(BlockRegistry.woodWall), 0, new ModelResourceLocation(Main.MODID + ":" + "woodWall_oak", "east=false,north=false,south=false,west=false")); } @Override public void Init(FMLInitializationEvent e){ super.Init(e); //BlockRender.registerBlock(); //RegisterRender.RegisterModel(); } @Override public void PostInit(FMLPostInitializationEvent e){ super.PostInit(e); } } Log 2016-05-24 15:32:26,247 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2016-05-24 15:32:26,252 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [15:32:26] [main/INFO] [GradleStart]: Extra: [] [15:32:26] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Evan/.gradle/caches/minecraft/assets, --assetIndex, 1.8, --accessToken{REDACTED}, --version, 1.8.9, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [15:32:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [15:32:26] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [15:32:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [15:32:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [15:32:26] [main/INFO] [FML]: Forge Mod Loader version 11.15.1.1890 for Minecraft 1.8.9 loading [15:32:26] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_91, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_91 [15:32:26] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [15:32:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [15:32:26] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [15:32:26] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [15:32:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [15:32:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [15:32:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [15:32:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [15:32:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [15:32:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [15:32:27] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [15:32:30] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [15:32:30] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [15:32:30] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [15:32:32] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [15:32:32] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [15:32:32] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [15:32:32] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} 2016-05-24 15:32:34,648 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2016-05-24 15:32:34,744 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2016-05-24 15:32:34,747 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [15:32:35] [Client thread/INFO]: Setting user: Player146 [15:32:45] [Client thread/INFO]: LWJGL Version: 2.9.4 [15:32:46] [Client thread/WARN] [FML]: ============================================================= [15:32:46] [Client thread/WARN] [FML]: MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML! [15:32:46] [Client thread/WARN] [FML]: Offendor: com/sun/jna/Native.main([Ljava/lang/String;)V [15:32:46] [Client thread/WARN] [FML]: Use FMLCommonHandler.exitJava instead [15:32:46] [Client thread/WARN] [FML]: ============================================================= [15:32:47] [Client thread/INFO] [sTDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:246]: ---- Minecraft Crash Report ---- // This doesn't make any sense! Time: 5/24/16 3:32 PM Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.8.9 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_91, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 765639736 bytes (730 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: Loaded coremods (and transformers): GL info: ' Vendor: 'Intel' Version: '4.0.0 - Build 10.18.10.4276' Renderer: 'Intel(R) HD Graphics 4000' [15:32:47] [Client thread/INFO] [FML]: MinecraftForge v11.15.1.1890 Initialized [15:32:47] [Client thread/INFO] [FML]: Replaced 229 ore recipies [15:32:48] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [15:32:48] [Client thread/INFO] [FML]: Searching C:\Users\Evan\Desktop\forge-1.8.9-11.15.1.1890-1.8.9-mdk\run\mods for mods [15:32:51] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [15:32:52] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, withermod] at CLIENT [15:32:52] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, withermod] at SERVER [15:32:53] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Wither's Mod [15:32:53] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [15:32:53] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations [15:32:53] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [15:32:53] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [15:32:54] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [15:32:54] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [15:32:54] [Client thread/INFO] [sTDOUT]: [com.wither.withermod.items.ModItem:<init>:18]: Initializing Itemgarium [15:32:54] [Client thread/INFO] [sTDOUT]: [com.wither.withermod.items.ModItem:<init>:18]: Initializing Itemradium [15:32:54] [Client thread/INFO] [sTDOUT]: [com.wither.withermod.items.ModItem:<init>:18]: Initializing ItemlavaGem [15:32:54] [Client thread/INFO] [FML]: Applying holder lookups [15:32:54] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: OUTDATED Target: 11.15.1.1902 [15:32:54] [Client thread/INFO] [FML]: Holder lookups applied [15:32:54] [Client thread/INFO] [FML]: Injecting itemstacks [15:32:54] [Client thread/INFO] [FML]: Itemstack injection complete [15:32:54] [sound Library Loader/INFO]: Starting up SoundSystem... [15:32:55] [Thread-9/INFO]: Initializing LWJGL OpenAL [15:32:55] [Thread-9/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [15:32:55] [Thread-9/INFO]: OpenAL initialized. [15:32:55] [sound Library Loader/INFO]: Sound engine started [15:33:11] [Client thread/INFO] [FML]: Max texture size: 8192 [15:33:11] [Client thread/INFO]: Created: 16x16 textures-atlas [15:33:12] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=true,north=false,south=true,type=acacia,west=false for blockstate "withermod:woodWall[east=true,north=false,south=true,type=acacia,west=false]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=true,north=false,south=true,type=acacia,west=false at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:515) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more [15:33:12] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=true,north=true,south=true,type=acacia,west=false for blockstate "withermod:woodWall[east=true,north=true,south=true,type=acacia,west=false]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=true,north=true,south=true,type=acacia,west=false at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:515) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more [15:33:12] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=false,north=false,south=true,type=oak,west=true for blockstate "withermod:woodWall[east=false,north=false,south=true,type=oak,west=true]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=false,north=false,south=true,type=oak,west=true at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:515) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more [15:33:12] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:lettucePlant#age=5 for blockstate "withermod:lettucePlant[age=5]" java.lang.Exception: Could not load model definition for variant withermod:lettucePlant#age=5 at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:515) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/lettucePlant.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more Caused by: java.io.FileNotFoundException: withermod:blockstates/lettucePlant.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more [15:33:12] [Client thread/ERROR] [FML]: Suppressed additional 231 model loading errors for domain withermod [15:33:12] [Client thread/INFO] [FML]: Injecting itemstacks [15:33:12] [Client thread/INFO] [FML]: Itemstack injection complete [15:33:13] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [15:33:13] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Wither's Mod [15:33:13] [Client thread/INFO]: SoundSystem shutting down... [15:33:13] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com [15:33:13] [sound Library Loader/INFO]: Starting up SoundSystem... [15:33:13] [Thread-11/INFO]: Initializing LWJGL OpenAL [15:33:13] [Thread-11/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [15:33:13] [Thread-11/INFO]: OpenAL initialized. [15:33:14] [sound Library Loader/INFO]: Sound engine started [15:33:24] [Client thread/INFO] [FML]: Max texture size: 8192 [15:33:25] [Client thread/INFO]: Created: 512x512 textures-atlas [15:33:25] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=true,north=false,south=true,type=acacia,west=false for blockstate "withermod:woodWall[east=true,north=false,south=true,type=acacia,west=false]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=true,north=false,south=true,type=acacia,west=false at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:326) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:532) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more [15:33:25] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=true,north=true,south=true,type=acacia,west=false for blockstate "withermod:woodWall[east=true,north=true,south=true,type=acacia,west=false]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=true,north=true,south=true,type=acacia,west=false at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:326) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:532) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more [15:33:25] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=false,north=false,south=true,type=oak,west=true for blockstate "withermod:woodWall[east=false,north=false,south=true,type=oak,west=true]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=false,north=false,south=true,type=oak,west=true at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:326) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:532) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more [15:33:25] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:lettucePlant#age=5 for blockstate "withermod:lettucePlant[age=5]" java.lang.Exception: Could not load model definition for variant withermod:lettucePlant#age=5 at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:326) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:532) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/lettucePlant.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more Caused by: java.io.FileNotFoundException: withermod:blockstates/lettucePlant.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more [15:33:25] [Client thread/ERROR] [FML]: Suppressed additional 231 model loading errors for domain withermod [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found. [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: DOMAIN withermod [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------------------------------- [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: domain withermod is missing 9 textures [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: domain withermod has 1 location: [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: mod withermod resources at C:\Users\Evan\Desktop\forge-1.8.9-11.15.1.1890-1.8.9-mdk\bin [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: The missing resources for domain withermod are: [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/tomatoSeeds.png [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/taco.png [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/garium_block.png [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/lava_gem_ore.png [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/tomato.png [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/cheese.png [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/lettuce.png [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/radium_block.png [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/testpane.png [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: No other errors exist for domain withermod [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [15:33:27] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [15:33:37] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [15:33:38] [server thread/INFO]: Starting integrated minecraft server version 1.8.9 [15:33:38] [server thread/INFO]: Generating keypair [15:33:38] [server thread/INFO]: Converting map! [15:33:38] [server thread/INFO]: Scanning folders... [15:33:38] [server thread/INFO]: Total conversion count is 0 [15:33:38] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance [15:33:38] [server thread/INFO] [FML]: Applying holder lookups [15:33:38] [server thread/INFO] [FML]: Holder lookups applied [15:33:38] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@193aa6a9) [15:33:39] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@193aa6a9) [15:33:39] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@193aa6a9) [15:33:39] [server thread/INFO]: Preparing start region for level 0 [15:33:40] [server thread/INFO]: Preparing spawn area: 4% [15:33:41] [server thread/INFO]: Preparing spawn area: 7% [15:33:42] [server thread/INFO]: Preparing spawn area: 10% [15:33:43] [server thread/INFO]: Preparing spawn area: 14% [15:33:44] [server thread/INFO]: Preparing spawn area: 20% [15:33:45] [server thread/INFO]: Preparing spawn area: 27% [15:33:46] [server thread/INFO]: Preparing spawn area: 36% [15:33:47] [server thread/INFO]: Preparing spawn area: 45% [15:33:48] [server thread/INFO]: Preparing spawn area: 53% [15:33:49] [server thread/INFO]: Preparing spawn area: 60% [15:33:50] [server thread/INFO]: Preparing spawn area: 68% [15:33:51] [server thread/INFO]: Preparing spawn area: 77% [15:33:52] [server thread/INFO]: Preparing spawn area: 85% [15:33:53] [server thread/INFO]: Preparing spawn area: 96% [15:33:54] [server thread/INFO]: Changing view distance to 6, from 10 [15:33:54] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [15:33:56] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2 [15:33:56] [Netty Server IO #1/INFO] [FML]: Client protocol version 2 [15:33:56] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],withermod@Build 1,[email protected],[email protected] [15:33:56] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established [15:33:56] [server thread/INFO] [FML]: [server thread] Server side modded connection established [15:33:56] [server thread/INFO]: Player146[local:E:14d9d7ef] logged in with entity id 447 at (90.5, 73.0, 248.5) [15:33:56] [server thread/INFO]: Player146 joined the game [15:33:57] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@28a67f93[id=2b32bf3c-80b5-35b3-abab-2d4e53bbbeb0,name=Player146,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.func_181037_M(Minecraft.java:2915) [Minecraft.class:?] at net.minecraft.client.resources.SkinManager$3.run(SkinManager.java:130) [skinManager$3.class:?] at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) [?:1.8.0_91] at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.8.0_91] at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.8.0_91] at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.8.0_91] at java.lang.Thread.run(Unknown Source) [?:1.8.0_91] [15:33:59] [server thread/INFO]: Player146 has just earned the achievement [Taking Inventory] [15:33:59] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 3385ms behind, skipping 67 tick(s) [15:34:00] [Client thread/INFO]: [CHAT] Player146 has just earned the achievement [Taking Inventory] [15:35:17] [server thread/INFO]: Saving and pausing game... [15:35:17] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [15:35:17] [server thread/INFO]: Saving chunks for level 'New World'/Nether [15:35:17] [server thread/INFO]: Saving chunks for level 'New World'/The End [15:35:18] [server thread/INFO]: Stopping server [15:35:18] [server thread/INFO]: Saving players [15:35:18] [server thread/INFO]: Saving worlds [15:35:18] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [15:35:18] [server thread/INFO]: Saving chunks for level 'New World'/Nether [15:35:18] [server thread/INFO]: Saving chunks for level 'New World'/The End [15:35:18] [server thread/INFO] [FML]: Unloading dimension 0 [15:35:18] [server thread/INFO] [FML]: Unloading dimension -1 [15:35:18] [server thread/INFO] [FML]: Unloading dimension 1 [15:35:19] [server thread/INFO] [FML]: Applying holder lookups [15:35:19] [server thread/INFO] [FML]: Holder lookups applied [15:35:19] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [15:35:19] [Client thread/INFO]: Stopping! [15:35:19] [Client thread/INFO]: SoundSystem shutting down... [15:35:19] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Added the ":" and the inventory model of the block loads, but it still shows up with no model or texture when placed in the world. package com.wither.withermod; import com.wither.withermod.blocks.BlockRegistry; import com.wither.withermod.blocks.BlockRender; import com.wither.withermod.blocks.WoodWall; import com.wither.withermod.items.ItemRegistry; import com.wither.withermod.items.RegisterRender; import net.minecraft.client.Minecraft; import net.minecraft.client.resources.model.ModelBakery; import net.minecraft.client.resources.model.ModelResourceLocation; import net.minecraft.item.Item; import net.minecraft.util.ResourceLocation; import net.minecraftforge.client.model.ModelLoader; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPostInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; import net.minecraftforge.fml.common.registry.GameRegistry; public class ClientProxy extends CommonProxy { @Override public void PreInit(FMLPreInitializationEvent e){ super.PreInit(e); //ModelResourceLocation woodWall_oak = new ModelResourceLocation (Main.MODID + "woodWall_oak"); //ModelResourceLocation woodWall_spruce = new ModelResourceLocation (Main.MODID + "woodWall_spruce" , "inventory"); ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(BlockRegistry.woodWall), 0, new ModelResourceLocation(Main.MODID + ":" + "woodWall_oak", "east=false,north=false,south=false,west=false")); } @Override public void Init(FMLInitializationEvent e){ super.Init(e); //BlockRender.registerBlock(); //RegisterRender.RegisterModel(); } @Override public void PostInit(FMLPostInitializationEvent e){ super.PostInit(e); } } Log 2016-05-24 15:32:26,247 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2016-05-24 15:32:26,252 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [15:32:26] [main/INFO] [GradleStart]: Extra: [] [15:32:26] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Evan/.gradle/caches/minecraft/assets, --assetIndex, 1.8, --accessToken{REDACTED}, --version, 1.8.9, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [15:32:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [15:32:26] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [15:32:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [15:32:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [15:32:26] [main/INFO] [FML]: Forge Mod Loader version 11.15.1.1890 for Minecraft 1.8.9 loading [15:32:26] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_91, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_91 [15:32:26] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [15:32:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [15:32:26] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [15:32:26] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [15:32:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [15:32:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [15:32:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [15:32:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [15:32:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [15:32:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [15:32:27] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [15:32:30] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [15:32:30] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [15:32:30] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [15:32:32] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [15:32:32] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [15:32:32] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [15:32:32] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} 2016-05-24 15:32:34,648 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2016-05-24 15:32:34,744 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2016-05-24 15:32:34,747 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [15:32:35] [Client thread/INFO]: Setting user: Player146 [15:32:45] [Client thread/INFO]: LWJGL Version: 2.9.4 [15:32:46] [Client thread/WARN] [FML]: ============================================================= [15:32:46] [Client thread/WARN] [FML]: MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML! [15:32:46] [Client thread/WARN] [FML]: Offendor: com/sun/jna/Native.main([Ljava/lang/String;)V [15:32:46] [Client thread/WARN] [FML]: Use FMLCommonHandler.exitJava instead [15:32:46] [Client thread/WARN] [FML]: ============================================================= [15:32:47] [Client thread/INFO] [sTDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:246]: ---- Minecraft Crash Report ---- // This doesn't make any sense! Time: 5/24/16 3:32 PM Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.8.9 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_91, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 765639736 bytes (730 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: Loaded coremods (and transformers): GL info: ' Vendor: 'Intel' Version: '4.0.0 - Build 10.18.10.4276' Renderer: 'Intel(R) HD Graphics 4000' [15:32:47] [Client thread/INFO] [FML]: MinecraftForge v11.15.1.1890 Initialized [15:32:47] [Client thread/INFO] [FML]: Replaced 229 ore recipies [15:32:48] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [15:32:48] [Client thread/INFO] [FML]: Searching C:\Users\Evan\Desktop\forge-1.8.9-11.15.1.1890-1.8.9-mdk\run\mods for mods [15:32:51] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [15:32:52] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, withermod] at CLIENT [15:32:52] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, withermod] at SERVER [15:32:53] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Wither's Mod [15:32:53] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [15:32:53] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations [15:32:53] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [15:32:53] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [15:32:54] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [15:32:54] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [15:32:54] [Client thread/INFO] [sTDOUT]: [com.wither.withermod.items.ModItem:<init>:18]: Initializing Itemgarium [15:32:54] [Client thread/INFO] [sTDOUT]: [com.wither.withermod.items.ModItem:<init>:18]: Initializing Itemradium [15:32:54] [Client thread/INFO] [sTDOUT]: [com.wither.withermod.items.ModItem:<init>:18]: Initializing ItemlavaGem [15:32:54] [Client thread/INFO] [FML]: Applying holder lookups [15:32:54] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: OUTDATED Target: 11.15.1.1902 [15:32:54] [Client thread/INFO] [FML]: Holder lookups applied [15:32:54] [Client thread/INFO] [FML]: Injecting itemstacks [15:32:54] [Client thread/INFO] [FML]: Itemstack injection complete [15:32:54] [sound Library Loader/INFO]: Starting up SoundSystem... [15:32:55] [Thread-9/INFO]: Initializing LWJGL OpenAL [15:32:55] [Thread-9/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [15:32:55] [Thread-9/INFO]: OpenAL initialized. [15:32:55] [sound Library Loader/INFO]: Sound engine started [15:33:11] [Client thread/INFO] [FML]: Max texture size: 8192 [15:33:11] [Client thread/INFO]: Created: 16x16 textures-atlas [15:33:12] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=true,north=false,south=true,type=acacia,west=false for blockstate "withermod:woodWall[east=true,north=false,south=true,type=acacia,west=false]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=true,north=false,south=true,type=acacia,west=false at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:515) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more [15:33:12] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=true,north=true,south=true,type=acacia,west=false for blockstate "withermod:woodWall[east=true,north=true,south=true,type=acacia,west=false]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=true,north=true,south=true,type=acacia,west=false at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:515) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more [15:33:12] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=false,north=false,south=true,type=oak,west=true for blockstate "withermod:woodWall[east=false,north=false,south=true,type=oak,west=true]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=false,north=false,south=true,type=oak,west=true at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:515) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more [15:33:12] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:lettucePlant#age=5 for blockstate "withermod:lettucePlant[age=5]" java.lang.Exception: Could not load model definition for variant withermod:lettucePlant#age=5 at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:515) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/lettucePlant.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more Caused by: java.io.FileNotFoundException: withermod:blockstates/lettucePlant.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more [15:33:12] [Client thread/ERROR] [FML]: Suppressed additional 231 model loading errors for domain withermod [15:33:12] [Client thread/INFO] [FML]: Injecting itemstacks [15:33:12] [Client thread/INFO] [FML]: Itemstack injection complete [15:33:13] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [15:33:13] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Wither's Mod [15:33:13] [Client thread/INFO]: SoundSystem shutting down... [15:33:13] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com [15:33:13] [sound Library Loader/INFO]: Starting up SoundSystem... [15:33:13] [Thread-11/INFO]: Initializing LWJGL OpenAL [15:33:13] [Thread-11/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [15:33:13] [Thread-11/INFO]: OpenAL initialized. [15:33:14] [sound Library Loader/INFO]: Sound engine started [15:33:24] [Client thread/INFO] [FML]: Max texture size: 8192 [15:33:25] [Client thread/INFO]: Created: 512x512 textures-atlas [15:33:25] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=true,north=false,south=true,type=acacia,west=false for blockstate "withermod:woodWall[east=true,north=false,south=true,type=acacia,west=false]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=true,north=false,south=true,type=acacia,west=false at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:326) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:532) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more [15:33:25] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=true,north=true,south=true,type=acacia,west=false for blockstate "withermod:woodWall[east=true,north=true,south=true,type=acacia,west=false]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=true,north=true,south=true,type=acacia,west=false at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:326) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:532) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more [15:33:25] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=false,north=false,south=true,type=oak,west=true for blockstate "withermod:woodWall[east=false,north=false,south=true,type=oak,west=true]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=false,north=false,south=true,type=oak,west=true at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:326) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:532) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more [15:33:25] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:lettucePlant#age=5 for blockstate "withermod:lettucePlant[age=5]" java.lang.Exception: Could not load model definition for variant withermod:lettucePlant#age=5 at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:326) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:532) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/lettucePlant.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more Caused by: java.io.FileNotFoundException: withermod:blockstates/lettucePlant.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more [15:33:25] [Client thread/ERROR] [FML]: Suppressed additional 231 model loading errors for domain withermod [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found. [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: DOMAIN withermod [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------------------------------- [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: domain withermod is missing 9 textures [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: domain withermod has 1 location: [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: mod withermod resources at C:\Users\Evan\Desktop\forge-1.8.9-11.15.1.1890-1.8.9-mdk\bin [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: The missing resources for domain withermod are: [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/tomatoSeeds.png [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/taco.png [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/garium_block.png [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/lava_gem_ore.png [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/tomato.png [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/cheese.png [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/lettuce.png [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/radium_block.png [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/testpane.png [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: No other errors exist for domain withermod [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [15:33:26] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [15:33:27] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [15:33:37] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [15:33:38] [server thread/INFO]: Starting integrated minecraft server version 1.8.9 [15:33:38] [server thread/INFO]: Generating keypair [15:33:38] [server thread/INFO]: Converting map! [15:33:38] [server thread/INFO]: Scanning folders... [15:33:38] [server thread/INFO]: Total conversion count is 0 [15:33:38] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance [15:33:38] [server thread/INFO] [FML]: Applying holder lookups [15:33:38] [server thread/INFO] [FML]: Holder lookups applied [15:33:38] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@193aa6a9) [15:33:39] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@193aa6a9) [15:33:39] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@193aa6a9) [15:33:39] [server thread/INFO]: Preparing start region for level 0 [15:33:40] [server thread/INFO]: Preparing spawn area: 4% [15:33:41] [server thread/INFO]: Preparing spawn area: 7% [15:33:42] [server thread/INFO]: Preparing spawn area: 10% [15:33:43] [server thread/INFO]: Preparing spawn area: 14% [15:33:44] [server thread/INFO]: Preparing spawn area: 20% [15:33:45] [server thread/INFO]: Preparing spawn area: 27% [15:33:46] [server thread/INFO]: Preparing spawn area: 36% [15:33:47] [server thread/INFO]: Preparing spawn area: 45% [15:33:48] [server thread/INFO]: Preparing spawn area: 53% [15:33:49] [server thread/INFO]: Preparing spawn area: 60% [15:33:50] [server thread/INFO]: Preparing spawn area: 68% [15:33:51] [server thread/INFO]: Preparing spawn area: 77% [15:33:52] [server thread/INFO]: Preparing spawn area: 85% [15:33:53] [server thread/INFO]: Preparing spawn area: 96% [15:33:54] [server thread/INFO]: Changing view distance to 6, from 10 [15:33:54] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [15:33:56] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2 [15:33:56] [Netty Server IO #1/INFO] [FML]: Client protocol version 2 [15:33:56] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],withermod@Build 1,[email protected],[email protected] [15:33:56] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established [15:33:56] [server thread/INFO] [FML]: [server thread] Server side modded connection established [15:33:56] [server thread/INFO]: Player146[local:E:14d9d7ef] logged in with entity id 447 at (90.5, 73.0, 248.5) [15:33:56] [server thread/INFO]: Player146 joined the game [15:33:57] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@28a67f93[id=2b32bf3c-80b5-35b3-abab-2d4e53bbbeb0,name=Player146,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.func_181037_M(Minecraft.java:2915) [Minecraft.class:?] at net.minecraft.client.resources.SkinManager$3.run(SkinManager.java:130) [skinManager$3.class:?] at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) [?:1.8.0_91] at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.8.0_91] at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.8.0_91] at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.8.0_91] at java.lang.Thread.run(Unknown Source) [?:1.8.0_91] [15:33:59] [server thread/INFO]: Player146 has just earned the achievement [Taking Inventory] [15:33:59] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 3385ms behind, skipping 67 tick(s) [15:34:00] [Client thread/INFO]: [CHAT] Player146 has just earned the achievement [Taking Inventory] [15:35:17] [server thread/INFO]: Saving and pausing game... [15:35:17] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [15:35:17] [server thread/INFO]: Saving chunks for level 'New World'/Nether [15:35:17] [server thread/INFO]: Saving chunks for level 'New World'/The End [15:35:18] [server thread/INFO]: Stopping server [15:35:18] [server thread/INFO]: Saving players [15:35:18] [server thread/INFO]: Saving worlds [15:35:18] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [15:35:18] [server thread/INFO]: Saving chunks for level 'New World'/Nether [15:35:18] [server thread/INFO]: Saving chunks for level 'New World'/The End [15:35:18] [server thread/INFO] [FML]: Unloading dimension 0 [15:35:18] [server thread/INFO] [FML]: Unloading dimension -1 [15:35:18] [server thread/INFO] [FML]: Unloading dimension 1 [15:35:19] [server thread/INFO] [FML]: Applying holder lookups [15:35:19] [server thread/INFO] [FML]: Holder lookups applied [15:35:19] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [15:35:19] [Client thread/INFO]: Stopping! [15:35:19] [Client thread/INFO]: SoundSystem shutting down... [15:35:19] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Specified a variant, but still no change. package com.wither.withermod; import com.wither.withermod.blocks.BlockRegistry; import com.wither.withermod.blocks.BlockRender; import com.wither.withermod.blocks.WoodWall; import com.wither.withermod.items.ItemRegistry; import com.wither.withermod.items.RegisterRender; import net.minecraft.client.Minecraft; import net.minecraft.client.resources.model.ModelBakery; import net.minecraft.client.resources.model.ModelResourceLocation; import net.minecraft.item.Item; import net.minecraft.util.ResourceLocation; import net.minecraftforge.client.model.ModelLoader; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPostInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; import net.minecraftforge.fml.common.registry.GameRegistry; public class ClientProxy extends CommonProxy { @Override public void PreInit(FMLPreInitializationEvent e){ super.PreInit(e); //ModelResourceLocation woodWall_oak = new ModelResourceLocation (Main.MODID + "woodWall_oak"); //ModelResourceLocation woodWall_spruce = new ModelResourceLocation (Main.MODID + "woodWall_spruce" , "inventory"); ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(BlockRegistry.woodWall), 0, new ModelResourceLocation(Main.MODID + "woodWall_oak", "east=false,north=false,south=false,west=false")); } @Override public void Init(FMLInitializationEvent e){ super.Init(e); //BlockRender.registerBlock(); //RegisterRender.RegisterModel(); } @Override public void PostInit(FMLPostInitializationEvent e){ super.PostInit(e); } } Log 2016-05-24 15:01:24,262 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2016-05-24 15:01:24,266 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [15:01:24] [main/INFO] [GradleStart]: Extra: [] [15:01:24] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Evan/.gradle/caches/minecraft/assets, --assetIndex, 1.8, --accessToken{REDACTED}, --version, 1.8.9, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [15:01:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [15:01:24] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [15:01:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [15:01:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [15:01:24] [main/INFO] [FML]: Forge Mod Loader version 11.15.1.1890 for Minecraft 1.8.9 loading [15:01:24] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_91, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_91 [15:01:24] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [15:01:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [15:01:24] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [15:01:24] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [15:01:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [15:01:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [15:01:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [15:01:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [15:01:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [15:01:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [15:01:24] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [15:01:27] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [15:01:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [15:01:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [15:01:29] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [15:01:29] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [15:01:29] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [15:01:29] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} 2016-05-24 15:01:31,830 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2016-05-24 15:01:32,052 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2016-05-24 15:01:32,055 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [15:01:33] [Client thread/INFO]: Setting user: Player487 [15:01:42] [Client thread/INFO]: LWJGL Version: 2.9.4 [15:01:42] [Client thread/WARN] [FML]: ============================================================= [15:01:42] [Client thread/WARN] [FML]: MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML! [15:01:42] [Client thread/WARN] [FML]: Offendor: com/sun/jna/Native.main([Ljava/lang/String;)V [15:01:42] [Client thread/WARN] [FML]: Use FMLCommonHandler.exitJava instead [15:01:42] [Client thread/WARN] [FML]: ============================================================= [15:01:43] [Client thread/INFO] [sTDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:246]: ---- Minecraft Crash Report ---- // Everything's going to plan. No, really, that was supposed to happen. Time: 5/24/16 3:01 PM Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.8.9 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_91, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 764047976 bytes (728 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: Loaded coremods (and transformers): GL info: ' Vendor: 'Intel' Version: '4.0.0 - Build 10.18.10.4276' Renderer: 'Intel(R) HD Graphics 4000' [15:01:43] [Client thread/INFO] [FML]: MinecraftForge v11.15.1.1890 Initialized [15:01:43] [Client thread/INFO] [FML]: Replaced 229 ore recipies [15:01:44] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [15:01:44] [Client thread/INFO] [FML]: Searching C:\Users\Evan\Desktop\forge-1.8.9-11.15.1.1890-1.8.9-mdk\run\mods for mods [15:01:46] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [15:01:47] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, withermod] at CLIENT [15:01:47] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, withermod] at SERVER [15:01:48] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Wither's Mod [15:01:48] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [15:01:48] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations [15:01:48] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [15:01:48] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [15:01:48] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [15:01:48] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [15:01:48] [Client thread/INFO] [sTDOUT]: [com.wither.withermod.items.ModItem:<init>:18]: Initializing Itemgarium [15:01:48] [Client thread/INFO] [sTDOUT]: [com.wither.withermod.items.ModItem:<init>:18]: Initializing Itemradium [15:01:48] [Client thread/INFO] [sTDOUT]: [com.wither.withermod.items.ModItem:<init>:18]: Initializing ItemlavaGem [15:01:49] [Client thread/INFO] [FML]: Applying holder lookups [15:01:49] [Client thread/INFO] [FML]: Holder lookups applied [15:01:49] [Client thread/INFO] [FML]: Injecting itemstacks [15:01:49] [Client thread/INFO] [FML]: Itemstack injection complete [15:01:49] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: OUTDATED Target: 11.15.1.1902 [15:01:49] [sound Library Loader/INFO]: Starting up SoundSystem... [15:01:49] [Thread-9/INFO]: Initializing LWJGL OpenAL [15:01:49] [Thread-9/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [15:01:50] [Thread-9/INFO]: OpenAL initialized. [15:01:50] [sound Library Loader/INFO]: Sound engine started [15:02:02] [Client thread/INFO] [FML]: Max texture size: 8192 [15:02:03] [Client thread/INFO]: Created: 16x16 textures-atlas [15:02:04] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=true,north=false,south=true,type=acacia,west=false for blockstate "withermod:woodWall[east=true,north=false,south=true,type=acacia,west=false]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=true,north=false,south=true,type=acacia,west=false at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:515) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more [15:02:04] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=true,north=true,south=true,type=acacia,west=false for blockstate "withermod:woodWall[east=true,north=true,south=true,type=acacia,west=false]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=true,north=true,south=true,type=acacia,west=false at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:515) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more [15:02:04] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=false,north=false,south=true,type=oak,west=true for blockstate "withermod:woodWall[east=false,north=false,south=true,type=oak,west=true]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=false,north=false,south=true,type=oak,west=true at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:515) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more [15:02:04] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:lettucePlant#age=5 for blockstate "withermod:lettucePlant[age=5]" java.lang.Exception: Could not load model definition for variant withermod:lettucePlant#age=5 at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:515) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/lettucePlant.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more Caused by: java.io.FileNotFoundException: withermod:blockstates/lettucePlant.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more [15:02:04] [Client thread/ERROR] [FML]: Exception loading model for variant minecraft:withermodwoodWall_oak#east=false,north=false,south=false,west=false for item "withermod:woodWall" java.lang.Exception: Could not load model definition for variant minecraft:withermodwoodWall_oak#east=false,north=false,south=false,west=false at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.loadItems(ModelLoader.java:259) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:116) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:515) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model minecraft:blockstates/withermodwoodWall_oak.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 19 more Caused by: java.io.FileNotFoundException: minecraft:blockstates/withermodwoodWall_oak.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 19 more [15:02:04] [Client thread/ERROR] [FML]: Model definition for location minecraft:withermodwoodWall_oak#east=false,north=false,south=false,west=false not found [15:02:04] [Client thread/ERROR] [FML]: Suppressed additional 231 model loading errors for domain withermod [15:02:05] [Client thread/INFO] [FML]: Injecting itemstacks [15:02:05] [Client thread/INFO] [FML]: Itemstack injection complete [15:02:05] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [15:02:05] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Wither's Mod [15:02:05] [Client thread/INFO]: SoundSystem shutting down... [15:02:05] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com [15:02:05] [sound Library Loader/INFO]: Starting up SoundSystem... [15:02:06] [Thread-11/INFO]: Initializing LWJGL OpenAL [15:02:06] [Thread-11/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [15:02:06] [Thread-11/INFO]: OpenAL initialized. [15:02:06] [sound Library Loader/INFO]: Sound engine started [15:02:15] [Client thread/INFO] [FML]: Max texture size: 8192 [15:02:16] [Client thread/INFO]: Created: 512x512 textures-atlas [15:02:16] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=true,north=false,south=true,type=acacia,west=false for blockstate "withermod:woodWall[east=true,north=false,south=true,type=acacia,west=false]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=true,north=false,south=true,type=acacia,west=false at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:326) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:532) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more [15:02:16] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=true,north=true,south=true,type=acacia,west=false for blockstate "withermod:woodWall[east=true,north=true,south=true,type=acacia,west=false]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=true,north=true,south=true,type=acacia,west=false at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:326) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:532) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more [15:02:16] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=false,north=false,south=true,type=oak,west=true for blockstate "withermod:woodWall[east=false,north=false,south=true,type=oak,west=true]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=false,north=false,south=true,type=oak,west=true at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:326) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:532) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more [15:02:16] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:lettucePlant#age=5 for blockstate "withermod:lettucePlant[age=5]" java.lang.Exception: Could not load model definition for variant withermod:lettucePlant#age=5 at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:326) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:532) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/lettucePlant.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more Caused by: java.io.FileNotFoundException: withermod:blockstates/lettucePlant.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more [15:02:16] [Client thread/ERROR] [FML]: Exception loading model for variant minecraft:withermodwoodWall_oak#east=false,north=false,south=false,west=false for item "withermod:woodWall" java.lang.Exception: Could not load model definition for variant minecraft:withermodwoodWall_oak#east=false,north=false,south=false,west=false at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.loadItems(ModelLoader.java:259) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:116) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:326) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:532) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model minecraft:blockstates/withermodwoodWall_oak.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 22 more Caused by: java.io.FileNotFoundException: minecraft:blockstates/withermodwoodWall_oak.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 22 more [15:02:16] [Client thread/ERROR] [FML]: Model definition for location minecraft:withermodwoodWall_oak#east=false,north=false,south=false,west=false not found [15:02:16] [Client thread/ERROR] [FML]: Suppressed additional 231 model loading errors for domain withermod [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found. [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: DOMAIN withermod [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------------------------------- [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: domain withermod is missing 9 textures [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: domain withermod has 1 location: [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: mod withermod resources at C:\Users\Evan\Desktop\forge-1.8.9-11.15.1.1890-1.8.9-mdk\bin [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: The missing resources for domain withermod are: [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/tomatoSeeds.png [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/taco.png [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/garium_block.png [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/lava_gem_ore.png [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/tomato.png [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/cheese.png [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/lettuce.png [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/radium_block.png [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/testpane.png [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: No other errors exist for domain withermod [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [15:02:18] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [15:02:20] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [15:02:21] [server thread/INFO]: Starting integrated minecraft server version 1.8.9 [15:02:21] [server thread/INFO]: Generating keypair [15:02:21] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance [15:02:21] [server thread/INFO] [FML]: Found a missing id from the world withermod:wool_wall [15:02:21] [server thread/INFO] [FML]: Found a missing id from the world withermod:wood_wall [15:02:21] [server thread/INFO] [FML]: Applying holder lookups [15:02:21] [server thread/INFO] [FML]: Holder lookups applied [15:02:21] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@187ee662) [15:02:21] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@187ee662) [15:02:21] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@187ee662) [15:02:21] [server thread/INFO]: Preparing start region for level 0 [15:02:22] [server thread/INFO]: Preparing spawn area: 12% [15:02:23] [server thread/INFO]: Preparing spawn area: 92% [15:02:24] [server thread/INFO]: Changing view distance to 6, from 10 [15:02:24] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [15:02:25] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2 [15:02:25] [Netty Server IO #1/INFO] [FML]: Client protocol version 2 [15:02:25] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],withermod@Build 1,[email protected],[email protected] [15:02:25] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established [15:02:25] [server thread/INFO] [FML]: [server thread] Server side modded connection established [15:02:25] [server thread/INFO]: Player487[local:E:6d0c7606] logged in with entity id 355 at (-141.13749998807907, 83.72546722338171, 354.13749998807907) [15:02:25] [server thread/INFO]: Player487 joined the game [15:02:51] [server thread/INFO]: Saving and pausing game... [15:02:51] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [15:02:51] [server thread/INFO]: Saving chunks for level 'New World'/Nether [15:02:51] [server thread/INFO]: Saving chunks for level 'New World'/The End [15:02:52] [server thread/INFO]: Stopping server [15:02:52] [server thread/INFO]: Saving players [15:02:52] [server thread/INFO]: Saving worlds [15:02:52] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [15:02:52] [server thread/INFO]: Saving chunks for level 'New World'/Nether [15:02:52] [server thread/INFO]: Saving chunks for level 'New World'/The End [15:02:52] [server thread/INFO] [FML]: Unloading dimension 0 [15:02:52] [server thread/INFO] [FML]: Unloading dimension -1 [15:02:52] [server thread/INFO] [FML]: Unloading dimension 1 [15:02:53] [server thread/INFO] [FML]: Applying holder lookups [15:02:53] [server thread/INFO] [FML]: Holder lookups applied [15:02:53] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [15:02:53] [Client thread/INFO]: Stopping! [15:02:53] [Client thread/INFO]: SoundSystem shutting down... [15:02:53] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Specified a variant, but still no change. package com.wither.withermod; import com.wither.withermod.blocks.BlockRegistry; import com.wither.withermod.blocks.BlockRender; import com.wither.withermod.blocks.WoodWall; import com.wither.withermod.items.ItemRegistry; import com.wither.withermod.items.RegisterRender; import net.minecraft.client.Minecraft; import net.minecraft.client.resources.model.ModelBakery; import net.minecraft.client.resources.model.ModelResourceLocation; import net.minecraft.item.Item; import net.minecraft.util.ResourceLocation; import net.minecraftforge.client.model.ModelLoader; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPostInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; import net.minecraftforge.fml.common.registry.GameRegistry; public class ClientProxy extends CommonProxy { @Override public void PreInit(FMLPreInitializationEvent e){ super.PreInit(e); //ModelResourceLocation woodWall_oak = new ModelResourceLocation (Main.MODID + "woodWall_oak"); //ModelResourceLocation woodWall_spruce = new ModelResourceLocation (Main.MODID + "woodWall_spruce" , "inventory"); ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(BlockRegistry.woodWall), 0, new ModelResourceLocation(Main.MODID + "woodWall_oak", "east=false,north=false,south=false,west=false")); } @Override public void Init(FMLInitializationEvent e){ super.Init(e); //BlockRender.registerBlock(); //RegisterRender.RegisterModel(); } @Override public void PostInit(FMLPostInitializationEvent e){ super.PostInit(e); } } Log 2016-05-24 15:01:24,262 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2016-05-24 15:01:24,266 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [15:01:24] [main/INFO] [GradleStart]: Extra: [] [15:01:24] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Evan/.gradle/caches/minecraft/assets, --assetIndex, 1.8, --accessToken{REDACTED}, --version, 1.8.9, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [15:01:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [15:01:24] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [15:01:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [15:01:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [15:01:24] [main/INFO] [FML]: Forge Mod Loader version 11.15.1.1890 for Minecraft 1.8.9 loading [15:01:24] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_91, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_91 [15:01:24] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [15:01:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [15:01:24] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [15:01:24] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [15:01:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [15:01:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [15:01:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [15:01:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [15:01:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [15:01:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [15:01:24] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [15:01:27] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [15:01:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [15:01:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [15:01:29] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [15:01:29] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [15:01:29] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [15:01:29] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} 2016-05-24 15:01:31,830 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2016-05-24 15:01:32,052 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2016-05-24 15:01:32,055 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [15:01:33] [Client thread/INFO]: Setting user: Player487 [15:01:42] [Client thread/INFO]: LWJGL Version: 2.9.4 [15:01:42] [Client thread/WARN] [FML]: ============================================================= [15:01:42] [Client thread/WARN] [FML]: MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML! [15:01:42] [Client thread/WARN] [FML]: Offendor: com/sun/jna/Native.main([Ljava/lang/String;)V [15:01:42] [Client thread/WARN] [FML]: Use FMLCommonHandler.exitJava instead [15:01:42] [Client thread/WARN] [FML]: ============================================================= [15:01:43] [Client thread/INFO] [sTDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:246]: ---- Minecraft Crash Report ---- // Everything's going to plan. No, really, that was supposed to happen. Time: 5/24/16 3:01 PM Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.8.9 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_91, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 764047976 bytes (728 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: Loaded coremods (and transformers): GL info: ' Vendor: 'Intel' Version: '4.0.0 - Build 10.18.10.4276' Renderer: 'Intel(R) HD Graphics 4000' [15:01:43] [Client thread/INFO] [FML]: MinecraftForge v11.15.1.1890 Initialized [15:01:43] [Client thread/INFO] [FML]: Replaced 229 ore recipies [15:01:44] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [15:01:44] [Client thread/INFO] [FML]: Searching C:\Users\Evan\Desktop\forge-1.8.9-11.15.1.1890-1.8.9-mdk\run\mods for mods [15:01:46] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [15:01:47] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, withermod] at CLIENT [15:01:47] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, withermod] at SERVER [15:01:48] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Wither's Mod [15:01:48] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [15:01:48] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations [15:01:48] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [15:01:48] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [15:01:48] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [15:01:48] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [15:01:48] [Client thread/INFO] [sTDOUT]: [com.wither.withermod.items.ModItem:<init>:18]: Initializing Itemgarium [15:01:48] [Client thread/INFO] [sTDOUT]: [com.wither.withermod.items.ModItem:<init>:18]: Initializing Itemradium [15:01:48] [Client thread/INFO] [sTDOUT]: [com.wither.withermod.items.ModItem:<init>:18]: Initializing ItemlavaGem [15:01:49] [Client thread/INFO] [FML]: Applying holder lookups [15:01:49] [Client thread/INFO] [FML]: Holder lookups applied [15:01:49] [Client thread/INFO] [FML]: Injecting itemstacks [15:01:49] [Client thread/INFO] [FML]: Itemstack injection complete [15:01:49] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: OUTDATED Target: 11.15.1.1902 [15:01:49] [sound Library Loader/INFO]: Starting up SoundSystem... [15:01:49] [Thread-9/INFO]: Initializing LWJGL OpenAL [15:01:49] [Thread-9/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [15:01:50] [Thread-9/INFO]: OpenAL initialized. [15:01:50] [sound Library Loader/INFO]: Sound engine started [15:02:02] [Client thread/INFO] [FML]: Max texture size: 8192 [15:02:03] [Client thread/INFO]: Created: 16x16 textures-atlas [15:02:04] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=true,north=false,south=true,type=acacia,west=false for blockstate "withermod:woodWall[east=true,north=false,south=true,type=acacia,west=false]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=true,north=false,south=true,type=acacia,west=false at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:515) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more [15:02:04] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=true,north=true,south=true,type=acacia,west=false for blockstate "withermod:woodWall[east=true,north=true,south=true,type=acacia,west=false]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=true,north=true,south=true,type=acacia,west=false at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:515) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more [15:02:04] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=false,north=false,south=true,type=oak,west=true for blockstate "withermod:woodWall[east=false,north=false,south=true,type=oak,west=true]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=false,north=false,south=true,type=oak,west=true at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:515) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more [15:02:04] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:lettucePlant#age=5 for blockstate "withermod:lettucePlant[age=5]" java.lang.Exception: Could not load model definition for variant withermod:lettucePlant#age=5 at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:515) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/lettucePlant.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more Caused by: java.io.FileNotFoundException: withermod:blockstates/lettucePlant.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 20 more [15:02:04] [Client thread/ERROR] [FML]: Exception loading model for variant minecraft:withermodwoodWall_oak#east=false,north=false,south=false,west=false for item "withermod:woodWall" java.lang.Exception: Could not load model definition for variant minecraft:withermodwoodWall_oak#east=false,north=false,south=false,west=false at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.loadItems(ModelLoader.java:259) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:116) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:515) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model minecraft:blockstates/withermodwoodWall_oak.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 19 more Caused by: java.io.FileNotFoundException: minecraft:blockstates/withermodwoodWall_oak.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 19 more [15:02:04] [Client thread/ERROR] [FML]: Model definition for location minecraft:withermodwoodWall_oak#east=false,north=false,south=false,west=false not found [15:02:04] [Client thread/ERROR] [FML]: Suppressed additional 231 model loading errors for domain withermod [15:02:05] [Client thread/INFO] [FML]: Injecting itemstacks [15:02:05] [Client thread/INFO] [FML]: Itemstack injection complete [15:02:05] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [15:02:05] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Wither's Mod [15:02:05] [Client thread/INFO]: SoundSystem shutting down... [15:02:05] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com [15:02:05] [sound Library Loader/INFO]: Starting up SoundSystem... [15:02:06] [Thread-11/INFO]: Initializing LWJGL OpenAL [15:02:06] [Thread-11/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [15:02:06] [Thread-11/INFO]: OpenAL initialized. [15:02:06] [sound Library Loader/INFO]: Sound engine started [15:02:15] [Client thread/INFO] [FML]: Max texture size: 8192 [15:02:16] [Client thread/INFO]: Created: 512x512 textures-atlas [15:02:16] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=true,north=false,south=true,type=acacia,west=false for blockstate "withermod:woodWall[east=true,north=false,south=true,type=acacia,west=false]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=true,north=false,south=true,type=acacia,west=false at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:326) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:532) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more [15:02:16] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=true,north=true,south=true,type=acacia,west=false for blockstate "withermod:woodWall[east=true,north=true,south=true,type=acacia,west=false]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=true,north=true,south=true,type=acacia,west=false at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:326) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:532) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more [15:02:16] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:woodWall#east=false,north=false,south=true,type=oak,west=true for blockstate "withermod:woodWall[east=false,north=false,south=true,type=oak,west=true]" java.lang.Exception: Could not load model definition for variant withermod:woodWall#east=false,north=false,south=true,type=oak,west=true at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:326) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:532) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/woodWall.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more Caused by: java.io.FileNotFoundException: withermod:blockstates/woodWall.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more [15:02:16] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:lettucePlant#age=5 for blockstate "withermod:lettucePlant[age=5]" java.lang.Exception: Could not load model definition for variant withermod:lettucePlant#age=5 at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:170) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:326) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:532) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model withermod:blockstates/lettucePlant.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more Caused by: java.io.FileNotFoundException: withermod:blockstates/lettucePlant.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 23 more [15:02:16] [Client thread/ERROR] [FML]: Exception loading model for variant minecraft:withermodwoodWall_oak#east=false,north=false,south=false,west=false for item "withermod:woodWall" java.lang.Exception: Could not load model definition for variant minecraft:withermodwoodWall_oak#east=false,north=false,south=false,west=false at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.loadItems(ModelLoader.java:259) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:116) ~[ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:326) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:532) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] 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_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model minecraft:blockstates/withermodwoodWall_oak.json at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 22 more Caused by: java.io.FileNotFoundException: minecraft:blockstates/withermodwoodWall_oak.json at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:211) ~[ModelLoader.class:?] ... 22 more [15:02:16] [Client thread/ERROR] [FML]: Model definition for location minecraft:withermodwoodWall_oak#east=false,north=false,south=false,west=false not found [15:02:16] [Client thread/ERROR] [FML]: Suppressed additional 231 model loading errors for domain withermod [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found. [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: DOMAIN withermod [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------------------------------- [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: domain withermod is missing 9 textures [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: domain withermod has 1 location: [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: mod withermod resources at C:\Users\Evan\Desktop\forge-1.8.9-11.15.1.1890-1.8.9-mdk\bin [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: The missing resources for domain withermod are: [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/tomatoSeeds.png [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/taco.png [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/garium_block.png [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/lava_gem_ore.png [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/tomato.png [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/cheese.png [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/lettuce.png [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/radium_block.png [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/testpane.png [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: No other errors exist for domain withermod [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [15:02:17] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [15:02:18] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [15:02:20] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [15:02:21] [server thread/INFO]: Starting integrated minecraft server version 1.8.9 [15:02:21] [server thread/INFO]: Generating keypair [15:02:21] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance [15:02:21] [server thread/INFO] [FML]: Found a missing id from the world withermod:wool_wall [15:02:21] [server thread/INFO] [FML]: Found a missing id from the world withermod:wood_wall [15:02:21] [server thread/INFO] [FML]: Applying holder lookups [15:02:21] [server thread/INFO] [FML]: Holder lookups applied [15:02:21] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@187ee662) [15:02:21] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@187ee662) [15:02:21] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@187ee662) [15:02:21] [server thread/INFO]: Preparing start region for level 0 [15:02:22] [server thread/INFO]: Preparing spawn area: 12% [15:02:23] [server thread/INFO]: Preparing spawn area: 92% [15:02:24] [server thread/INFO]: Changing view distance to 6, from 10 [15:02:24] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [15:02:25] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2 [15:02:25] [Netty Server IO #1/INFO] [FML]: Client protocol version 2 [15:02:25] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],withermod@Build 1,[email protected],[email protected] [15:02:25] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established [15:02:25] [server thread/INFO] [FML]: [server thread] Server side modded connection established [15:02:25] [server thread/INFO]: Player487[local:E:6d0c7606] logged in with entity id 355 at (-141.13749998807907, 83.72546722338171, 354.13749998807907) [15:02:25] [server thread/INFO]: Player487 joined the game [15:02:51] [server thread/INFO]: Saving and pausing game... [15:02:51] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [15:02:51] [server thread/INFO]: Saving chunks for level 'New World'/Nether [15:02:51] [server thread/INFO]: Saving chunks for level 'New World'/The End [15:02:52] [server thread/INFO]: Stopping server [15:02:52] [server thread/INFO]: Saving players [15:02:52] [server thread/INFO]: Saving worlds [15:02:52] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [15:02:52] [server thread/INFO]: Saving chunks for level 'New World'/Nether [15:02:52] [server thread/INFO]: Saving chunks for level 'New World'/The End [15:02:52] [server thread/INFO] [FML]: Unloading dimension 0 [15:02:52] [server thread/INFO] [FML]: Unloading dimension -1 [15:02:52] [server thread/INFO] [FML]: Unloading dimension 1 [15:02:53] [server thread/INFO] [FML]: Applying holder lookups [15:02:53] [server thread/INFO] [FML]: Holder lookups applied [15:02:53] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [15:02:53] [Client thread/INFO]: Stopping! [15:02:53] [Client thread/INFO]: SoundSystem shutting down... [15:02:53] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Switched to ModelLoader.setCustomModelResourceLocation, but still no change. Log http://pastebin.com/GJ2r8dDb ClientProxy http://pastebin.com/JR9gge2g -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Switched to ModelLoader.setCustomModelResourceLocation, but still no change. Log http://pastebin.com/GJ2r8dDb ClientProxy http://pastebin.com/JR9gge2g -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Told it to load from woodWall_oak.json. Still the same result though Log http://pastebin.com/HD8Z3YQU Client Proxy http://pastebin.com/3dhvkZLg -
[1.8][Solved]Loading Variants of the same block
WitherDoggie replied to WitherDoggie's topic in Modder Support
Told it to load from woodWall_oak.json. Still the same result though Log http://pastebin.com/HD8Z3YQU Client Proxy http://pastebin.com/3dhvkZLg