Jump to content

WitherDoggie

Forge Modder
  • Posts

    90
  • Joined

  • Last visited

Everything posted by WitherDoggie

  1. You should update, but if you have to use 1.8.9, try upgrading to the lastest release.
  2. I'm going to guess you are on a server. It is possible the server is limiting your render distance. The server I play on the most has render distance capped at 6 chunks. This is to prevent lag and reduce the amount of chunks loaded at once. Since you said the world loads around you, but never any further, I'm going to say it's the server doing it.
  3. You have 1.8 optifine in a 1.10.2 forge client. This won't work. Remove optifine.
  4. As far as I know of, the Orespawn mod wasn't updated past 1.7.10. So that is why it won't load.
  5. Perfect. Then I'll do a new dimension instead.(don't know how yet, but I'm always open to learning)
  6. Perfect. Then I'll do a new dimension instead.(don't know how yet, but I'm always open to learning)
  7. Before I do what you said, I have a couple questions. Would it be better for me to create a custom dimension instead? Do new dimensions allow for a wide range of customization?
  8. Before I do what you said, I have a couple questions. Would it be better for me to create a custom dimension instead? Do new dimensions allow for a wide range of customization?
  9. You have to initialize the seed and drop. The crop is trying to use things that aren't registered in the game.
  10. You have to initialize the seed and drop. The crop is trying to use things that aren't registered in the game.
  11. I've done as you said and overriden genTerrainBlocks (changed the vanilla integer names to easier to identify ones), but I can't figure out how to change the stone. I looked online for some help and the things I found told me to just copy the entire method generateBiomeTerrain in the BiomeGenBase class and then modify it to fit my needs. I do not want to copy and paste things unless it is completely necessary. How to I change the stone? ModBiome.class http://pastebin.com/4ZyHv9DJ
  12. I've done as you said and overriden genTerrainBlocks (changed the vanilla integer names to easier to identify ones), but I can't figure out how to change the stone. I looked online for some help and the things I found told me to just copy the entire method generateBiomeTerrain in the BiomeGenBase class and then modify it to fit my needs. I do not want to copy and paste things unless it is completely necessary. How to I change the stone? ModBiome.class http://pastebin.com/4ZyHv9DJ
  13. I tracked down the code that fills chunks with stone, and it looks like the stone is generated first then the biome blocks are placed. Not sure what to do with that. Do you happen to know the event that I can use instead? Also, I managed to stop mobs from spawning here.( When I disabled creature spawning, I forgot to disable monster spawning.) I want the biome to only spawn wither skeletons. I made the biome spawn normal skeletons, how can I get wither skeletons to spawn? Please Note: I am not trying to replace the stone in all biomes. I only want my custom stone to generate in my custom biome. All other biomes won't be changed.
  14. I tracked down the code that fills chunks with stone, and it looks like the stone is generated first then the biome blocks are placed. Not sure what to do with that. Do you happen to know the event that I can use instead? Also, I managed to stop mobs from spawning here.( When I disabled creature spawning, I forgot to disable monster spawning.) I want the biome to only spawn wither skeletons. I made the biome spawn normal skeletons, how can I get wither skeletons to spawn? Please Note: I am not trying to replace the stone in all biomes. I only want my custom stone to generate in my custom biome. All other biomes won't be changed.
  15. 1. Okay thanks, I'll look into it. As far as the vanilla ores go, I was hoping there was a way to disable them and use my custom ores instead. 2. I'll see if I can find a way to work around that. 3. No plants is fine. The biome is supposed to be dead looking. Though I will add some custom plants that can only grow on my custom dirt.
  16. 1. Okay thanks, I'll look into it. As far as the vanilla ores go, I was hoping there was a way to disable them and use my custom ores instead. 2. I'll see if I can find a way to work around that. 3. No plants is fine. The biome is supposed to be dead looking. Though I will add some custom plants that can only grow on my custom dirt.
  17. I'm trying to create a custom biome. I wrote the biome class and registered my new biome. My custom biome generates in-game with most of the custom blocks that I want it to. My question is, how can I remove the normal minecraft stone that generates there and replace it with my custom stone block? I also have a custom ore that I want to generate in this biome only. How can I do this? ModBiomeRegistry http://pastebin.com/ubMKLHE9 ModBiome http://pastebin.com/NthUZFAr I've also noticed that water lilies are spawning every where in the water even though I've never told the biome to. Why is this? Another problem I've noticed is that mobs are spawning in the biome even though I don't have any mobs set to spawn there. One last question. I made custom dirt, grass, and stone blocks that I want to have the same properties as the vanilla dirt, grass, and stone blocks. Can I just create a class for each that extends the vanilla class?
  18. I'm trying to create a custom biome. I wrote the biome class and registered my new biome. My custom biome generates in-game with most of the custom blocks that I want it to. My question is, how can I remove the normal minecraft stone that generates there and replace it with my custom stone block? I also have a custom ore that I want to generate in this biome only. How can I do this? ModBiomeRegistry http://pastebin.com/ubMKLHE9 ModBiome http://pastebin.com/NthUZFAr I've also noticed that water lilies are spawning every where in the water even though I've never told the biome to. Why is this? Another problem I've noticed is that mobs are spawning in the biome even though I don't have any mobs set to spawn there. One last question. I made custom dirt, grass, and stone blocks that I want to have the same properties as the vanilla dirt, grass, and stone blocks. Can I just create a class for each that extends the vanilla class?
  19. Set the inventory models of the variants in the blockstate file and everything works perfectly now. Thank you for all the help you've given me. I really appreciate it.
  20. Set the inventory models of the variants in the blockstate file and everything works perfectly now. Thank you for all the help you've given me. I really appreciate it.
  21. ClientProxy http://pastebin.com/6BrkucFe Oak Wall model jsons http://pastebin.com/YwdV1RCP http://pastebin.com/y177VTZu http://pastebin.com/yDSyfiY2 http://pastebin.com/0BjPGBcu http://pastebin.com/EY78GRJw http://pastebin.com/ZHA30tjn http://pastebin.com/cH8pwMhy http://pastebin.com/y4jM6QH9 http://pastebin.com/ZHYR2H8s http://pastebin.com/Rt0nDfhQ http://pastebin.com/svCA20b1 http://pastebin.com/zUWs1a9U Blockstate for oak_woodWall http://pastebin.com/UuP3E5aT Item Model for Oak woodWall http://pastebin.com/geVB3VHV All of the other variants of the woodWall have the same .json formats as the oak, only with different model names.
  22. ClientProxy http://pastebin.com/6BrkucFe Oak Wall model jsons http://pastebin.com/YwdV1RCP http://pastebin.com/y177VTZu http://pastebin.com/yDSyfiY2 http://pastebin.com/0BjPGBcu http://pastebin.com/EY78GRJw http://pastebin.com/ZHA30tjn http://pastebin.com/cH8pwMhy http://pastebin.com/y4jM6QH9 http://pastebin.com/ZHYR2H8s http://pastebin.com/Rt0nDfhQ http://pastebin.com/svCA20b1 http://pastebin.com/zUWs1a9U Blockstate for oak_woodWall http://pastebin.com/UuP3E5aT Item Model for Oak woodWall http://pastebin.com/geVB3VHV All of the other variants of the woodWall have the same .json formats as the oak, only with different model names.
  23. Fixed the errors about the woodWall that were in the last log, but the inventory models still don't show up in-game. I've looked through the latest log and could not find any errors relating to woodWall. The only errors that I see are one pertaining to the lettucePlant(haven't made the .jsons for that yet) Log 2016-05-24 19:50:27,543 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2016-05-24 19:50:27,548 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [19:50:27] [main/INFO] [GradleStart]: Extra: [] [19:50:27] [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] [19:50:27] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [19:50:27] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [19:50:27] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [19:50:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [19:50:27] [main/INFO] [FML]: Forge Mod Loader version 11.15.1.1890 for Minecraft 1.8.9 loading [19:50:27] [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 [19:50:27] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [19:50:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [19:50:27] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [19:50:27] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [19:50:27] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [19:50:27] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [19:50:27] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [19:50:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [19:50:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [19:50:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [19:50:28] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [19:50:31] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [19:50:31] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [19:50:31] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [19:50:33] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [19:50:33] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [19:50:33] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [19:50:33] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} 2016-05-24 19:50:35,529 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2016-05-24 19:50:35,646 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2016-05-24 19:50:35,697 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [19:50:37] [Client thread/INFO]: Setting user: Player331 [19:50:45] [Client thread/INFO]: LWJGL Version: 2.9.4 [19:50:46] [Client thread/WARN] [FML]: ============================================================= [19:50:46] [Client thread/WARN] [FML]: MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML! [19:50:46] [Client thread/WARN] [FML]: Offendor: com/sun/jna/Native.main([Ljava/lang/String;)V [19:50:46] [Client thread/WARN] [FML]: Use FMLCommonHandler.exitJava instead [19:50:46] [Client thread/WARN] [FML]: ============================================================= [19:50:47] [Client thread/INFO] [sTDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:246]: ---- Minecraft Crash Report ---- // Ouch. That hurt Time: 5/24/16 7:50 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: 754541040 bytes (719 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' [19:50:47] [Client thread/INFO] [FML]: MinecraftForge v11.15.1.1890 Initialized [19:50:47] [Client thread/INFO] [FML]: Replaced 229 ore recipies [19:50:48] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [19:50: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 [19:50:52] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [19:50:53] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, withermod] at CLIENT [19:50:53] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, withermod] at SERVER [19:50:54] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Wither's Mod [19:50:54] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [19:50:54] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations [19:50:54] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [19:50:54] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [19:50:55] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [19:50:55] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [19:50:55] [Client thread/INFO] [sTDOUT]: [com.wither.withermod.items.ModItem:<init>:18]: Initializing Itemgarium [19:50:55] [Client thread/INFO] [sTDOUT]: [com.wither.withermod.items.ModItem:<init>:18]: Initializing Itemradium [19:50:55] [Client thread/INFO] [sTDOUT]: [com.wither.withermod.items.ModItem:<init>:18]: Initializing ItemlavaGem [19:50:55] [Client thread/INFO] [FML]: Applying holder lookups [19:50:55] [Client thread/INFO] [FML]: Holder lookups applied [19:50:55] [Client thread/INFO] [FML]: Injecting itemstacks [19:50:55] [Client thread/INFO] [FML]: Itemstack injection complete [19:50:55] [sound Library Loader/INFO]: Starting up SoundSystem... [19:50:56] [Thread-9/INFO]: Initializing LWJGL OpenAL [19:50:56] [Thread-9/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [19:50:56] [Thread-9/INFO]: OpenAL initialized. [19:50:56] [sound Library Loader/INFO]: Sound engine started [19:50:56] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: OUTDATED Target: 11.15.1.1902 [19:51:08] [Client thread/INFO] [FML]: Max texture size: 8192 [19:51:08] [Client thread/INFO]: Created: 16x16 textures-atlas [19:51:09] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:lettuceSeedsd#inventory for item "withermod:lettuceSeedsd" java.lang.Exception: Could not load model definition for variant withermod:lettuceSeedsd#inventory 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 withermod:blockstates/lettuceSeedsd.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: withermod:blockstates/lettuceSeedsd.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 [19:51:09] [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 [19:51:09] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:lettucePlant#age=4 for blockstate "withermod:lettucePlant[age=4]" java.lang.Exception: Could not load model definition for variant withermod:lettucePlant#age=4 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 [19:51:09] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:lettucePlant#age=7 for blockstate "withermod:lettucePlant[age=7]" java.lang.Exception: Could not load model definition for variant withermod:lettucePlant#age=7 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 [19:51:09] [Client thread/ERROR] [FML]: Suppressed additional 41 model loading errors for domain withermod [19:51:10] [Client thread/INFO] [FML]: Injecting itemstacks [19:51:10] [Client thread/INFO] [FML]: Itemstack injection complete [19:51:10] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [19:51:10] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Wither's Mod [19:51:10] [Client thread/INFO]: SoundSystem shutting down... [19:51:10] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com [19:51:10] [sound Library Loader/INFO]: Starting up SoundSystem... [19:51:10] [Thread-11/INFO]: Initializing LWJGL OpenAL [19:51:10] [Thread-11/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [19:51:10] [Thread-11/INFO]: OpenAL initialized. [19:51:11] [sound Library Loader/INFO]: Sound engine started [19:51:20] [Client thread/INFO] [FML]: Max texture size: 8192 [19:51:21] [Client thread/INFO]: Created: 512x512 textures-atlas [19:51:21] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:lettuceSeedsd#inventory for item "withermod:lettuceSeedsd" java.lang.Exception: Could not load model definition for variant withermod:lettuceSeedsd#inventory 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 withermod:blockstates/lettuceSeedsd.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: withermod:blockstates/lettuceSeedsd.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 [19:51:21] [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 [19:51:21] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:lettucePlant#age=4 for blockstate "withermod:lettucePlant[age=4]" java.lang.Exception: Could not load model definition for variant withermod:lettucePlant#age=4 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 [19:51:21] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:lettucePlant#age=7 for blockstate "withermod:lettucePlant[age=7]" java.lang.Exception: Could not load model definition for variant withermod:lettucePlant#age=7 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 [19:51:21] [Client thread/ERROR] [FML]: Suppressed additional 41 model loading errors for domain withermod [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found. [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: DOMAIN withermod [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------------------------------- [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: domain withermod is missing 9 textures [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: domain withermod has 1 location: [19:51:22] [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 [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: The missing resources for domain withermod are: [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/tomatoSeeds.png [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/taco.png [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/garium_block.png [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/lava_gem_ore.png [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/tomato.png [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/cheese.png [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/lettuce.png [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/radium_block.png [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/testpane.png [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: No other errors exist for domain withermod [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [19:51:23] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [19:53:16] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [19:53:17] [server thread/INFO]: Starting integrated minecraft server version 1.8.9 [19:53:17] [server thread/INFO]: Generating keypair [19:53:17] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance [19:53:17] [server thread/INFO] [FML]: Applying holder lookups [19:53:17] [server thread/INFO] [FML]: Holder lookups applied [19:53:17] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@27c480df) [19:53:17] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@27c480df) [19:53:17] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@27c480df) [19:53:17] [server thread/INFO]: Preparing start region for level 0 [19:53:18] [server thread/INFO]: Preparing spawn area: 14% [19:53:19] [server thread/INFO]: Preparing spawn area: 96% [19:53:20] [server thread/INFO]: Changing view distance to 6, from 10 [19:53:20] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [19:53:22] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2 [19:53:22] [Netty Server IO #1/INFO] [FML]: Client protocol version 2 [19:53:22] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : FML@8.0.99.99,withermod@Build 1,Forge@11.15.1.1890,mcp@9.19 [19:53:22] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established [19:53:22] [server thread/INFO] [FML]: [server thread] Server side modded connection established [19:53:22] [server thread/INFO]: Player331[local:E:17731a52] logged in with entity id 346 at (29.699999988079067, 71.9895228935952, 381.18340554185295) [19:53:22] [server thread/INFO]: Player331 joined the game [19:53:24] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@30215751[id=b52d0c01-e908-3f05-9150-dcf0319ded3d,name=Player331,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] [19:53:24] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 2040ms behind, skipping 40 tick(s) [19:53:45] [server thread/INFO]: Saving and pausing game... [19:53:45] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [19:53:45] [server thread/INFO]: Saving chunks for level 'New World'/Nether [19:53:45] [server thread/INFO]: Saving chunks for level 'New World'/The End [19:53:45] [server thread/INFO]: Stopping server [19:53:45] [server thread/INFO]: Saving players [19:53:45] [server thread/INFO]: Saving worlds [19:53:45] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [19:53:46] [server thread/INFO]: Saving chunks for level 'New World'/Nether [19:53:46] [server thread/INFO]: Saving chunks for level 'New World'/The End [19:53:46] [server thread/INFO] [FML]: Unloading dimension 0 [19:53:46] [server thread/INFO] [FML]: Unloading dimension -1 [19:53:46] [server thread/INFO] [FML]: Unloading dimension 1 [19:53:46] [server thread/INFO] [FML]: Applying holder lookups [19:53:46] [server thread/INFO] [FML]: Holder lookups applied [19:53:48] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [19:55:07] [Client thread/INFO]: Stopping! [19:55:07] [Client thread/INFO]: SoundSystem shutting down... [19:55:07] [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
  24. Fixed the errors about the woodWall that were in the last log, but the inventory models still don't show up in-game. I've looked through the latest log and could not find any errors relating to woodWall. The only errors that I see are one pertaining to the lettucePlant(haven't made the .jsons for that yet) Log 2016-05-24 19:50:27,543 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2016-05-24 19:50:27,548 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [19:50:27] [main/INFO] [GradleStart]: Extra: [] [19:50:27] [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] [19:50:27] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [19:50:27] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [19:50:27] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [19:50:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [19:50:27] [main/INFO] [FML]: Forge Mod Loader version 11.15.1.1890 for Minecraft 1.8.9 loading [19:50:27] [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 [19:50:27] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [19:50:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [19:50:27] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [19:50:27] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [19:50:27] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [19:50:27] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [19:50:27] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [19:50:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [19:50:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [19:50:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [19:50:28] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [19:50:31] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [19:50:31] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [19:50:31] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [19:50:33] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [19:50:33] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [19:50:33] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [19:50:33] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} 2016-05-24 19:50:35,529 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2016-05-24 19:50:35,646 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2016-05-24 19:50:35,697 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [19:50:37] [Client thread/INFO]: Setting user: Player331 [19:50:45] [Client thread/INFO]: LWJGL Version: 2.9.4 [19:50:46] [Client thread/WARN] [FML]: ============================================================= [19:50:46] [Client thread/WARN] [FML]: MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML! [19:50:46] [Client thread/WARN] [FML]: Offendor: com/sun/jna/Native.main([Ljava/lang/String;)V [19:50:46] [Client thread/WARN] [FML]: Use FMLCommonHandler.exitJava instead [19:50:46] [Client thread/WARN] [FML]: ============================================================= [19:50:47] [Client thread/INFO] [sTDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:246]: ---- Minecraft Crash Report ---- // Ouch. That hurt Time: 5/24/16 7:50 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: 754541040 bytes (719 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' [19:50:47] [Client thread/INFO] [FML]: MinecraftForge v11.15.1.1890 Initialized [19:50:47] [Client thread/INFO] [FML]: Replaced 229 ore recipies [19:50:48] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [19:50: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 [19:50:52] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [19:50:53] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, withermod] at CLIENT [19:50:53] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, withermod] at SERVER [19:50:54] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Wither's Mod [19:50:54] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [19:50:54] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations [19:50:54] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [19:50:54] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [19:50:55] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [19:50:55] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [19:50:55] [Client thread/INFO] [sTDOUT]: [com.wither.withermod.items.ModItem:<init>:18]: Initializing Itemgarium [19:50:55] [Client thread/INFO] [sTDOUT]: [com.wither.withermod.items.ModItem:<init>:18]: Initializing Itemradium [19:50:55] [Client thread/INFO] [sTDOUT]: [com.wither.withermod.items.ModItem:<init>:18]: Initializing ItemlavaGem [19:50:55] [Client thread/INFO] [FML]: Applying holder lookups [19:50:55] [Client thread/INFO] [FML]: Holder lookups applied [19:50:55] [Client thread/INFO] [FML]: Injecting itemstacks [19:50:55] [Client thread/INFO] [FML]: Itemstack injection complete [19:50:55] [sound Library Loader/INFO]: Starting up SoundSystem... [19:50:56] [Thread-9/INFO]: Initializing LWJGL OpenAL [19:50:56] [Thread-9/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [19:50:56] [Thread-9/INFO]: OpenAL initialized. [19:50:56] [sound Library Loader/INFO]: Sound engine started [19:50:56] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: OUTDATED Target: 11.15.1.1902 [19:51:08] [Client thread/INFO] [FML]: Max texture size: 8192 [19:51:08] [Client thread/INFO]: Created: 16x16 textures-atlas [19:51:09] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:lettuceSeedsd#inventory for item "withermod:lettuceSeedsd" java.lang.Exception: Could not load model definition for variant withermod:lettuceSeedsd#inventory 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 withermod:blockstates/lettuceSeedsd.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: withermod:blockstates/lettuceSeedsd.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 [19:51:09] [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 [19:51:09] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:lettucePlant#age=4 for blockstate "withermod:lettucePlant[age=4]" java.lang.Exception: Could not load model definition for variant withermod:lettucePlant#age=4 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 [19:51:09] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:lettucePlant#age=7 for blockstate "withermod:lettucePlant[age=7]" java.lang.Exception: Could not load model definition for variant withermod:lettucePlant#age=7 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 [19:51:09] [Client thread/ERROR] [FML]: Suppressed additional 41 model loading errors for domain withermod [19:51:10] [Client thread/INFO] [FML]: Injecting itemstacks [19:51:10] [Client thread/INFO] [FML]: Itemstack injection complete [19:51:10] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [19:51:10] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Wither's Mod [19:51:10] [Client thread/INFO]: SoundSystem shutting down... [19:51:10] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com [19:51:10] [sound Library Loader/INFO]: Starting up SoundSystem... [19:51:10] [Thread-11/INFO]: Initializing LWJGL OpenAL [19:51:10] [Thread-11/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [19:51:10] [Thread-11/INFO]: OpenAL initialized. [19:51:11] [sound Library Loader/INFO]: Sound engine started [19:51:20] [Client thread/INFO] [FML]: Max texture size: 8192 [19:51:21] [Client thread/INFO]: Created: 512x512 textures-atlas [19:51:21] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:lettuceSeedsd#inventory for item "withermod:lettuceSeedsd" java.lang.Exception: Could not load model definition for variant withermod:lettuceSeedsd#inventory 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 withermod:blockstates/lettuceSeedsd.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: withermod:blockstates/lettuceSeedsd.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 [19:51:21] [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 [19:51:21] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:lettucePlant#age=4 for blockstate "withermod:lettucePlant[age=4]" java.lang.Exception: Could not load model definition for variant withermod:lettucePlant#age=4 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 [19:51:21] [Client thread/ERROR] [FML]: Exception loading model for variant withermod:lettucePlant#age=7 for blockstate "withermod:lettucePlant[age=7]" java.lang.Exception: Could not load model definition for variant withermod:lettucePlant#age=7 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 [19:51:21] [Client thread/ERROR] [FML]: Suppressed additional 41 model loading errors for domain withermod [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found. [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: DOMAIN withermod [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------------------------------- [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: domain withermod is missing 9 textures [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: domain withermod has 1 location: [19:51:22] [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 [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: The missing resources for domain withermod are: [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/tomatoSeeds.png [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/taco.png [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/garium_block.png [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/lava_gem_ore.png [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/tomato.png [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/cheese.png [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/lettuce.png [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/radium_block.png [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/testpane.png [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: No other errors exist for domain withermod [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [19:51:22] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [19:51:23] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [19:53:16] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [19:53:17] [server thread/INFO]: Starting integrated minecraft server version 1.8.9 [19:53:17] [server thread/INFO]: Generating keypair [19:53:17] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance [19:53:17] [server thread/INFO] [FML]: Applying holder lookups [19:53:17] [server thread/INFO] [FML]: Holder lookups applied [19:53:17] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@27c480df) [19:53:17] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@27c480df) [19:53:17] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@27c480df) [19:53:17] [server thread/INFO]: Preparing start region for level 0 [19:53:18] [server thread/INFO]: Preparing spawn area: 14% [19:53:19] [server thread/INFO]: Preparing spawn area: 96% [19:53:20] [server thread/INFO]: Changing view distance to 6, from 10 [19:53:20] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [19:53:22] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2 [19:53:22] [Netty Server IO #1/INFO] [FML]: Client protocol version 2 [19:53:22] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : FML@8.0.99.99,withermod@Build 1,Forge@11.15.1.1890,mcp@9.19 [19:53:22] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established [19:53:22] [server thread/INFO] [FML]: [server thread] Server side modded connection established [19:53:22] [server thread/INFO]: Player331[local:E:17731a52] logged in with entity id 346 at (29.699999988079067, 71.9895228935952, 381.18340554185295) [19:53:22] [server thread/INFO]: Player331 joined the game [19:53:24] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@30215751[id=b52d0c01-e908-3f05-9150-dcf0319ded3d,name=Player331,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] [19:53:24] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 2040ms behind, skipping 40 tick(s) [19:53:45] [server thread/INFO]: Saving and pausing game... [19:53:45] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [19:53:45] [server thread/INFO]: Saving chunks for level 'New World'/Nether [19:53:45] [server thread/INFO]: Saving chunks for level 'New World'/The End [19:53:45] [server thread/INFO]: Stopping server [19:53:45] [server thread/INFO]: Saving players [19:53:45] [server thread/INFO]: Saving worlds [19:53:45] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [19:53:46] [server thread/INFO]: Saving chunks for level 'New World'/Nether [19:53:46] [server thread/INFO]: Saving chunks for level 'New World'/The End [19:53:46] [server thread/INFO] [FML]: Unloading dimension 0 [19:53:46] [server thread/INFO] [FML]: Unloading dimension -1 [19:53:46] [server thread/INFO] [FML]: Unloading dimension 1 [19:53:46] [server thread/INFO] [FML]: Applying holder lookups [19:53:46] [server thread/INFO] [FML]: Holder lookups applied [19:53:48] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [19:55:07] [Client thread/INFO]: Stopping! [19:55:07] [Client thread/INFO]: SoundSystem shutting down... [19:55:07] [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
  25. 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
×
×
  • Create New...

Important Information

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