Jump to content

Missing Block Texture When Block is Placed


SeanOMik

Recommended Posts

I'm trying to make a strawberry plant you find in the plains but when I place it to test the textures its a missing texture block. I have spent a few hours trying to find out how to fix this, also if you know how to set a blocks render type like to "crop" render type please tell me how, I think I have it because when I hold the block In my hand it looks like a crop but when I place it, it looks like a stone block just no texture (the purple and black thing

)

Blocks Class:

package com.seanomik.moarfoods.init;

import com.seanomik.moarfoods.Strings;

import block.BlockStrawberryPlant;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.item.Item;
import net.minecraftforge.fml.common.registry.GameRegistry;

public class Blocks {

public static Block strawberry_plant;

public static void init(){

}
public static void register(){
	GameRegistry.registerBlock(strawberry_plant = new BlockStrawberryPlant(Material.plants), strawberry_plant.getUnlocalizedName().substring(5));
}
public static void registerRenders(){
	registerRender(strawberry_plant);
}
public static void registerRender(Block block){
	Item item = Item.getItemFromBlock(block);
	Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(item, 0, new ModelResourceLocation(Strings.MODID + ":" + item.getUnlocalizedName().substring(5), "inventory"));
}
}

 

StrawberryPlant Class:

package block;

import java.util.Random;

import com.seanomik.moarfoods.MainRegistry;
import com.seanomik.moarfoods.init.Items; // Moar Foods Items Class

import net.minecraft.block.Block;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
import net.minecraft.item.Item;


public class BlockStrawberryPlant extends Block {

public BlockStrawberryPlant(Material materialIn) {
	super(materialIn);
	this.setUnlocalizedName("strawberry_plant");
	this.setCreativeTab(MainRegistry.moarfoodsTab); //Leave uncommented for testing
	this.setHardness(0.05f);
	//this.setLightOpacity(16); Sets if light can go through the block
	this.setStepSound(SoundType.PLANT);
	this.getRenderType();
}
public int getRenderType() {
	  return 6;
}
//What item will this block drop?
    public Item getItemDropped(IBlockState state, Random rand, int fortune) {
        return Items.strawberry;
    }

/*   What color will this block show up as on the map?
    public MapColor getMapColor(IBlockState state) {
        return MapColor.sandColor;
    } */
}

 

Blockstates strawberry_plant.json:

{
    "parent": "block/crop",
    "textures": {
        "crop": "moarFoods:blocks/strawberry_plant"
    }
}

 

models.block strawberry_plant.json:

{
    "parent": "block/crop",
    "textures": {
        "crop": "moarfoods:blocks/strawberry_plant"
    }
}

 

models.item strawberry_plant.json:

{
    "parent": "moarfoods:block/strawberry_plant"
}

 

 

Yes of course I have my textures in the right place because in my hand It shows the textures but when I place it it shows the purple and black squares.

Developer of "A Realistic Foods Mod"

Link to comment
Share on other sites

Not sure if it matters, but your capitalization is inconsistent in your jsons. Mod names should be all lower case all the time to avoid problems where it matters.

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

Link to comment
Share on other sites

Post the FML log, it should say what the issue is.

 

Im running it in a devolpers environment but here is my log

 

2016-06-21 09:48:54,387 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2016-06-21 09:48:54,389 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[09:48:54] [main/INFO] [GradleStart]: Extra: []
[09:48:54] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/SEAN_GAMING/.gradle/caches/minecraft/assets, --assetIndex, 1.9, --accessToken{REDACTED}, --version, 1.9, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[09:48:54] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[09:48:54] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[09:48:54] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[09:48:54] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[09:48:54] [main/INFO] [FML]: Forge Mod Loader version 12.16.1.1887 for Minecraft 1.9 loading
[09:48:54] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_91, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre1.8.0_91
[09:48:54] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[09:48:54] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[09:48:54] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[09:48:54] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[09:48:54] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[09:48:54] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[09:48:54] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[09:48:54] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[09:48:54] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[09:48:54] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[09:48:54] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[09:48:57] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[09:48:57] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[09:48:57] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[09:48:59] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[09:48:59] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[09:48:59] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[09:48:59] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
2016-06-21 09:49:01,222 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2016-06-21 09:49:01,260 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2016-06-21 09:49:01,267 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[09:49:01] [Client thread/INFO]: Setting user: Player841
[09:49:08] [Client thread/INFO]: LWJGL Version: 2.9.4
[09:49:09] [Client thread/INFO] [sTDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:200]: ---- Minecraft Crash Report ----
// I just don't know what went wrong 

Time: 6/21/16 9:49 AM
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.9
Operating System: Windows 7 (amd64) version 6.1
Java Version: 1.8.0_91, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 905031240 bytes (863 MB) / 1056309248 bytes (1007 MB) up to 1056309248 bytes (1007 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: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 353.62' Renderer: 'GeForce GT 610/PCIe/SSE2'
[09:49:09] [Client thread/INFO] [FML]: MinecraftForge v12.16.1.1887 Initialized
[09:49:09] [Client thread/INFO] [FML]: Replaced 232 ore recipes
[09:49:10] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[09:49:10] [Client thread/INFO] [FML]: Searching C:\Users\SEAN_GAMING\Desktop\moarfoods creation\run\mods for mods
[09:49:12] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
[09:49:13] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, moarFoods] at CLIENT
[09:49:13] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, moarFoods] at SERVER
[09:49:13] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Moar Foods
[09:49:14] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
[09:49:14] [Client thread/INFO] [FML]: Found 418 ObjectHolder annotations
[09:49:14] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
[09:49:14] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
[09:49:14] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[09:49:14] [Client thread/INFO] [FML]: Applying holder lookups
[09:49:14] [Client thread/INFO] [FML]: Holder lookups applied
[09:49:14] [Client thread/INFO] [FML]: Injecting itemstacks
[09:49:14] [Client thread/INFO] [FML]: Itemstack injection complete
[09:49:14] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[09:49:14] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: UP_TO_DATE Target: null
[09:49:18] [sound Library Loader/INFO]: Starting up SoundSystem...
[09:49:18] [Thread-8/INFO]: Initializing LWJGL OpenAL
[09:49:18] [Thread-8/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[09:49:20] [Thread-8/INFO]: OpenAL initialized.
[09:49:20] [sound Library Loader/INFO]: Sound engine started
[09:49:25] [Client thread/INFO] [FML]: Max texture size: 16384
[09:49:25] [Client thread/INFO]: Created: 16x16 textures-atlas
[09:49:28] [Client thread/ERROR] [FML]: Exception loading model for variant moarfoods:strawberry_plant#normal for blockstate "moarfoods:strawberry_plant"
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model moarfoods:strawberry_plant#normal with loader VariantLoader.INSTANCE, skipping
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?]
at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:222) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:144) ~[ModelBakery.class:?]
at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:210) ~[ModelLoader.class:?]
at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:127) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:535) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:381) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:118) [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: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:75) ~[ModelBlockDefinition.class:?]
at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1159) ~[ModelLoader$VariantLoader.class:?]
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?]
... 21 more
[09:49:28] [Client thread/ERROR] [FML]: Exception loading blockstate for the variant moarfoods:strawberry_plant#normal: 
java.lang.Exception: Could not load model definition for variant moarfoods:strawberry_plant
at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:255) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:120) ~[ModelBakery.class:?]
at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:210) ~[ModelLoader.class:?]
at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:127) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:535) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:381) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:118) [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 'moarfoods:strawberry_plant' from: 'moarfoods:blockstates/strawberry_plant.json' in resourcepack: 'FMLFileResourcePack:Moar Foods'
at net.minecraft.client.renderer.block.model.ModelBakery.loadModelBlockDefinition(ModelBakery.java:222) ~[ModelBakery.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadMultipartMBD(ModelBakery.java:199) ~[ModelBakery.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:184) ~[ModelBakery.class:?]
at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:251) ~[ModelLoader.class:?]
... 20 more
Caused by: com.google.gson.JsonParseException: Neither 'variants' nor 'multipart' found
at net.minecraft.client.renderer.block.model.ModelBlockDefinition$Deserializer.deserialize(ModelBlockDefinition.java:147) ~[ModelBlockDefinition$Deserializer.class:?]
at net.minecraft.client.renderer.block.model.ModelBlockDefinition$Deserializer.deserialize(ModelBlockDefinition.java:132) ~[ModelBlockDefinition$Deserializer.class:?]
at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:58) ~[TreeTypeAdapter.class:?]
at com.google.gson.Gson.fromJson(Gson.java:803) ~[Gson.class:?]
at com.google.gson.Gson.fromJson(Gson.java:741) ~[Gson.class:?]
at net.minecraftforge.client.model.BlockStateLoader.load(BlockStateLoader.java:86) ~[blockStateLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBlockDefinition.parseFromReader(ModelBlockDefinition.java:34) ~[ModelBlockDefinition.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadModelBlockDefinition(ModelBakery.java:218) ~[ModelBakery.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadMultipartMBD(ModelBakery.java:199) ~[ModelBakery.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:184) ~[ModelBakery.class:?]
at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:251) ~[ModelLoader.class:?]
... 20 more
[09:49:29] [Client thread/INFO] [FML]: Injecting itemstacks
[09:49:29] [Client thread/INFO] [FML]: Itemstack injection complete
[09:49:29] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
[09:49:29] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Moar Foods
[09:49:34] [Client thread/INFO]: SoundSystem shutting down...
[09:49:34] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
[09:49:34] [sound Library Loader/INFO]: Starting up SoundSystem...
[09:49:34] [Thread-10/INFO]: Initializing LWJGL OpenAL
[09:49:34] [Thread-10/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[09:49:43] [Thread-10/INFO]: OpenAL initialized.
[09:49:43] [sound Library Loader/INFO]: Sound engine started
[09:49:43] [Client thread/INFO] [FML]: Max texture size: 16384
[09:49:43] [Client thread/WARN]: Texture moarfoods:textures/items/strawberry.png with size 359x359 limits mip level from 4 to 0
[09:49:44] [Client thread/WARN]: textures: dropping miplevel from 4 to 0, because of minimum power of two: 1
[09:49:44] [Client thread/INFO]: Created: 1024x1024 textures-atlas
[09:49:48] [Client thread/ERROR] [FML]: Exception loading model for variant moarfoods:strawberry_plant#normal for blockstate "moarfoods:strawberry_plant"
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model moarfoods:strawberry_plant#normal with loader VariantLoader.INSTANCE, skipping
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?]
at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:222) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:144) ~[ModelBakery.class:?]
at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:210) ~[ModelLoader.class:?]
at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:127) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?]
at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:792) [Minecraft.class:?]
at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:554) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:381) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:118) [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: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:75) ~[ModelBlockDefinition.class:?]
at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1159) ~[ModelLoader$VariantLoader.class:?]
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?]
... 24 more
[09:49:48] [Client thread/ERROR] [FML]: Exception loading blockstate for the variant moarfoods:strawberry_plant#normal: 
java.lang.Exception: Could not load model definition for variant moarfoods:strawberry_plant
at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:255) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:120) ~[ModelBakery.class:?]
at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:210) ~[ModelLoader.class:?]
at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:127) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?]
at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:792) [Minecraft.class:?]
at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:554) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:381) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:118) [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 'moarfoods:strawberry_plant' from: 'moarfoods:blockstates/strawberry_plant.json' in resourcepack: 'FMLFileResourcePack:Moar Foods'
at net.minecraft.client.renderer.block.model.ModelBakery.loadModelBlockDefinition(ModelBakery.java:222) ~[ModelBakery.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadMultipartMBD(ModelBakery.java:199) ~[ModelBakery.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:184) ~[ModelBakery.class:?]
at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:251) ~[ModelLoader.class:?]
... 23 more
Caused by: com.google.gson.JsonParseException: Neither 'variants' nor 'multipart' found
at net.minecraft.client.renderer.block.model.ModelBlockDefinition$Deserializer.deserialize(ModelBlockDefinition.java:147) ~[ModelBlockDefinition$Deserializer.class:?]
at net.minecraft.client.renderer.block.model.ModelBlockDefinition$Deserializer.deserialize(ModelBlockDefinition.java:132) ~[ModelBlockDefinition$Deserializer.class:?]
at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:58) ~[TreeTypeAdapter.class:?]
at com.google.gson.Gson.fromJson(Gson.java:803) ~[Gson.class:?]
at com.google.gson.Gson.fromJson(Gson.java:741) ~[Gson.class:?]
at net.minecraftforge.client.model.BlockStateLoader.load(BlockStateLoader.java:86) ~[blockStateLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBlockDefinition.parseFromReader(ModelBlockDefinition.java:34) ~[ModelBlockDefinition.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadModelBlockDefinition(ModelBakery.java:218) ~[ModelBakery.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadMultipartMBD(ModelBakery.java:199) ~[ModelBakery.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:184) ~[ModelBakery.class:?]
at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:251) ~[ModelLoader.class:?]
... 23 more
[09:49:50] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
[09:50:59] [server thread/INFO]: Starting integrated minecraft server version 1.9
[09:50:59] [server thread/INFO]: Generating keypair
[09:50:59] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance
[09:50:59] [server thread/INFO] [FML]: Applying holder lookups
[09:50:59] [server thread/INFO] [FML]: Holder lookups applied
[09:51:00] [server thread/INFO] [FML]: Loading dimension 0 (Test) (net.minecraft.server.integrated.IntegratedServer@233d3304)
[09:51:01] [server thread/INFO] [FML]: Loading dimension 1 (Test) (net.minecraft.server.integrated.IntegratedServer@233d3304)
[09:51:01] [server thread/INFO] [FML]: Loading dimension -1 (Test) (net.minecraft.server.integrated.IntegratedServer@233d3304)
[09:51:01] [server thread/INFO]: Preparing start region for level 0
[09:51:03] [server thread/INFO]: Preparing spawn area: 0%
[09:51:04] [server thread/INFO]: Preparing spawn area: 22%
[09:51:05] [server thread/INFO]: Preparing spawn area: 71%
[09:51:06] [server thread/INFO]: Changing view distance to 8, from 10
[09:51:13] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2
[09:51:13] [Netty Server IO #1/INFO] [FML]: Client protocol version 2
[09:51:13] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected] Early Beta
[09:51:13] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established
[09:51:13] [server thread/INFO] [FML]: [server thread] Server side modded connection established
[09:51:13] [server thread/INFO]: Player841[local:E:7e4509dd] logged in with entity id 312 at (471.8222420987162, 70.0, 1380.4471721155362)
[09:51:13] [server thread/INFO]: Player841 joined the game
[09:51:15] [server thread/INFO]: Saving and pausing game...
[09:51:15] [server thread/INFO]: Saving chunks for level 'Test'/Overworld
[09:51:15] [server thread/INFO]: Saving chunks for level 'Test'/Nether
[09:51:15] [server thread/INFO]: Saving chunks for level 'Test'/The End
[09:51:16] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@bc22e6[id=197d9491-ff34-3fd1-8394-1aadd56cfa2c,name=Player841,properties={},legacy=false]
com.mojang.authlib.exceptions.AuthenticationException: The client has sent too many requests within a certain amount of time
at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:65) ~[YggdrasilAuthenticationService.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:175) [YggdrasilMinecraftSessionService.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:59) [YggdrasilMinecraftSessionService$1.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:56) [YggdrasilMinecraftSessionService$1.class:?]
at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3524) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2317) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2280) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2195) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache.get(LocalCache.java:3934) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3938) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4821) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:4827) [guava-17.0.jar:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:165) [YggdrasilMinecraftSessionService.class:?]
at net.minecraft.client.Minecraft.getProfileProperties(Minecraft.java:3038) [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]
[09:51:16] [server thread/INFO]: Saving and pausing game...
[09:51:16] [server thread/INFO]: Saving chunks for level 'Test'/Overworld
[09:51:17] [server thread/INFO]: Saving chunks for level 'Test'/Nether
[09:51:17] [server thread/INFO]: Saving chunks for level 'Test'/The End
[09:51:26] [Client thread/INFO]: Warning: Clientside chunk ticking took 434 ms
[09:51:31] [server thread/INFO]: Saving and pausing game...
[09:51:31] [server thread/INFO]: Saving chunks for level 'Test'/Overworld
[09:51:31] [server thread/INFO]: Saving chunks for level 'Test'/Nether
[09:51:31] [server thread/INFO]: Saving chunks for level 'Test'/The End
[09:51:32] [server thread/INFO]: Stopping server
[09:51:32] [server thread/INFO]: Saving players
[09:51:32] [server thread/INFO]: Saving worlds
[09:51:32] [server thread/INFO]: Saving chunks for level 'Test'/Overworld
[09:51:32] [server thread/INFO]: Saving chunks for level 'Test'/Nether
[09:51:32] [server thread/INFO]: Saving chunks for level 'Test'/The End
[09:51:33] [server thread/INFO] [FML]: Unloading dimension 0
[09:51:33] [server thread/INFO] [FML]: Unloading dimension -1
[09:51:33] [server thread/INFO] [FML]: Unloading dimension 1
[09:51:33] [server thread/INFO] [FML]: Applying holder lookups
[09:51:33] [server thread/INFO] [FML]: Holder lookups applied
[09:52:55] [Client thread/INFO]: Stopping!
[09:52:55] [Client thread/INFO]: SoundSystem shutting down...
[09:52:55] [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

Developer of "A Realistic Foods Mod"

Link to comment
Share on other sites

Why is your models.block and blockstate the same?

 

Ok, I fixed my blockstate json but it looks like this now https://drive.google.com/file/d/0B2QfEFWizJ9_XzFsai04aDFZS3M/view?usp=sharing

yes I have 2 different blocks now.

Heres the new jsons

{
    "forge_marker": 1,
    "defaults": {
        "textures": {
            "all": "moarfoods:blocks/strawberry_plant"
        },
        "model": "cross",
        "uvlock": true
    },
    "variants": {
        "normal": [{

        }]
    }
}

Developer of "A Realistic Foods Mod"

Link to comment
Share on other sites

If "normal" is the only variant, then try moving everything down from the defaults into that variant.

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

Link to comment
Share on other sites

Please post the new FML log.

Here:

[19:05:17] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
[19:05:17] [main/INFO] [FML/]: Forge Mod Loader version 12.16.1.1887 for Minecraft 1.9 loading
[19:05:17] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_91, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre1.8.0_91
[19:05:17] [main/DEBUG] [FML/]: Java classpath at launch is C:\Users\SEAN_GAMING\Desktop\moarfoods creation\bin;C:\Users\SEAN_GAMING\.gradle\caches\minecraft\net\minecraftforge\forge\1.9-12.16.1.1887\snapshot\20160312\forgeSrc-1.9-12.16.1.1887.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.mojang\netty\1.6\4b75825a06139752bd800d9e29c5fd55b8b1b1e4\netty-1.6.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.23.Final\294104aaf1781d6a56a07d561e792c5d0c95f45\netty-all-4.0.23.Final.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.22\afaa8f6df976fcb5520e76ef1d5798c9e6b5c0b2\authlib-1.5.22.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.8.7\b624280016616bb56cc6c30282684322edc7e7eb\realms-1.8.7.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.0.3\f9e364ae2a66ce2a543012a4668856e84e5dab74\asm-debug-all-5.0.3.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.typesafe.akka\akka-actor_2.11\2.3.3\ed62e9fc709ca0f2ff1a3220daa8b70a2870078e\akka-actor_2.11-2.3.3.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors-migration_2.11\1.1.0\dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f\scala-actors-migration_2.11-1.1.0.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-library_2.11\1.0.2\e517c53a7e9acd6b1668c5a35eccbaa3bab9aac\scala-continuations-library_2.11-1.0.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-plugin_2.11.1\1.0.2\f361a3283452c57fa30c1ee69448995de23c60f7\scala-continuations-plugin_2.11.1-1.0.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-xml_2.11\1.0.2\820fbca7e524b530fdadc594c39d49a21ea0337e\scala-xml_2.11-1.0.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.4-nightly-20150209\d51a7c040a721d13efdfbd34f8b257b2df882ad0\lwjgl_util-2.9.4-nightly-20150209.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\2.0.1\516c03b21d50a644d538de0f0369c620989cd8f0\jsr305-2.0.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0\lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\931074f46c795d2f7b30ed6395df5715cfd7675b\lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\bcab850f8f487c3f4c4dbabde778bb82bd1a40ed\lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar;C:\Users\SEAN_GAMING\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar;C:\Users\SEAN_GAMING\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar;C:\Users\SEAN_GAMING\.gradle\caches\minecraft\net\minecraftforge\forge\1.9-12.16.1.1887\start
[19:05:17] [main/DEBUG] [FML/]: Java library path at launch is C:\Program Files\Java\jre1.8.0_91\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/Program Files/Java/jre1.8.0_91/bin/server;C:/Program Files/Java/jre1.8.0_91/bin;C:/Program Files/Java/jre1.8.0_91/lib/amd64;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Skype\Phone\;C:\Windows\system32\config\systemprofile\.dnx\bin;C:\Program Files\Microsoft DNX\Dnvm\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\:\Program Files\Git\cmd;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Common Files\Autodesk Shared\;C:\Program Files (x86)\Autodesk\Backburner\;C:\Program Files\Java\jdk1.8.0_91\bin;C:\Users\SEAN_GAMING\Desktop;;.;C:/Users/SEAN_GAMING/.gradle/caches/minecraft/net/minecraft/natives/1.9
[19:05:17] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[19:05:17] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin
[19:05:17] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers
[19:05:17] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin
[19:05:17] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin
[19:05:17] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin
[19:05:17] [main/DEBUG] [FML/]: All fundamental core mods are successfully located
[19:05:17] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to C:\Users\SEAN_GAMING\Desktop\moarfoods creation\run\.
[19:05:17] [main/DEBUG] [FML/]: Discovering coremods
[19:05:17] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[19:05:17] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[19:05:17] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[19:05:17] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[19:05:17] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[19:05:17] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[19:05:17] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[19:05:17] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[19:05:17] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[19:05:17] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} class transformers
[19:05:17] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer
[19:05:17] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer
[19:05:17] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer
[19:05:17] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer
[19:05:17] [main/DEBUG] [FML/]: Injection complete
[19:05:17] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin}
[19:05:17] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin
[19:05:17] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[19:05:18] [main/DEBUG] [FML/]: Loading deobfuscation resource C:\Users\SEAN_GAMING\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_snapshot\20160312\srgs\srg-mcp.srg with 31798 records
[19:05:21] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing
[19:05:21] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully
[19:05:21] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[19:05:21] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers
[19:05:21] [main/DEBUG] [FML/]: Injection complete
[19:05:21] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin}
[19:05:21] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin
[19:05:21] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully
[19:05:21] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[19:05:21] [main/DEBUG] [FML/]: Loaded 188 rules from AccessTransformer config file forge_at.cfg
[19:05:21] [main/DEBUG] [FML/]: Validating minecraft
[19:05:22] [main/DEBUG] [FML/]: Minecraft validated, launching...
[19:05:22] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[19:05:22] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[19:05:22] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[19:05:22] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[19:05:30] [Client thread/DEBUG] [FML/]: Creating vanilla freeze snapshot
[19:05:30] [Client thread/DEBUG] [FML/]: Vanilla freeze snapshot created
[19:05:32] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0.002s
[19:05:32] [Client thread/INFO] [sTDOUT/]: [net.minecraftforge.fml.client.SplashProgress:start:200]: ---- Minecraft Crash Report ----
// My bad.

Time: 6/22/16 7:05 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.9
Operating System: Windows 7 (amd64) version 6.1
Java Version: 1.8.0_91, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 821552216 bytes (783 MB) / 1056309248 bytes (1007 MB) up to 1056309248 bytes (1007 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: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 353.62' Renderer: 'GeForce GT 610/PCIe/SSE2'
[19:05:34] [Client thread/INFO] [FML/]: MinecraftForge v12.16.1.1887 Initialized
[19:05:34] [Client thread/INFO] [FML/]: Replaced 232 ore recipes
[19:05:34] [Client thread/DEBUG] [FML/]: File C:\Users\SEAN_GAMING\Desktop\moarfoods creation\run\config\injectedDependencies.json not found. No dependencies injected
[19:05:34] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer]
[19:05:34] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes
[19:05:34] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\SEAN_GAMING\Desktop\moarfoods creation\bin, examining for mod candidates
[19:05:34] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\minecraft\net\minecraftforge\forge\1.9-12.16.1.1887\snapshot\20160312\forgeSrc-1.9-12.16.1.1887.jar, examining for mod candidates
[19:05:34] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.mojang\netty\1.6\4b75825a06139752bd800d9e29c5fd55b8b1b1e4\netty-1.6.jar, examining for mod candidates
[19:05:34] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar, examining for mod candidates
[19:05:34] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar, examining for mod candidates
[19:05:34] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar, examining for mod candidates
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.23.Final\294104aaf1781d6a56a07d561e792c5d0c95f45\netty-all-4.0.23.Final.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.22\afaa8f6df976fcb5520e76ef1d5798c9e6b5c0b2\authlib-1.5.22.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.8.7\b624280016616bb56cc6c30282684322edc7e7eb\realms-1.8.7.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar
[19:05:34] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar, examining for mod candidates
[19:05:34] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.0.3\f9e364ae2a66ce2a543012a4668856e84e5dab74\asm-debug-all-5.0.3.jar, examining for mod candidates
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.typesafe.akka\akka-actor_2.11\2.3.3\ed62e9fc709ca0f2ff1a3220daa8b70a2870078e\akka-actor_2.11-2.3.3.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors-migration_2.11\1.1.0\dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f\scala-actors-migration_2.11-1.1.0.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-library_2.11\1.0.2\e517c53a7e9acd6b1668c5a35eccbaa3bab9aac\scala-continuations-library_2.11-1.0.2.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-plugin_2.11.1\1.0.2\f361a3283452c57fa30c1ee69448995de23c60f7\scala-continuations-plugin_2.11.1-1.0.2.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-xml_2.11\1.0.2\820fbca7e524b530fdadc594c39d49a21ea0337e\scala-xml_2.11-1.0.2.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar
[19:05:34] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar, examining for mod candidates
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.4-nightly-20150209\d51a7c040a721d13efdfbd34f8b257b2df882ad0\lwjgl_util-2.9.4-nightly-20150209.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar
[19:05:34] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar, examining for mod candidates
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar
[19:05:34] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\2.0.1\516c03b21d50a644d538de0f0369c620989cd8f0\jsr305-2.0.1.jar, examining for mod candidates
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0\lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\931074f46c795d2f7b30ed6395df5715cfd7675b\lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar
[19:05:34] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\bcab850f8f487c3f4c4dbabde778bb82bd1a40ed\lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar
[19:05:34] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar, examining for mod candidates
[19:05:34] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar, examining for mod candidates
[19:05:34] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\SEAN_GAMING\.gradle\caches\minecraft\net\minecraftforge\forge\1.9-12.16.1.1887\start, examining for mod candidates
[19:05:34] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully
[19:05:34] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer
[19:05:34] [Client thread/INFO] [FML/]: Searching C:\Users\SEAN_GAMING\Desktop\moarfoods creation\run\mods for mods
[19:05:34] [Client thread/DEBUG] [FML/]: Examining directory bin for potential mods
[19:05:34] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory bin
[19:05:34] [Client thread/TRACE] [FML/]: Recursing into package assets
[19:05:34] [Client thread/TRACE] [FML/]: Recursing into package assets.minecraft
[19:05:34] [Client thread/TRACE] [FML/]: Recursing into package assets.minecraft.textures
[19:05:34] [Client thread/TRACE] [FML/]: Recursing into package assets.minecraft.textures.gui
[19:05:34] [Client thread/TRACE] [FML/]: Recursing into package assets.minecraft.textures.gui.container
[19:05:34] [Client thread/TRACE] [FML/]: Recursing into package assets.minecraft.textures.gui.container.creative_inventory
[19:05:34] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods
[19:05:34] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.blockstates
[19:05:34] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.lang
[19:05:34] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.models
[19:05:34] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.models.block
[19:05:34] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.models.item
[19:05:34] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.textures
[19:05:34] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.textures.blocks
[19:05:35] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.textures.items
[19:05:35] [Client thread/TRACE] [FML/]: Recursing into package block
[19:05:35] [Client thread/TRACE] [FML/]: Recursing into package com
[19:05:35] [Client thread/TRACE] [FML/]: Recursing into package com.seanomik
[19:05:35] [Client thread/TRACE] [FML/]: Recursing into package com.seanomik.moarfoods
[19:05:35] [Client thread/TRACE] [FML/]: Recursing into package com.seanomik.moarfoods.init
[19:05:35] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (com.seanomik.moarfoods.MainRegistry) - loading
[19:05:35] [Client thread/TRACE] [moarFoods/]: Parsed dependency info : [] [] []
[19:05:35] [Client thread/TRACE] [FML/]: Recursing into package com.seanomik.moarfoods.Proxies
[19:05:35] [Client thread/TRACE] [FML/]: Recursing into package com.seanomik.moarfoods.world
[19:05:35] [Client thread/TRACE] [FML/]: Recursing into package MoarFoodsItemsClass
[19:05:35] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.9-12.16.1.1887.jar for potential mods
[19:05:35] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.9-12.16.1.1887.jar appears to be missing an mcmod.info file
[19:05:37] [Client thread/DEBUG] [FML/]: Examining file netty-1.6.jar for potential mods
[19:05:37] [Client thread/DEBUG] [FML/]: The mod container netty-1.6.jar appears to be missing an mcmod.info file
[19:05:37] [Client thread/DEBUG] [FML/]: Examining file oshi-core-1.1.jar for potential mods
[19:05:37] [Client thread/DEBUG] [FML/]: The mod container oshi-core-1.1.jar appears to be missing an mcmod.info file
[19:05:37] [Client thread/DEBUG] [FML/]: Examining file jna-3.4.0.jar for potential mods
[19:05:37] [Client thread/DEBUG] [FML/]: The mod container jna-3.4.0.jar appears to be missing an mcmod.info file
[19:05:37] [Client thread/DEBUG] [FML/]: Examining file platform-3.4.0.jar for potential mods
[19:05:37] [Client thread/DEBUG] [FML/]: The mod container platform-3.4.0.jar appears to be missing an mcmod.info file
[19:05:37] [Client thread/DEBUG] [FML/]: Examining file jline-2.13.jar for potential mods
[19:05:37] [Client thread/DEBUG] [FML/]: The mod container jline-2.13.jar appears to be missing an mcmod.info file
[19:05:37] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods
[19:05:37] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file
[19:05:37] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods
[19:05:37] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file
[19:05:37] [Client thread/DEBUG] [FML/]: Examining file jansi-1.11.jar for potential mods
[19:05:37] [Client thread/DEBUG] [FML/]: The mod container jansi-1.11.jar appears to be missing an mcmod.info file
[19:05:37] [Client thread/DEBUG] [FML/]: Examining file jsr305-2.0.1.jar for potential mods
[19:05:37] [Client thread/DEBUG] [FML/]: The mod container jsr305-2.0.1.jar appears to be missing an mcmod.info file
[19:05:37] [Client thread/DEBUG] [FML/]: Examining file compileDummy.jar for potential mods
[19:05:37] [Client thread/DEBUG] [FML/]: The mod container compileDummy.jar appears to be missing an mcmod.info file
[19:05:37] [Client thread/DEBUG] [FML/]: Examining file providedDummy.jar for potential mods
[19:05:37] [Client thread/DEBUG] [FML/]: The mod container providedDummy.jar appears to be missing an mcmod.info file
[19:05:37] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods
[19:05:37] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start
[19:05:37] [Client thread/TRACE] [FML/]: Recursing into package net
[19:05:37] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge
[19:05:37] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle
[19:05:37] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers
[19:05:37] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load
[19:05:37] [Client thread/TRACE] [FML/]: Received a system property request ''
[19:05:37] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods
[19:05:37] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods
[19:05:37] [Client thread/DEBUG] [moarFoods/]: Enabling mod moarFoods
[19:05:37] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied
[19:05:37] [Client thread/TRACE] [FML/]: All mod requirements are satisfied
[19:05:38] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list
[19:05:38] [Client thread/TRACE] [FML/]: Mod sorting completed successfully
[19:05:38] [Client thread/DEBUG] [FML/]: Mod sorting data
[19:05:38] [Client thread/DEBUG] [FML/]: 	moarFoods(Moar Foods:0.1.0 Early Beta): bin ()
[19:05:38] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp
[19:05:38] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp
[19:05:38] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0.003s
[19:05:38] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML
[19:05:38] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists
[19:05:38] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection
[19:05:38] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (8.0.99.99)
[19:05:38] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, moarFoods] at CLIENT
[19:05:38] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, moarFoods] at SERVER
[19:05:38] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML
[19:05:38] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 0.821s
[19:05:38] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge
[19:05:38] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed
[19:05:38] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection
[19:05:38] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (12.16.1.1887)
[19:05:38] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge
[19:05:38] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0.020s
[19:05:38] [Client thread/TRACE] [moarFoods/moarFoods]: Sending event FMLConstructionEvent to mod moarFoods
[19:05:38] [Client thread/TRACE] [FML/moarFoods]: Mod moarFoods is using network checker : Accepting version 0.1.0 Early Beta
[19:05:38] [Client thread/TRACE] [FML/moarFoods]: Testing mod moarFoods to verify it accepts its own version in a remote connection
[19:05:38] [Client thread/TRACE] [FML/moarFoods]: The mod moarFoods accepts its own version (0.1.0 Early Beta)
[19:05:38] [Client thread/DEBUG] [FML/moarFoods]: Attempting to inject @SidedProxy classes into moarFoods
[19:05:38] [Client thread/TRACE] [moarFoods/moarFoods]: Sent event FMLConstructionEvent to mod moarFoods
[19:05:38] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Moar Foods took 0.028s
[19:05:38] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 0.871s
[19:05:38] [Client thread/DEBUG] [FML/]: Mod signature data
[19:05:38] [Client thread/DEBUG] [FML/]:  	Valid Signatures:
[19:05:38] [Client thread/DEBUG] [FML/]:  	Missing Signatures:
[19:05:38] [Client thread/DEBUG] [FML/]: 		mcp	(Minecraft Coder Pack	9.19)	minecraft.jar
[19:05:38] [Client thread/DEBUG] [FML/]: 		FML	(Forge Mod Loader	8.0.99.99)	forgeSrc-1.9-12.16.1.1887.jar
[19:05:38] [Client thread/DEBUG] [FML/]: 		Forge	(Minecraft Forge	12.16.1.1887)	forgeSrc-1.9-12.16.1.1887.jar
[19:05:38] [Client thread/DEBUG] [FML/]: 		moarFoods	(Moar Foods	0.1.0 Early Beta)	bin
[19:05:38] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.007s
[19:05:38] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.022s
[19:05:38] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.022s
[19:05:38] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Moar Foods took 0.004s
[19:05:39] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0.071s
[19:05:39] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0.072s
[19:05:39] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0.127s
[19:05:39] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[19:05:39] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[19:05:39] [Client thread/DEBUG] [Moar Foods/]: Mod Moar Foods is missing a pack.mcmeta file, substituting a dummy one
[19:05:39] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations
[19:05:39] [Client thread/INFO] [FML/]: Found 418 ObjectHolder annotations
[19:05:39] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations
[19:05:39] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations
[19:05:39] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp
[19:05:39] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp
[19:05:39] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0.001s
[19:05:39] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML
[19:05:39] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML
[19:05:39] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0.043s
[19:05:39] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge
[19:05:39] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0
[19:05:39] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge
[19:05:39] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0.104s
[19:05:39] [Client thread/TRACE] [moarFoods/moarFoods]: Sending event FMLPreInitializationEvent to mod moarFoods
[19:05:39] [Client thread/TRACE] [moarFoods/moarFoods]: Sent event FMLPreInitializationEvent to mod moarFoods
[19:05:39] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Moar Foods took 0.014s
[19:05:39] [Client thread/DEBUG] [FML/]: Bar Finished: PreInitialization took 0.162s
[19:05:39] [Client thread/INFO] [FML/]: Applying holder lookups
[19:05:39] [Client thread/INFO] [FML/]: Holder lookups applied
[19:05:39] [Client thread/INFO] [FML/]: Injecting itemstacks
[19:05:39] [Client thread/INFO] [FML/]: Itemstack injection complete
[19:05:39] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0.000s
[19:05:39] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[19:05:39] [Forge Version Check/DEBUG] [ForgeVersionCheck/Forge]: [Forge] Received version check data:
{
  "homepage": "http://files.minecraftforge.net/maven/net/minecraftforge/forge/",
  "promos": {
    "1.5.2-latest": "7.8.1.738",
    "1.5.2-recommended": "7.8.1.737",
    "1.6.1-latest": "8.9.0.775",
    "1.6.2-latest": "9.10.1.871",
    "1.6.2-recommended": "9.10.1.871",
    "1.6.3-latest": "9.11.0.878",
    "1.6.4-latest": "9.11.1.1345",
    "1.6.4-recommended": "9.11.1.1345",
    "1.7.10-latest": "10.13.4.1614",
    "1.7.10-latest-1.7.10": "10.13.2.1343",
    "1.7.10-recommended": "10.13.4.1558",
    "1.7.2-latest": "10.12.2.1147",
    "1.7.2-recommended": "10.12.2.1121",
    "1.8-latest": "11.14.4.1577",
    "1.8-recommended": "11.14.4.1563",
    "1.8.8-latest": "11.15.0.1655",
    "1.8.9-latest": "11.15.1.1902",
    "1.8.9-recommended": "11.15.1.1722",
    "1.9-latest": "12.16.0.1942",
    "1.9-recommended": "12.16.1.1887",
    "1.9.4-latest": "12.17.0.1970",
    "latest": "12.17.0.1970",
    "latest-1.7.10": "10.13.2.1343",
    "recommended": "12.16.1.1887"
  }
}
[19:05:39] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Found status: UP_TO_DATE Target: null
[19:05:43] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 4.080s
[19:05:43] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.007s
[19:05:43] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.005s
[19:05:43] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0.043s
[19:05:43] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0.017s
[19:05:43] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - GL Setup took 0.003s
[19:05:43] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Texture Map took 0.012s
[19:05:43] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - B3DLoader took 0.000s
[19:05:43] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - OBJLoader took 0.000s
[19:05:43] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelFluid$FluidLoader took 0.000s
[19:05:43] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ItemLayerModel$Loader took 0.000s
[19:05:43] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - MultiLayerModel$Loader took 0.000s
[19:05:43] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelDynBucket$LoaderDynBucket took 0.000s
[19:05:48] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 4.469s
[19:05:50] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 2.258s
[19:05:50] [Client thread/INFO] [FML/]: Max texture size: 16384
[19:05:50] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0.002s
[19:05:50] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.020s
[19:05:50] [Client thread/DEBUG] [FML/]: Bar Finished: Texture mipmap and upload - missingno took 0.001s
[19:05:52] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: baking took 1.813s
[19:05:53] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelManager took 9.179s
[19:05:53] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Model Manager took 9.480s
[19:05:53] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderItem took 0.003s
[19:05:53] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Item Renderer took 0.844s
[19:05:53] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0.000s
[19:05:53] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0.000s
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderGlobal took 0.000s
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0.930s
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Finished: Rendering Setup took 11.269s
[19:05:54] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp
[19:05:54] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Coder Pack took 0.000s
[19:05:54] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML
[19:05:54] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Forge Mod Loader took 0.001s
[19:05:54] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge
[19:05:54] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Forge took 0.000s
[19:05:54] [Client thread/TRACE] [moarFoods/moarFoods]: Sending event FMLInitializationEvent to mod moarFoods
[19:05:54] [Client thread/TRACE] [moarFoods/moarFoods]: Sent event FMLInitializationEvent to mod moarFoods
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Moar Foods took 0.002s
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Finished: Initialization took 0.003s
[19:05:54] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp
[19:05:54] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp
[19:05:54] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0.005s
[19:05:54] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML
[19:05:54] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML
[19:05:54] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0.001s
[19:05:54] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge
[19:05:54] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge
[19:05:54] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Forge took 0.000s
[19:05:54] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod moarFoods
[19:05:54] [Client thread/TRACE] [moarFoods/moarFoods]: Sending event IMCEvent to mod moarFoods
[19:05:54] [Client thread/TRACE] [moarFoods/moarFoods]: Sent event IMCEvent to mod moarFoods
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Moar Foods took 0.000s
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Finished: InterModComms$IMC took 0.007s
[19:05:54] [Client thread/INFO] [FML/]: Injecting itemstacks
[19:05:54] [Client thread/INFO] [FML/]: Itemstack injection complete
[19:05:54] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp
[19:05:54] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Coder Pack took 0.000s
[19:05:54] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML
[19:05:54] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Forge Mod Loader took 0.000s
[19:05:54] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge
[19:05:54] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Forge took 0.016s
[19:05:54] [Client thread/TRACE] [moarFoods/moarFoods]: Sending event FMLPostInitializationEvent to mod moarFoods
[19:05:54] [Client thread/TRACE] [moarFoods/moarFoods]: Sent event FMLPostInitializationEvent to mod moarFoods
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Moar Foods took 0.001s
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Finished: PostInitialization took 0.017s
[19:05:54] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp
[19:05:54] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Coder Pack took 0.001s
[19:05:54] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML
[19:05:54] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Forge Mod Loader took 0.000s
[19:05:54] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge
[19:05:54] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking:
[19:05:54] [Client thread/DEBUG] [FML/Forge]:   16: RecipeEntry("Before", UNKNOWN, )
[19:05:54] [Client thread/DEBUG] [FML/Forge]:   15: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless
[19:05:54] [Client thread/DEBUG] [FML/Forge]:   14: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped
[19:05:54] [Client thread/DEBUG] [FML/Forge]:   13: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped
[19:05:54] [Client thread/DEBUG] [FML/Forge]:   12: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped
[19:05:54] [Client thread/DEBUG] [FML/Forge]:   11: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless
[19:05:54] [Client thread/DEBUG] [FML/Forge]:   10: RecipeEntry("minecraft:shield_deco", SHAPELESS, net.minecraft.item.crafting.ShieldRecipes$Decoration) After: minecraft:shapeless
[19:05:54] [Client thread/DEBUG] [FML/Forge]:   9: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless
[19:05:54] [Client thread/DEBUG] [FML/Forge]:   8: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless
[19:05:54] [Client thread/DEBUG] [FML/Forge]:   7: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless
[19:05:54] [Client thread/DEBUG] [FML/Forge]:   6: RecipeEntry("minecraft:tippedarrow", SHAPELESS, net.minecraft.item.crafting.RecipeTippedArrow) After: minecraft:shapeless
[19:05:54] [Client thread/DEBUG] [FML/Forge]:   5: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless
[19:05:54] [Client thread/DEBUG] [FML/Forge]:   4: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless
[19:05:54] [Client thread/DEBUG] [FML/Forge]:   3: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless
[19:05:54] [Client thread/DEBUG] [FML/Forge]:   2: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless
[19:05:54] [Client thread/DEBUG] [FML/Forge]:   1: RecipeEntry("After", UNKNOWN, )
[19:05:54] [Client thread/DEBUG] [FML/Forge]: Sorting recipes
[19:05:54] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Forge took 0.014s
[19:05:54] [Client thread/TRACE] [moarFoods/moarFoods]: Sending event FMLLoadCompleteEvent to mod moarFoods
[19:05:54] [Client thread/TRACE] [moarFoods/moarFoods]: Sent event FMLLoadCompleteEvent to mod moarFoods
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Moar Foods took 0.000s
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Finished: LoadComplete took 0.015s
[19:05:54] [Client thread/DEBUG] [FML/]: Freezing block and item id maps
[19:05:54] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.000s
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.015s
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.015s
[19:05:54] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Moar Foods took 0.002s
[19:05:55] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/blocks.png took 0.000s
[19:05:55] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii.png took 0.077s
[19:05:55] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/lightMap_1 took 0.000s
[19:05:55] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/misc/forcefield.png took 0.005s
[19:05:55] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii_sga.png took 0.009s
[19:05:55] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading Texture Manager took 0.092s
[19:06:02] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 3.759s
[19:06:04] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 2.129s
[19:06:04] [Client thread/INFO] [FML/]: Max texture size: 16384
[19:06:05] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.827s
[19:06:05] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.103s
[19:06:05] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.109s
[19:06:06] [Client thread/DEBUG] [FML/]: Bar Finished: Texture mipmap and upload took 1.257s
[19:06:07] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: baking took 1.276s
[19:06:08] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 13.180s
[19:06:08] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 13.180s
[19:06:08] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 13.213s
[19:06:08] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[19:06:08] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[19:06:08] [Client thread/DEBUG] [Moar Foods/]: Mod Moar Foods is missing a pack.mcmeta file, substituting a dummy one
[19:06:08] [Client thread/DEBUG] [FML/]: Bar Finished: Loading took 33.605s
[19:07:34] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerAboutToStartEvent to mod mcp
[19:07:34] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerAboutToStartEvent to mod mcp
[19:07:34] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Coder Pack took 0.001s
[19:07:34] [server thread/TRACE] [FML/FML]: Sending event FMLServerAboutToStartEvent to mod FML
[19:07:34] [server thread/TRACE] [FML/FML]: Sent event FMLServerAboutToStartEvent to mod FML
[19:07:34] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Forge Mod Loader took 0.000s
[19:07:34] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerAboutToStartEvent to mod Forge
[19:07:34] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerAboutToStartEvent to mod Forge
[19:07:34] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Forge took 0.000s
[19:07:34] [server thread/TRACE] [moarFoods/moarFoods]: Sending event FMLServerAboutToStartEvent to mod moarFoods
[19:07:34] [server thread/TRACE] [moarFoods/moarFoods]: Sent event FMLServerAboutToStartEvent to mod moarFoods
[19:07:34] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Moar Foods took 0.000s
[19:07:34] [server thread/DEBUG] [FML/]: Bar Finished: ServerAboutToStart took 0.001s
[19:07:34] [server thread/INFO] [FML/]: Injecting existing block and item data into this server instance
[19:07:34] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:pickle: 4112 (init) -> 4110 (map).
[19:07:34] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:cucumber: 4110 (init) -> 4108 (map).
[19:07:34] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:loafbread: 4098 (init) -> 4099 (map).
[19:07:34] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:knife: 4102 (init) -> 4105 (map).
[19:07:34] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:chicken_sandwich: 4106 (init) -> 4113 (map).
[19:07:34] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:tuna_sandwich: 4105 (init) -> 4106 (map).
[19:07:34] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:dPan: 4100 (init) -> 4101 (map).
[19:07:34] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:pork_sandwich: 4107 (init) -> 4112 (map).
[19:07:34] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:eCan: 4101 (init) -> 4102 (map).
[19:07:34] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:cucumber_plant: 4114 (init) -> 4109 (map).
[19:07:34] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:ePan: 4099 (init) -> 4100 (map).
[19:07:34] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:tuna: 4109 (init) -> 4107 (map).
[19:07:34] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:beef_sandwich: 4108 (init) -> 4114 (map).
[19:07:34] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:strawberry_plant: 4113 (init) -> 4098 (map).
[19:07:34] [server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp
[19:07:34] [server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp
[19:07:34] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.001s
[19:07:34] [server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML
[19:07:34] [server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML
[19:07:34] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0.000s
[19:07:34] [server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge
[19:07:34] [server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge
[19:07:34] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0.003s
[19:07:34] [server thread/TRACE] [moarFoods/moarFoods]: Sending event FMLModIdMappingEvent to mod moarFoods
[19:07:34] [server thread/TRACE] [moarFoods/moarFoods]: Sent event FMLModIdMappingEvent to mod moarFoods
[19:07:34] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Moar Foods took 0.000s
[19:07:34] [server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0.005s
[19:07:34] [server thread/INFO] [FML/]: Applying holder lookups
[19:07:34] [server thread/INFO] [FML/]: Holder lookups applied
[19:07:34] [server thread/DEBUG] [FML/]: Loading persistent fluid defaults from world
[19:07:34] [server thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava
[19:07:34] [server thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water
[19:07:35] [server thread/INFO] [FML/]: Loading dimension 0 (Test) (net.minecraft.server.integrated.IntegratedServer@27499a05)
[19:07:35] [server thread/INFO] [FML/]: Loading dimension 1 (Test) (net.minecraft.server.integrated.IntegratedServer@27499a05)
[19:07:35] [server thread/INFO] [FML/]: Loading dimension -1 (Test) (net.minecraft.server.integrated.IntegratedServer@27499a05)
[19:07:39] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartingEvent to mod mcp
[19:07:39] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartingEvent to mod mcp
[19:07:39] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Coder Pack took 0.000s
[19:07:39] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartingEvent to mod FML
[19:07:39] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartingEvent to mod FML
[19:07:39] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Forge Mod Loader took 0.000s
[19:07:39] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartingEvent to mod Forge
[19:07:39] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartingEvent to mod Forge
[19:07:39] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Forge took 0.004s
[19:07:39] [server thread/TRACE] [moarFoods/moarFoods]: Sending event FMLServerStartingEvent to mod moarFoods
[19:07:39] [server thread/TRACE] [moarFoods/moarFoods]: Sent event FMLServerStartingEvent to mod moarFoods
[19:07:39] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Moar Foods took 0.001s
[19:07:39] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarting took 0.006s
[19:07:39] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartedEvent to mod mcp
[19:07:39] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartedEvent to mod mcp
[19:07:39] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Coder Pack took 0.000s
[19:07:39] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartedEvent to mod FML
[19:07:39] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartedEvent to mod FML
[19:07:39] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Forge Mod Loader took 0.001s
[19:07:39] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartedEvent to mod Forge
[19:07:39] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartedEvent to mod Forge
[19:07:39] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Forge took 0.000s
[19:07:39] [server thread/TRACE] [moarFoods/moarFoods]: Sending event FMLServerStartedEvent to mod moarFoods
[19:07:39] [server thread/TRACE] [moarFoods/moarFoods]: Sent event FMLServerStartedEvent to mod moarFoods
[19:07:39] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Moar Foods took 0.000s
[19:07:39] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarted took 0.002s
[19:07:43] [Netty Local Client IO #0/TRACE] [FML/]: Handshake channel activating
[19:07:43] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: null->FMLHandshakeClientState$1:START
[19:07:43] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: HELLO
[19:07:43] [Netty Server IO #1/TRACE] [FML/]: Handshake channel activating
[19:07:43] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: null->FMLHandshakeServerState$1:START
[19:07:43] [Netty Server IO #1/DEBUG] [FML/]:   Next: HELLO
[19:07:44] [Netty Local Client IO #0/DEBUG] [FML/]: Server FML protocol version 2, 4 byte dimension received 0
[19:07:44] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ServerHello->FMLHandshakeClientState$2:HELLO
[19:07:44] [Netty Local Client IO #0/INFO] [FML/]: Server protocol version 2
[19:07:44] [Netty Local Client IO #0/DEBUG] [FML/]: Received override dimension 0
[19:07:44] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: WAITINGSERVERDATA
[19:07:44] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ClientHello->FMLHandshakeServerState$2:HELLO
[19:07:44] [Netty Server IO #1/INFO] [FML/]: Client protocol version 2
[19:07:44] [Netty Server IO #1/DEBUG] [FML/]:   Next: HELLO
[19:07:44] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ModList:4 mods->FMLHandshakeServerState$2:HELLO
[19:07:44] [Netty Server IO #1/INFO] [FML/]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected] Early Beta
[19:07:44] [Netty Server IO #1/DEBUG] [FML/]:   Next: WAITINGCACK
[19:07:44] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ModList:4 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA
[19:07:44] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: PENDINGCOMPLETE
[19:07:44] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{2}->FMLHandshakeServerState$3:WAITINGCACK
[19:07:44] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE
[19:07:44] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: COMPLETE
[19:07:44] [Netty Server IO #1/DEBUG] [FML/]:   Next: COMPLETE
[19:07:44] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{4}->FMLHandshakeServerState$4:COMPLETE
[19:07:44] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava
[19:07:44] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water
[19:07:44] [Netty Server IO #1/DEBUG] [FML/]:   Next: DONE
[19:07:44] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE
[19:07:44] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: DONE
[19:07:44] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{5}->FMLHandshakeServerState$5:DONE
[19:07:44] [Netty Server IO #1/DEBUG] [FML/]:   Next: DONE
[19:07:44] [Netty Local Client IO #0/INFO] [FML/]: [Netty Local Client IO #0] Client side modded connection established
[19:07:44] [server thread/INFO] [FML/]: [server thread] Server side modded connection established
[19:07:44] [Client thread/DEBUG] [FML/]: Overriding dimension: using 0
[19:07:46] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save Test
[19:08:12] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save Test
[19:08:13] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppingEvent to mod mcp
[19:08:13] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppingEvent to mod mcp
[19:08:13] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Minecraft Coder Pack took 0.000s
[19:08:13] [server thread/TRACE] [FML/FML]: Sending event FMLServerStoppingEvent to mod FML
[19:08:13] [server thread/TRACE] [FML/FML]: Sent event FMLServerStoppingEvent to mod FML
[19:08:13] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Forge Mod Loader took 0.000s
[19:08:13] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppingEvent to mod Forge
[19:08:13] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppingEvent to mod Forge
[19:08:13] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Minecraft Forge took 0.000s
[19:08:13] [server thread/TRACE] [moarFoods/moarFoods]: Sending event FMLServerStoppingEvent to mod moarFoods
[19:08:13] [server thread/TRACE] [moarFoods/moarFoods]: Sent event FMLServerStoppingEvent to mod moarFoods
[19:08:13] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Moar Foods took 0.000s
[19:08:13] [server thread/DEBUG] [FML/]: Bar Finished: ServerStopping took 0.001s
[19:08:13] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save Test
[19:08:13] [server thread/INFO] [FML/]: Unloading dimension 0
[19:08:13] [server thread/INFO] [FML/]: Unloading dimension -1
[19:08:13] [server thread/INFO] [FML/]: Unloading dimension 1
[19:08:13] [server thread/DEBUG] [FML/]: Reverting to frozen data state.
[19:08:13] [server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp
[19:08:13] [server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp
[19:08:13] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.000s
[19:08:13] [server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML
[19:08:13] [server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML
[19:08:13] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0.000s
[19:08:13] [server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge
[19:08:13] [server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge
[19:08:13] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0.001s
[19:08:13] [server thread/TRACE] [moarFoods/moarFoods]: Sending event FMLModIdMappingEvent to mod moarFoods
[19:08:13] [server thread/TRACE] [moarFoods/moarFoods]: Sent event FMLModIdMappingEvent to mod moarFoods
[19:08:13] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Moar Foods took 0.000s
[19:08:13] [server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0.001s
[19:08:13] [server thread/INFO] [FML/]: Applying holder lookups
[19:08:13] [server thread/INFO] [FML/]: Holder lookups applied
[19:08:13] [server thread/DEBUG] [FML/]: Frozen state restored.
[19:08:13] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppedEvent to mod mcp
[19:08:13] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppedEvent to mod mcp
[19:08:13] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Minecraft Coder Pack took 0.000s
[19:08:13] [server thread/TRACE] [FML/FML]: Sending event FMLServerStoppedEvent to mod FML
[19:08:13] [server thread/TRACE] [FML/FML]: Sent event FMLServerStoppedEvent to mod FML
[19:08:13] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Forge Mod Loader took 0.000s
[19:08:13] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppedEvent to mod Forge
[19:08:13] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppedEvent to mod Forge
[19:08:13] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Minecraft Forge took 0.000s
[19:08:13] [server thread/TRACE] [moarFoods/moarFoods]: Sending event FMLServerStoppedEvent to mod moarFoods
[19:08:13] [server thread/TRACE] [moarFoods/moarFoods]: Sent event FMLServerStoppedEvent to mod moarFoods
[19:08:13] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Moar Foods took 0.000s
[19:08:13] [server thread/DEBUG] [FML/]: Bar Finished: ServerStopped took 0.001s

Developer of "A Realistic Foods Mod"

Link to comment
Share on other sites

The

block/cross

model uses the

"cross"

texture, the

block/crop

model uses the

"crop"

texture. Neither use the

"all"

texture.

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

Link to comment
Share on other sites

The

block/cross

model uses the

"cross"

texture, the

block/crop

model uses the

"crop"

texture. Neither use the

"all"

texture.

Then in the block states I would change all to cross or crop?

 

 

EDIT

 

I will try that and if it doesn't work then I will give you the new FML Log

Developer of "A Realistic Foods Mod"

Link to comment
Share on other sites

The

block/cross

model uses the

"cross"

texture, the

block/crop

model uses the

"crop"

texture. Neither use the

"all"

texture.

Then in the block states I would change all to cross or crop?

 

 

EDIT

 

I will try that and if it doesn't work then I will give you the new FML Log

 

 

Ok well it kinda works but now the textures look like this now:

width=800 height=423https://s32.postimg.org/o0kvw7u0l/2016_06_23_22_16_53.png[/img]

 

Heres the new .json

{
    "forge_marker": 1,
    "defaults": {
        "textures": {
            "cross": "moarfoods:blocks/strawberry_plant"
        },
        "model": "cross",
        "uvlock": true
    },
    "variants": {
        "normal": [{

        }]
    }
}

 

and here is the new FML log:

[22:14:30] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
[22:14:30] [main/INFO] [FML/]: Forge Mod Loader version 12.16.1.1887 for Minecraft 1.9 loading
[22:14:30] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_91, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre1.8.0_91
[22:14:30] [main/DEBUG] [FML/]: Java classpath at launch is C:\Users\SEAN_GAMING\Desktop\moarfoods creation\bin;C:\Users\SEAN_GAMING\.gradle\caches\minecraft\net\minecraftforge\forge\1.9-12.16.1.1887\snapshot\20160312\forgeSrc-1.9-12.16.1.1887.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.mojang\netty\1.6\4b75825a06139752bd800d9e29c5fd55b8b1b1e4\netty-1.6.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.23.Final\294104aaf1781d6a56a07d561e792c5d0c95f45\netty-all-4.0.23.Final.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.22\afaa8f6df976fcb5520e76ef1d5798c9e6b5c0b2\authlib-1.5.22.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.8.7\b624280016616bb56cc6c30282684322edc7e7eb\realms-1.8.7.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.0.3\f9e364ae2a66ce2a543012a4668856e84e5dab74\asm-debug-all-5.0.3.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.typesafe.akka\akka-actor_2.11\2.3.3\ed62e9fc709ca0f2ff1a3220daa8b70a2870078e\akka-actor_2.11-2.3.3.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors-migration_2.11\1.1.0\dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f\scala-actors-migration_2.11-1.1.0.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-library_2.11\1.0.2\e517c53a7e9acd6b1668c5a35eccbaa3bab9aac\scala-continuations-library_2.11-1.0.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-plugin_2.11.1\1.0.2\f361a3283452c57fa30c1ee69448995de23c60f7\scala-continuations-plugin_2.11.1-1.0.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-xml_2.11\1.0.2\820fbca7e524b530fdadc594c39d49a21ea0337e\scala-xml_2.11-1.0.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.4-nightly-20150209\d51a7c040a721d13efdfbd34f8b257b2df882ad0\lwjgl_util-2.9.4-nightly-20150209.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\2.0.1\516c03b21d50a644d538de0f0369c620989cd8f0\jsr305-2.0.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0\lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\931074f46c795d2f7b30ed6395df5715cfd7675b\lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\bcab850f8f487c3f4c4dbabde778bb82bd1a40ed\lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar;C:\Users\SEAN_GAMING\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar;C:\Users\SEAN_GAMING\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar;C:\Users\SEAN_GAMING\.gradle\caches\minecraft\net\minecraftforge\forge\1.9-12.16.1.1887\start
[22:14:30] [main/DEBUG] [FML/]: Java library path at launch is C:\Program Files\Java\jre1.8.0_91\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/Program Files/Java/jre1.8.0_91/bin/server;C:/Program Files/Java/jre1.8.0_91/bin;C:/Program Files/Java/jre1.8.0_91/lib/amd64;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Skype\Phone\;C:\Windows\system32\config\systemprofile\.dnx\bin;C:\Program Files\Microsoft DNX\Dnvm\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\:\Program Files\Git\cmd;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Common Files\Autodesk Shared\;C:\Program Files (x86)\Autodesk\Backburner\;C:\Program Files\Java\jdk1.8.0_91\bin;C:\Users\SEAN_GAMING\Desktop;;.;C:/Users/SEAN_GAMING/.gradle/caches/minecraft/net/minecraft/natives/1.9
[22:14:30] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[22:14:30] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin
[22:14:30] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers
[22:14:30] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin
[22:14:30] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin
[22:14:30] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin
[22:14:30] [main/DEBUG] [FML/]: All fundamental core mods are successfully located
[22:14:30] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to C:\Users\SEAN_GAMING\Desktop\moarfoods creation\run\.
[22:14:30] [main/DEBUG] [FML/]: Discovering coremods
[22:14:30] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[22:14:30] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[22:14:30] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[22:14:30] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[22:14:30] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[22:14:30] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[22:14:30] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[22:14:30] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[22:14:30] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[22:14:30] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} class transformers
[22:14:30] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer
[22:14:31] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer
[22:14:31] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer
[22:14:31] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer
[22:14:31] [main/DEBUG] [FML/]: Injection complete
[22:14:31] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin}
[22:14:31] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin
[22:14:31] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[22:14:31] [main/DEBUG] [FML/]: Loading deobfuscation resource C:\Users\SEAN_GAMING\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_snapshot\20160312\srgs\srg-mcp.srg with 31798 records
[22:14:34] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing
[22:14:34] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully
[22:14:34] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[22:14:34] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers
[22:14:34] [main/DEBUG] [FML/]: Injection complete
[22:14:34] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin}
[22:14:34] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin
[22:14:34] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully
[22:14:34] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[22:14:34] [main/DEBUG] [FML/]: Loaded 188 rules from AccessTransformer config file forge_at.cfg
[22:14:34] [main/DEBUG] [FML/]: Validating minecraft
[22:14:35] [main/DEBUG] [FML/]: Minecraft validated, launching...
[22:14:35] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[22:14:35] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[22:14:35] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[22:14:35] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[22:14:47] [Client thread/DEBUG] [FML/]: Creating vanilla freeze snapshot
[22:14:47] [Client thread/DEBUG] [FML/]: Vanilla freeze snapshot created
[22:14:51] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0.002s
[22:14:51] [Client thread/INFO] [sTDOUT/]: [net.minecraftforge.fml.client.SplashProgress:start:200]: ---- Minecraft Crash Report ----
// You're mean.

Time: 6/23/16 10:14 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.9
Operating System: Windows 7 (amd64) version 6.1
Java Version: 1.8.0_91, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 831512784 bytes (792 MB) / 1056309248 bytes (1007 MB) up to 1056309248 bytes (1007 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: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 353.62' Renderer: 'GeForce GT 610/PCIe/SSE2'
[22:14:51] [Client thread/INFO] [FML/]: MinecraftForge v12.16.1.1887 Initialized
[22:14:51] [Client thread/INFO] [FML/]: Replaced 232 ore recipes
[22:14:52] [Client thread/DEBUG] [FML/]: File C:\Users\SEAN_GAMING\Desktop\moarfoods creation\run\config\injectedDependencies.json not found. No dependencies injected
[22:14:52] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer]
[22:14:53] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes
[22:14:53] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\SEAN_GAMING\Desktop\moarfoods creation\bin, examining for mod candidates
[22:14:53] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\minecraft\net\minecraftforge\forge\1.9-12.16.1.1887\snapshot\20160312\forgeSrc-1.9-12.16.1.1887.jar, examining for mod candidates
[22:14:53] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.mojang\netty\1.6\4b75825a06139752bd800d9e29c5fd55b8b1b1e4\netty-1.6.jar, examining for mod candidates
[22:14:53] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar, examining for mod candidates
[22:14:53] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar, examining for mod candidates
[22:14:53] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar, examining for mod candidates
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.23.Final\294104aaf1781d6a56a07d561e792c5d0c95f45\netty-all-4.0.23.Final.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.22\afaa8f6df976fcb5520e76ef1d5798c9e6b5c0b2\authlib-1.5.22.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.8.7\b624280016616bb56cc6c30282684322edc7e7eb\realms-1.8.7.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar
[22:14:53] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar, examining for mod candidates
[22:14:53] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.0.3\f9e364ae2a66ce2a543012a4668856e84e5dab74\asm-debug-all-5.0.3.jar, examining for mod candidates
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.typesafe.akka\akka-actor_2.11\2.3.3\ed62e9fc709ca0f2ff1a3220daa8b70a2870078e\akka-actor_2.11-2.3.3.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors-migration_2.11\1.1.0\dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f\scala-actors-migration_2.11-1.1.0.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-library_2.11\1.0.2\e517c53a7e9acd6b1668c5a35eccbaa3bab9aac\scala-continuations-library_2.11-1.0.2.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-plugin_2.11.1\1.0.2\f361a3283452c57fa30c1ee69448995de23c60f7\scala-continuations-plugin_2.11.1-1.0.2.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-xml_2.11\1.0.2\820fbca7e524b530fdadc594c39d49a21ea0337e\scala-xml_2.11-1.0.2.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar
[22:14:53] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar, examining for mod candidates
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.4-nightly-20150209\d51a7c040a721d13efdfbd34f8b257b2df882ad0\lwjgl_util-2.9.4-nightly-20150209.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar
[22:14:53] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar, examining for mod candidates
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar
[22:14:53] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\2.0.1\516c03b21d50a644d538de0f0369c620989cd8f0\jsr305-2.0.1.jar, examining for mod candidates
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0\lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\931074f46c795d2f7b30ed6395df5715cfd7675b\lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar
[22:14:53] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\bcab850f8f487c3f4c4dbabde778bb82bd1a40ed\lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar
[22:14:53] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar, examining for mod candidates
[22:14:53] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar, examining for mod candidates
[22:14:53] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\SEAN_GAMING\.gradle\caches\minecraft\net\minecraftforge\forge\1.9-12.16.1.1887\start, examining for mod candidates
[22:14:53] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully
[22:14:53] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer
[22:14:53] [Client thread/INFO] [FML/]: Searching C:\Users\SEAN_GAMING\Desktop\moarfoods creation\run\mods for mods
[22:14:53] [Client thread/DEBUG] [FML/]: Examining directory bin for potential mods
[22:14:53] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory bin
[22:14:53] [Client thread/TRACE] [FML/]: Recursing into package assets
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package assets.minecraft
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package assets.minecraft.textures
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package assets.minecraft.textures.gui
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package assets.minecraft.textures.gui.container
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package assets.minecraft.textures.gui.container.creative_inventory
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.blockstates
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.lang
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.models
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.models.block
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.models.item
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.textures
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.textures.blocks
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.textures.items
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package block
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package com
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package com.seanomik
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package com.seanomik.moarfoods
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package com.seanomik.moarfoods.init
[22:14:54] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (com.seanomik.moarfoods.MainRegistry) - loading
[22:14:54] [Client thread/TRACE] [moarFoods/]: Parsed dependency info : [] [] []
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package com.seanomik.moarfoods.Proxies
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package com.seanomik.moarfoods.world
[22:14:54] [Client thread/TRACE] [FML/]: Recursing into package MoarFoodsItemsClass
[22:14:54] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.9-12.16.1.1887.jar for potential mods
[22:14:54] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.9-12.16.1.1887.jar appears to be missing an mcmod.info file
[22:14:57] [Client thread/DEBUG] [FML/]: Examining file netty-1.6.jar for potential mods
[22:14:57] [Client thread/DEBUG] [FML/]: The mod container netty-1.6.jar appears to be missing an mcmod.info file
[22:14:57] [Client thread/DEBUG] [FML/]: Examining file oshi-core-1.1.jar for potential mods
[22:14:57] [Client thread/DEBUG] [FML/]: The mod container oshi-core-1.1.jar appears to be missing an mcmod.info file
[22:14:57] [Client thread/DEBUG] [FML/]: Examining file jna-3.4.0.jar for potential mods
[22:14:57] [Client thread/DEBUG] [FML/]: The mod container jna-3.4.0.jar appears to be missing an mcmod.info file
[22:14:57] [Client thread/DEBUG] [FML/]: Examining file platform-3.4.0.jar for potential mods
[22:14:57] [Client thread/DEBUG] [FML/]: The mod container platform-3.4.0.jar appears to be missing an mcmod.info file
[22:14:57] [Client thread/DEBUG] [FML/]: Examining file jline-2.13.jar for potential mods
[22:14:57] [Client thread/DEBUG] [FML/]: The mod container jline-2.13.jar appears to be missing an mcmod.info file
[22:14:58] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods
[22:14:58] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file
[22:14:58] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods
[22:14:58] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file
[22:14:58] [Client thread/DEBUG] [FML/]: Examining file jansi-1.11.jar for potential mods
[22:14:58] [Client thread/DEBUG] [FML/]: The mod container jansi-1.11.jar appears to be missing an mcmod.info file
[22:14:58] [Client thread/DEBUG] [FML/]: Examining file jsr305-2.0.1.jar for potential mods
[22:14:58] [Client thread/DEBUG] [FML/]: The mod container jsr305-2.0.1.jar appears to be missing an mcmod.info file
[22:14:58] [Client thread/DEBUG] [FML/]: Examining file compileDummy.jar for potential mods
[22:14:58] [Client thread/DEBUG] [FML/]: The mod container compileDummy.jar appears to be missing an mcmod.info file
[22:14:58] [Client thread/DEBUG] [FML/]: Examining file providedDummy.jar for potential mods
[22:14:58] [Client thread/DEBUG] [FML/]: The mod container providedDummy.jar appears to be missing an mcmod.info file
[22:14:58] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods
[22:14:58] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start
[22:14:58] [Client thread/TRACE] [FML/]: Recursing into package net
[22:14:58] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge
[22:14:58] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle
[22:14:58] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers
[22:14:58] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load
[22:14:58] [Client thread/TRACE] [FML/]: Received a system property request ''
[22:14:58] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods
[22:14:58] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods
[22:14:58] [Client thread/DEBUG] [moarFoods/]: Enabling mod moarFoods
[22:14:58] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied
[22:14:58] [Client thread/TRACE] [FML/]: All mod requirements are satisfied
[22:14:58] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list
[22:14:58] [Client thread/TRACE] [FML/]: Mod sorting completed successfully
[22:14:58] [Client thread/DEBUG] [FML/]: Mod sorting data
[22:14:58] [Client thread/DEBUG] [FML/]: 	moarFoods(Moar Foods:0.1.0 Early Beta): bin ()
[22:14:58] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp
[22:14:58] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp
[22:14:58] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0.007s
[22:14:58] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML
[22:14:58] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists
[22:14:58] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection
[22:14:58] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (8.0.99.99)
[22:14:58] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, moarFoods] at CLIENT
[22:14:58] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, moarFoods] at SERVER
[22:15:00] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML
[22:15:00] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 1.773s
[22:15:00] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge
[22:15:00] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed
[22:15:00] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection
[22:15:00] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (12.16.1.1887)
[22:15:00] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge
[22:15:00] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0.027s
[22:15:00] [Client thread/TRACE] [moarFoods/moarFoods]: Sending event FMLConstructionEvent to mod moarFoods
[22:15:00] [Client thread/TRACE] [FML/moarFoods]: Mod moarFoods is using network checker : Accepting version 0.1.0 Early Beta
[22:15:00] [Client thread/TRACE] [FML/moarFoods]: Testing mod moarFoods to verify it accepts its own version in a remote connection
[22:15:00] [Client thread/TRACE] [FML/moarFoods]: The mod moarFoods accepts its own version (0.1.0 Early Beta)
[22:15:00] [Client thread/DEBUG] [FML/moarFoods]: Attempting to inject @SidedProxy classes into moarFoods
[22:15:00] [Client thread/TRACE] [moarFoods/moarFoods]: Sent event FMLConstructionEvent to mod moarFoods
[22:15:00] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Moar Foods took 0.053s
[22:15:00] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 1.861s
[22:15:00] [Client thread/DEBUG] [FML/]: Mod signature data
[22:15:00] [Client thread/DEBUG] [FML/]:  	Valid Signatures:
[22:15:00] [Client thread/DEBUG] [FML/]:  	Missing Signatures:
[22:15:00] [Client thread/DEBUG] [FML/]: 		mcp	(Minecraft Coder Pack	9.19)	minecraft.jar
[22:15:00] [Client thread/DEBUG] [FML/]: 		FML	(Forge Mod Loader	8.0.99.99)	forgeSrc-1.9-12.16.1.1887.jar
[22:15:00] [Client thread/DEBUG] [FML/]: 		Forge	(Minecraft Forge	12.16.1.1887)	forgeSrc-1.9-12.16.1.1887.jar
[22:15:00] [Client thread/DEBUG] [FML/]: 		moarFoods	(Moar Foods	0.1.0 Early Beta)	bin
[22:15:00] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.018s
[22:15:00] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.029s
[22:15:00] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.052s
[22:15:00] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Moar Foods took 0.004s
[22:15:00] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0.115s
[22:15:00] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0.116s
[22:15:00] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0.218s
[22:15:00] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[22:15:00] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[22:15:00] [Client thread/DEBUG] [Moar Foods/]: Mod Moar Foods is missing a pack.mcmeta file, substituting a dummy one
[22:15:00] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations
[22:15:00] [Client thread/INFO] [FML/]: Found 418 ObjectHolder annotations
[22:15:00] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations
[22:15:00] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations
[22:15:00] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp
[22:15:00] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp
[22:15:00] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0.002s
[22:15:00] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML
[22:15:00] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML
[22:15:00] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0.076s
[22:15:00] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge
[22:15:00] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0
[22:15:01] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge
[22:15:01] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0.324s
[22:15:01] [Client thread/TRACE] [moarFoods/moarFoods]: Sending event FMLPreInitializationEvent to mod moarFoods
[22:15:01] [Client thread/TRACE] [moarFoods/moarFoods]: Sent event FMLPreInitializationEvent to mod moarFoods
[22:15:01] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Moar Foods took 0.035s
[22:15:01] [Client thread/DEBUG] [FML/]: Bar Finished: PreInitialization took 0.437s
[22:15:01] [Client thread/INFO] [FML/]: Applying holder lookups
[22:15:01] [Client thread/INFO] [FML/]: Holder lookups applied
[22:15:01] [Client thread/INFO] [FML/]: Injecting itemstacks
[22:15:01] [Client thread/INFO] [FML/]: Itemstack injection complete
[22:15:01] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0.000s
[22:15:01] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[22:15:01] [Forge Version Check/DEBUG] [ForgeVersionCheck/Forge]: [Forge] Received version check data:
{
  "homepage": "http://files.minecraftforge.net/maven/net/minecraftforge/forge/",
  "promos": {
    "1.10-latest": "12.18.0.1986",
    "1.5.2-latest": "7.8.1.738",
    "1.5.2-recommended": "7.8.1.737",
    "1.6.1-latest": "8.9.0.775",
    "1.6.2-latest": "9.10.1.871",
    "1.6.2-recommended": "9.10.1.871",
    "1.6.3-latest": "9.11.0.878",
    "1.6.4-latest": "9.11.1.1345",
    "1.6.4-recommended": "9.11.1.1345",
    "1.7.10-latest": "10.13.4.1614",
    "1.7.10-latest-1.7.10": "10.13.2.1343",
    "1.7.10-recommended": "10.13.4.1558",
    "1.7.2-latest": "10.12.2.1147",
    "1.7.2-recommended": "10.12.2.1121",
    "1.8-latest": "11.14.4.1577",
    "1.8-recommended": "11.14.4.1563",
    "1.8.8-latest": "11.15.0.1655",
    "1.8.9-latest": "11.15.1.1902",
    "1.8.9-recommended": "11.15.1.1722",
    "1.9-latest": "12.16.0.1942",
    "1.9-recommended": "12.16.1.1887",
    "1.9.4-latest": "12.17.0.1976",
    "1.9.4-recommended": "12.17.0.1976",
    "latest": "12.17.0.1976",
    "latest-1.7.10": "10.13.2.1343",
    "recommended": "12.17.0.1976"
  }
}
[22:15:01] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Found status: UP_TO_DATE Target: null
[22:15:07] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 5.655s
[22:15:07] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.009s
[22:15:07] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.009s
[22:15:07] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0.013s
[22:15:07] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0.020s
[22:15:07] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - GL Setup took 0.046s
[22:15:07] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Texture Map took 0.019s
[22:15:08] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - B3DLoader took 0.000s
[22:15:08] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - OBJLoader took 0.000s
[22:15:08] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelFluid$FluidLoader took 0.000s
[22:15:08] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ItemLayerModel$Loader took 0.000s
[22:15:08] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - MultiLayerModel$Loader took 0.000s
[22:15:08] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelDynBucket$LoaderDynBucket took 0.000s
[22:15:16] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 8.341s
[22:15:20] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 3.901s
[22:15:20] [Client thread/INFO] [FML/]: Max texture size: 16384
[22:15:20] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0.002s
[22:15:20] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.030s
[22:15:20] [Client thread/DEBUG] [FML/]: Bar Finished: Texture mipmap and upload - missingno took 0.001s
[22:15:24] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: baking took 3.640s
[22:15:24] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelManager took 16.756s
[22:15:24] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Model Manager took 17.196s
[22:15:25] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderItem took 0.010s
[22:15:25] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Item Renderer took 1.279s
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0.000s
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0.000s
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderGlobal took 0.000s
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0.658s
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Finished: Rendering Setup took 19.198s
[22:15:26] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp
[22:15:26] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Coder Pack took 0.000s
[22:15:26] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML
[22:15:26] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Forge Mod Loader took 0.001s
[22:15:26] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge
[22:15:26] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Forge took 0.008s
[22:15:26] [Client thread/TRACE] [moarFoods/moarFoods]: Sending event FMLInitializationEvent to mod moarFoods
[22:15:26] [Client thread/TRACE] [moarFoods/moarFoods]: Sent event FMLInitializationEvent to mod moarFoods
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Moar Foods took 0.005s
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Finished: Initialization took 0.014s
[22:15:26] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp
[22:15:26] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp
[22:15:26] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0.012s
[22:15:26] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML
[22:15:26] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML
[22:15:26] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0.000s
[22:15:26] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge
[22:15:26] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge
[22:15:26] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Forge took 0.001s
[22:15:26] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod moarFoods
[22:15:26] [Client thread/TRACE] [moarFoods/moarFoods]: Sending event IMCEvent to mod moarFoods
[22:15:26] [Client thread/TRACE] [moarFoods/moarFoods]: Sent event IMCEvent to mod moarFoods
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Moar Foods took 0.002s
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Finished: InterModComms$IMC took 0.016s
[22:15:26] [Client thread/INFO] [FML/]: Injecting itemstacks
[22:15:26] [Client thread/INFO] [FML/]: Itemstack injection complete
[22:15:26] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp
[22:15:26] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Coder Pack took 0.000s
[22:15:26] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML
[22:15:26] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Forge Mod Loader took 0.000s
[22:15:26] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge
[22:15:26] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Forge took 0.029s
[22:15:26] [Client thread/TRACE] [moarFoods/moarFoods]: Sending event FMLPostInitializationEvent to mod moarFoods
[22:15:26] [Client thread/TRACE] [moarFoods/moarFoods]: Sent event FMLPostInitializationEvent to mod moarFoods
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Moar Foods took 0.001s
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Finished: PostInitialization took 0.031s
[22:15:26] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp
[22:15:26] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Coder Pack took 0.000s
[22:15:26] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML
[22:15:26] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Forge Mod Loader took 0.000s
[22:15:26] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge
[22:15:26] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking:
[22:15:26] [Client thread/DEBUG] [FML/Forge]:   16: RecipeEntry("Before", UNKNOWN, )
[22:15:26] [Client thread/DEBUG] [FML/Forge]:   15: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless
[22:15:26] [Client thread/DEBUG] [FML/Forge]:   14: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped
[22:15:26] [Client thread/DEBUG] [FML/Forge]:   13: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped
[22:15:26] [Client thread/DEBUG] [FML/Forge]:   12: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped
[22:15:26] [Client thread/DEBUG] [FML/Forge]:   11: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless
[22:15:26] [Client thread/DEBUG] [FML/Forge]:   10: RecipeEntry("minecraft:shield_deco", SHAPELESS, net.minecraft.item.crafting.ShieldRecipes$Decoration) After: minecraft:shapeless
[22:15:26] [Client thread/DEBUG] [FML/Forge]:   9: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless
[22:15:26] [Client thread/DEBUG] [FML/Forge]:   8: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless
[22:15:26] [Client thread/DEBUG] [FML/Forge]:   7: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless
[22:15:26] [Client thread/DEBUG] [FML/Forge]:   6: RecipeEntry("minecraft:tippedarrow", SHAPELESS, net.minecraft.item.crafting.RecipeTippedArrow) After: minecraft:shapeless
[22:15:26] [Client thread/DEBUG] [FML/Forge]:   5: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless
[22:15:26] [Client thread/DEBUG] [FML/Forge]:   4: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless
[22:15:26] [Client thread/DEBUG] [FML/Forge]:   3: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless
[22:15:26] [Client thread/DEBUG] [FML/Forge]:   2: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless
[22:15:26] [Client thread/DEBUG] [FML/Forge]:   1: RecipeEntry("After", UNKNOWN, )
[22:15:26] [Client thread/DEBUG] [FML/Forge]: Sorting recipes
[22:15:26] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Forge took 0.033s
[22:15:26] [Client thread/TRACE] [moarFoods/moarFoods]: Sending event FMLLoadCompleteEvent to mod moarFoods
[22:15:26] [Client thread/TRACE] [moarFoods/moarFoods]: Sent event FMLLoadCompleteEvent to mod moarFoods
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Moar Foods took 0.000s
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Finished: LoadComplete took 0.035s
[22:15:26] [Client thread/DEBUG] [FML/]: Freezing block and item id maps
[22:15:26] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.001s
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.028s
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.017s
[22:15:26] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Moar Foods took 0.002s
[22:15:27] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/blocks.png took 0.000s
[22:15:27] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii.png took 0.054s
[22:15:27] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/lightMap_1 took 0.000s
[22:15:27] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/misc/forcefield.png took 0.005s
[22:15:27] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii_sga.png took 0.012s
[22:15:27] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading Texture Manager took 0.072s
[22:15:37] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 5.378s
[22:15:40] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 3.325s
[22:15:40] [Client thread/INFO] [FML/]: Max texture size: 16384
[22:15:41] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 1.230s
[22:15:41] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.084s
[22:15:42] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.152s
[22:15:43] [Client thread/DEBUG] [FML/]: Bar Finished: Texture mipmap and upload took 1.774s
[22:15:45] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: baking took 2.092s
[22:15:45] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 19.166s
[22:15:45] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 19.170s
[22:15:45] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 19.219s
[22:15:45] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[22:15:46] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[22:15:46] [Client thread/DEBUG] [Moar Foods/]: Mod Moar Foods is missing a pack.mcmeta file, substituting a dummy one
[22:15:46] [Client thread/DEBUG] [FML/]: Bar Finished: Loading took 53.236s
[22:16:06] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerAboutToStartEvent to mod mcp
[22:16:06] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerAboutToStartEvent to mod mcp
[22:16:06] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Coder Pack took 0.004s
[22:16:06] [server thread/TRACE] [FML/FML]: Sending event FMLServerAboutToStartEvent to mod FML
[22:16:06] [server thread/TRACE] [FML/FML]: Sent event FMLServerAboutToStartEvent to mod FML
[22:16:06] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Forge Mod Loader took 0.000s
[22:16:06] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerAboutToStartEvent to mod Forge
[22:16:06] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerAboutToStartEvent to mod Forge
[22:16:06] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Forge took 0.000s
[22:16:06] [server thread/TRACE] [moarFoods/moarFoods]: Sending event FMLServerAboutToStartEvent to mod moarFoods
[22:16:06] [server thread/TRACE] [moarFoods/moarFoods]: Sent event FMLServerAboutToStartEvent to mod moarFoods
[22:16:06] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Moar Foods took 0.013s
[22:16:06] [server thread/DEBUG] [FML/]: Bar Finished: ServerAboutToStart took 0.017s
[22:16:06] [server thread/INFO] [FML/]: Injecting existing block and item data into this server instance
[22:16:06] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:pickle: 4112 (init) -> 4110 (map).
[22:16:06] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:cucumber: 4110 (init) -> 4108 (map).
[22:16:06] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:loafbread: 4098 (init) -> 4099 (map).
[22:16:06] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:knife: 4102 (init) -> 4105 (map).
[22:16:06] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:chicken_sandwich: 4106 (init) -> 4113 (map).
[22:16:06] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:tuna_sandwich: 4105 (init) -> 4106 (map).
[22:16:06] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:dPan: 4100 (init) -> 4101 (map).
[22:16:06] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:pork_sandwich: 4107 (init) -> 4112 (map).
[22:16:06] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:eCan: 4101 (init) -> 4102 (map).
[22:16:06] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:cucumber_plant: 4114 (init) -> 4109 (map).
[22:16:06] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:ePan: 4099 (init) -> 4100 (map).
[22:16:06] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:tuna: 4109 (init) -> 4107 (map).
[22:16:06] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:beef_sandwich: 4108 (init) -> 4114 (map).
[22:16:06] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch moarfoods:strawberry_plant: 4113 (init) -> 4098 (map).
[22:16:06] [server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp
[22:16:06] [server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp
[22:16:06] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.001s
[22:16:06] [server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML
[22:16:06] [server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML
[22:16:06] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0.000s
[22:16:06] [server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge
[22:16:06] [server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge
[22:16:06] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0.001s
[22:16:06] [server thread/TRACE] [moarFoods/moarFoods]: Sending event FMLModIdMappingEvent to mod moarFoods
[22:16:06] [server thread/TRACE] [moarFoods/moarFoods]: Sent event FMLModIdMappingEvent to mod moarFoods
[22:16:06] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Moar Foods took 0.000s
[22:16:06] [server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0.002s
[22:16:06] [server thread/INFO] [FML/]: Applying holder lookups
[22:16:06] [server thread/INFO] [FML/]: Holder lookups applied
[22:16:06] [server thread/DEBUG] [FML/]: Loading persistent fluid defaults from world
[22:16:06] [server thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava
[22:16:06] [server thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water
[22:16:06] [server thread/INFO] [FML/]: Loading dimension 0 (Test) (net.minecraft.server.integrated.IntegratedServer@6bbcd398)
[22:16:08] [server thread/INFO] [FML/]: Loading dimension 1 (Test) (net.minecraft.server.integrated.IntegratedServer@6bbcd398)
[22:16:08] [server thread/INFO] [FML/]: Loading dimension -1 (Test) (net.minecraft.server.integrated.IntegratedServer@6bbcd398)
[22:16:13] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartingEvent to mod mcp
[22:16:13] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartingEvent to mod mcp
[22:16:13] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Coder Pack took 0.001s
[22:16:13] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartingEvent to mod FML
[22:16:13] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartingEvent to mod FML
[22:16:13] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Forge Mod Loader took 0.000s
[22:16:13] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartingEvent to mod Forge
[22:16:13] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartingEvent to mod Forge
[22:16:13] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Forge took 0.009s
[22:16:13] [server thread/TRACE] [moarFoods/moarFoods]: Sending event FMLServerStartingEvent to mod moarFoods
[22:16:13] [server thread/TRACE] [moarFoods/moarFoods]: Sent event FMLServerStartingEvent to mod moarFoods
[22:16:13] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Moar Foods took 0.000s
[22:16:13] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarting took 0.011s
[22:16:13] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartedEvent to mod mcp
[22:16:13] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartedEvent to mod mcp
[22:16:13] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Coder Pack took 0.000s
[22:16:13] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartedEvent to mod FML
[22:16:13] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartedEvent to mod FML
[22:16:13] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Forge Mod Loader took 0.000s
[22:16:13] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartedEvent to mod Forge
[22:16:13] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartedEvent to mod Forge
[22:16:13] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Forge took 0.000s
[22:16:13] [server thread/TRACE] [moarFoods/moarFoods]: Sending event FMLServerStartedEvent to mod moarFoods
[22:16:13] [server thread/TRACE] [moarFoods/moarFoods]: Sent event FMLServerStartedEvent to mod moarFoods
[22:16:13] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Moar Foods took 0.000s
[22:16:13] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarted took 0.001s
[22:16:18] [Netty Local Client IO #0/TRACE] [FML/]: Handshake channel activating
[22:16:18] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: null->FMLHandshakeClientState$1:START
[22:16:18] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: HELLO
[22:16:18] [Netty Server IO #1/TRACE] [FML/]: Handshake channel activating
[22:16:18] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: null->FMLHandshakeServerState$1:START
[22:16:18] [Netty Server IO #1/DEBUG] [FML/]:   Next: HELLO
[22:16:19] [Netty Local Client IO #0/DEBUG] [FML/]: Server FML protocol version 2, 4 byte dimension received 0
[22:16:19] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ServerHello->FMLHandshakeClientState$2:HELLO
[22:16:19] [Netty Local Client IO #0/INFO] [FML/]: Server protocol version 2
[22:16:19] [Netty Local Client IO #0/DEBUG] [FML/]: Received override dimension 0
[22:16:19] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: WAITINGSERVERDATA
[22:16:19] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ClientHello->FMLHandshakeServerState$2:HELLO
[22:16:19] [Netty Server IO #1/INFO] [FML/]: Client protocol version 2
[22:16:19] [Netty Server IO #1/DEBUG] [FML/]:   Next: HELLO
[22:16:19] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ModList:4 mods->FMLHandshakeServerState$2:HELLO
[22:16:19] [Netty Server IO #1/INFO] [FML/]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected] Early Beta
[22:16:19] [Netty Server IO #1/DEBUG] [FML/]:   Next: WAITINGCACK
[22:16:19] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ModList:4 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA
[22:16:19] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: PENDINGCOMPLETE
[22:16:19] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{2}->FMLHandshakeServerState$3:WAITINGCACK
[22:16:19] [Netty Server IO #1/DEBUG] [FML/]:   Next: COMPLETE
[22:16:19] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE
[22:16:19] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: COMPLETE
[22:16:19] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava
[22:16:19] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water
[22:16:19] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{4}->FMLHandshakeServerState$4:COMPLETE
[22:16:19] [Netty Server IO #1/DEBUG] [FML/]:   Next: DONE
[22:16:19] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE
[22:16:19] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: DONE
[22:16:19] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{5}->FMLHandshakeServerState$5:DONE
[22:16:19] [Netty Server IO #1/DEBUG] [FML/]:   Next: DONE
[22:16:19] [Netty Local Client IO #0/INFO] [FML/]: [Netty Local Client IO #0] Client side modded connection established
[22:16:19] [server thread/INFO] [FML/]: [server thread] Server side modded connection established
[22:16:19] [Client thread/DEBUG] [FML/]: Overriding dimension: using 0
[22:16:22] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save Test
[22:16:55] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save Test
[22:16:56] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppingEvent to mod mcp
[22:16:56] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppingEvent to mod mcp
[22:16:56] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Minecraft Coder Pack took 0.001s
[22:16:56] [server thread/TRACE] [FML/FML]: Sending event FMLServerStoppingEvent to mod FML
[22:16:56] [server thread/TRACE] [FML/FML]: Sent event FMLServerStoppingEvent to mod FML
[22:16:56] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Forge Mod Loader took 0.000s
[22:16:56] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppingEvent to mod Forge
[22:16:56] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppingEvent to mod Forge
[22:16:56] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Minecraft Forge took 0.000s
[22:16:56] [server thread/TRACE] [moarFoods/moarFoods]: Sending event FMLServerStoppingEvent to mod moarFoods
[22:16:56] [server thread/TRACE] [moarFoods/moarFoods]: Sent event FMLServerStoppingEvent to mod moarFoods
[22:16:56] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Moar Foods took 0.000s
[22:16:56] [server thread/DEBUG] [FML/]: Bar Finished: ServerStopping took 0.001s
[22:16:56] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save Test
[22:16:56] [server thread/INFO] [FML/]: Unloading dimension 0
[22:16:56] [server thread/INFO] [FML/]: Unloading dimension -1
[22:16:56] [server thread/INFO] [FML/]: Unloading dimension 1
[22:16:56] [server thread/DEBUG] [FML/]: Reverting to frozen data state.
[22:16:56] [server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp
[22:16:56] [server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp
[22:16:56] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.000s
[22:16:56] [server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML
[22:16:56] [server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML
[22:16:56] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0.000s
[22:16:56] [server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge
[22:16:56] [server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge
[22:16:56] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0.001s
[22:16:56] [server thread/TRACE] [moarFoods/moarFoods]: Sending event FMLModIdMappingEvent to mod moarFoods
[22:16:56] [server thread/TRACE] [moarFoods/moarFoods]: Sent event FMLModIdMappingEvent to mod moarFoods
[22:16:56] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Moar Foods took 0.000s
[22:16:56] [server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0.002s
[22:16:56] [server thread/INFO] [FML/]: Applying holder lookups
[22:16:56] [server thread/INFO] [FML/]: Holder lookups applied
[22:16:56] [server thread/DEBUG] [FML/]: Frozen state restored.
[22:16:56] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppedEvent to mod mcp
[22:16:56] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppedEvent to mod mcp
[22:16:56] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Minecraft Coder Pack took 0.000s
[22:16:56] [server thread/TRACE] [FML/FML]: Sending event FMLServerStoppedEvent to mod FML
[22:16:56] [server thread/TRACE] [FML/FML]: Sent event FMLServerStoppedEvent to mod FML
[22:16:56] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Forge Mod Loader took 0.000s
[22:16:56] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppedEvent to mod Forge
[22:16:56] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppedEvent to mod Forge
[22:16:56] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Minecraft Forge took 0.000s
[22:16:56] [server thread/TRACE] [moarFoods/moarFoods]: Sending event FMLServerStoppedEvent to mod moarFoods
[22:16:56] [server thread/TRACE] [moarFoods/moarFoods]: Sent event FMLServerStoppedEvent to mod moarFoods
[22:16:56] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Moar Foods took 0.005s
[22:16:56] [server thread/DEBUG] [FML/]: Bar Finished: ServerStopped took 0.006s

 

Please do keep in mind that I added one other block sense this forum started, the one on the left of the photo is the strawberry plant and the one on the right is a cucumber plant if you need the textures here they are: https://drive.google.com/folderview?id=0B2QfEFWizJ9_eHNKU2pvVVhQYTg&usp=sharing

Developer of "A Realistic Foods Mod"

Link to comment
Share on other sites

If your model has textures with transparency, you need to override

Block#getBlockLayer

to return

CUTOUT

,

CUTOUT_MIPPED

or

TRANSLUCENT

. The Grey Ghost explains when to use each layer here.

 

If your model isn't an opaque cube, you need to override

Block#isOpaqueCube

to return

false

; this tells Minecraft to render the sides of adjacent blocks that would normally be completely covered by an opaque cube.

 

Also override

Block#isFullCube

to return

false

, this is used in various places in the game logic to determine whether the block is a full cube.

 

You could also extend

BlockBush

, which does all of this for you.

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

Link to comment
Share on other sites

If your model has textures with transparency, you need to override

Block#getBlockLayer

to return

CUTOUT

,

CUTOUT_MIPPED

or

TRANSLUCENT

. The Grey Ghost explains when to use each layer here.

 

If your model isn't an opaque cube, you need to override

Block#isOpaqueCube

to return

false

; this tells Minecraft to render the sides of adjacent blocks that would normally be completely covered by an opaque cube.

 

Also override

Block#isFullCube

to return

false

, this is used in various places in the game logic to determine whether the block is a full cube.

 

You could also extend

BlockBush

, which does all of this for you.

 

Would I do this in the Blocks class? If so I can't extend more than 1 thing and I'm already extending BlockBush. Or would I remove the "extends Block" and replace it with "extends BlockBush" I also took a look at that Blog and where would I put "CUTOUT"?

 

Developer of "A Realistic Foods Mod"

Link to comment
Share on other sites

The

Foo#bar

notation refers to an instance method/field of the class

Foo

called

bar

.

Foo.bar

refers to a static method/field.

 

BlockBush

extends

Block

. A class can override methods from any of the classes it inherits from, not just its direct parent.

 

The methods I mentioned are part of the

Block

class, so they can only be overridden by a class that inherits from

Block

or a subclass of it.

 

CUTOUT

is a value of the

BlockRenderLayer

enum (essentially a static field). Like I said in my first post, you can override

Block#getBlockLayer

and then return this value from your override method.

 

If your class extends

BlockBush

it shouldn't be displaying like it does in the screenshots, since

BlockBush

already overrides all of the methods I mentioned. Post your code.

 

It seems like you may need to revise some of the basics of Java like inheritance and enums.

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

Link to comment
Share on other sites

If your model has textures with transparency, you need to override

Block#getBlockLayer

to return

CUTOUT

,

CUTOUT_MIPPED

or

TRANSLUCENT

. The Grey Ghost explains when to use each layer here.

 

If your model isn't an opaque cube, you need to override

Block#isOpaqueCube

to return

false

; this tells Minecraft to render the sides of adjacent blocks that would normally be completely covered by an opaque cube.

 

Also override

Block#isFullCube

to return

false

, this is used in various places in the game logic to determine whether the block is a full cube.

 

You could also extend

BlockBush

, which does all of this for you.

 

Would I do this in the Blocks class? If so I can't extend more than 1 thing and I'm already extending BlockBush. Or would I remove the "extends Block" and replace it with "extends BlockBush" I also took a look at that Blog and where would I put "CUTOUT"?

 

Ok well I looked through the code of a Glass block and I kinda have the plant working but it looks like there is a lighting error with the block:

width=800 height=423https://s32.postimg.org/48swl7ch1/2016_06_24_11_10_27.png[/img]

 

width=800 height=423https://s32.postimg.org/z7nal1kj9/2016_06_24_11_16_21.png[/img]

Here's the new FML log:

[11:13:46] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
[11:13:46] [main/INFO] [FML/]: Forge Mod Loader version 12.16.1.1887 for Minecraft 1.9 loading
[11:13:46] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_91, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre1.8.0_91
[11:13:46] [main/DEBUG] [FML/]: Java classpath at launch is C:\Users\SEAN_GAMING\Desktop\moarfoods creation\bin;C:\Users\SEAN_GAMING\.gradle\caches\minecraft\net\minecraftforge\forge\1.9-12.16.1.1887\snapshot\20160312\forgeSrc-1.9-12.16.1.1887.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.mojang\netty\1.6\4b75825a06139752bd800d9e29c5fd55b8b1b1e4\netty-1.6.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.23.Final\294104aaf1781d6a56a07d561e792c5d0c95f45\netty-all-4.0.23.Final.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.22\afaa8f6df976fcb5520e76ef1d5798c9e6b5c0b2\authlib-1.5.22.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.8.7\b624280016616bb56cc6c30282684322edc7e7eb\realms-1.8.7.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.0.3\f9e364ae2a66ce2a543012a4668856e84e5dab74\asm-debug-all-5.0.3.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.typesafe.akka\akka-actor_2.11\2.3.3\ed62e9fc709ca0f2ff1a3220daa8b70a2870078e\akka-actor_2.11-2.3.3.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors-migration_2.11\1.1.0\dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f\scala-actors-migration_2.11-1.1.0.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-library_2.11\1.0.2\e517c53a7e9acd6b1668c5a35eccbaa3bab9aac\scala-continuations-library_2.11-1.0.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-plugin_2.11.1\1.0.2\f361a3283452c57fa30c1ee69448995de23c60f7\scala-continuations-plugin_2.11.1-1.0.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-xml_2.11\1.0.2\820fbca7e524b530fdadc594c39d49a21ea0337e\scala-xml_2.11-1.0.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.4-nightly-20150209\d51a7c040a721d13efdfbd34f8b257b2df882ad0\lwjgl_util-2.9.4-nightly-20150209.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\2.0.1\516c03b21d50a644d538de0f0369c620989cd8f0\jsr305-2.0.1.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0\lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\931074f46c795d2f7b30ed6395df5715cfd7675b\lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar;C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\bcab850f8f487c3f4c4dbabde778bb82bd1a40ed\lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar;C:\Users\SEAN_GAMING\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar;C:\Users\SEAN_GAMING\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar;C:\Users\SEAN_GAMING\.gradle\caches\minecraft\net\minecraftforge\forge\1.9-12.16.1.1887\start
[11:13:46] [main/DEBUG] [FML/]: Java library path at launch is C:\Program Files\Java\jre1.8.0_91\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/Program Files/Java/jre1.8.0_91/bin/server;C:/Program Files/Java/jre1.8.0_91/bin;C:/Program Files/Java/jre1.8.0_91/lib/amd64;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Skype\Phone\;C:\Windows\system32\config\systemprofile\.dnx\bin;C:\Program Files\Microsoft DNX\Dnvm\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\:\Program Files\Git\cmd;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Common Files\Autodesk Shared\;C:\Program Files (x86)\Autodesk\Backburner\;C:\Program Files\Java\jdk1.8.0_91\bin;C:\Users\SEAN_GAMING\Desktop;;.;C:/Users/SEAN_GAMING/.gradle/caches/minecraft/net/minecraft/natives/1.9
[11:13:46] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[11:13:46] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin
[11:13:46] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers
[11:13:46] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin
[11:13:46] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin
[11:13:46] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin
[11:13:46] [main/DEBUG] [FML/]: All fundamental core mods are successfully located
[11:13:46] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to C:\Users\SEAN_GAMING\Desktop\moarfoods creation\run\.
[11:13:46] [main/DEBUG] [FML/]: Discovering coremods
[11:13:46] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[11:13:46] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[11:13:46] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[11:13:46] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[11:13:46] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[11:13:46] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[11:13:46] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[11:13:46] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[11:13:46] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[11:13:46] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} class transformers
[11:13:46] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer
[11:13:46] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer
[11:13:46] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer
[11:13:46] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer
[11:13:46] [main/DEBUG] [FML/]: Injection complete
[11:13:46] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin}
[11:13:46] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin
[11:13:46] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[11:13:47] [main/DEBUG] [FML/]: Loading deobfuscation resource C:\Users\SEAN_GAMING\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_snapshot\20160312\srgs\srg-mcp.srg with 31798 records
[11:13:49] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing
[11:13:49] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully
[11:13:49] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[11:13:49] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers
[11:13:49] [main/DEBUG] [FML/]: Injection complete
[11:13:49] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin}
[11:13:49] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin
[11:13:49] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully
[11:13:49] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[11:13:49] [main/DEBUG] [FML/]: Loaded 188 rules from AccessTransformer config file forge_at.cfg
[11:13:49] [main/DEBUG] [FML/]: Validating minecraft
[11:13:49] [main/DEBUG] [FML/]: Minecraft validated, launching...
[11:13:49] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[11:13:50] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[11:13:50] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[11:13:50] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[11:13:56] [Client thread/DEBUG] [FML/]: Creating vanilla freeze snapshot
[11:13:56] [Client thread/DEBUG] [FML/]: Vanilla freeze snapshot created
[11:13:57] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0.001s
[11:13:57] [Client thread/INFO] [sTDOUT/]: [net.minecraftforge.fml.client.SplashProgress:start:200]: ---- Minecraft Crash Report ----
// Don't be sad. I'll do better next time, I promise!

Time: 6/24/16 11:13 AM
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.9
Operating System: Windows 7 (amd64) version 6.1
Java Version: 1.8.0_91, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 815702656 bytes (777 MB) / 1056309248 bytes (1007 MB) up to 1056309248 bytes (1007 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: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 353.62' Renderer: 'GeForce GT 610/PCIe/SSE2'
[11:13:57] [Client thread/INFO] [FML/]: MinecraftForge v12.16.1.1887 Initialized
[11:13:57] [Client thread/INFO] [FML/]: Replaced 232 ore recipes
[11:13:57] [Client thread/DEBUG] [FML/]: File C:\Users\SEAN_GAMING\Desktop\moarfoods creation\run\config\injectedDependencies.json not found. No dependencies injected
[11:13:58] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer]
[11:13:58] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes
[11:13:58] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\SEAN_GAMING\Desktop\moarfoods creation\bin, examining for mod candidates
[11:13:58] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\minecraft\net\minecraftforge\forge\1.9-12.16.1.1887\snapshot\20160312\forgeSrc-1.9-12.16.1.1887.jar, examining for mod candidates
[11:13:58] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.mojang\netty\1.6\4b75825a06139752bd800d9e29c5fd55b8b1b1e4\netty-1.6.jar, examining for mod candidates
[11:13:58] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar, examining for mod candidates
[11:13:58] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar, examining for mod candidates
[11:13:58] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar, examining for mod candidates
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.23.Final\294104aaf1781d6a56a07d561e792c5d0c95f45\netty-all-4.0.23.Final.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.22\afaa8f6df976fcb5520e76ef1d5798c9e6b5c0b2\authlib-1.5.22.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.8.7\b624280016616bb56cc6c30282684322edc7e7eb\realms-1.8.7.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar
[11:13:58] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar, examining for mod candidates
[11:13:58] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.0.3\f9e364ae2a66ce2a543012a4668856e84e5dab74\asm-debug-all-5.0.3.jar, examining for mod candidates
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.typesafe.akka\akka-actor_2.11\2.3.3\ed62e9fc709ca0f2ff1a3220daa8b70a2870078e\akka-actor_2.11-2.3.3.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors-migration_2.11\1.1.0\dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f\scala-actors-migration_2.11-1.1.0.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-library_2.11\1.0.2\e517c53a7e9acd6b1668c5a35eccbaa3bab9aac\scala-continuations-library_2.11-1.0.2.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-plugin_2.11.1\1.0.2\f361a3283452c57fa30c1ee69448995de23c60f7\scala-continuations-plugin_2.11.1-1.0.2.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-xml_2.11\1.0.2\820fbca7e524b530fdadc594c39d49a21ea0337e\scala-xml_2.11-1.0.2.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar
[11:13:58] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar, examining for mod candidates
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.4-nightly-20150209\d51a7c040a721d13efdfbd34f8b257b2df882ad0\lwjgl_util-2.9.4-nightly-20150209.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar
[11:13:58] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar, examining for mod candidates
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar
[11:13:58] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\2.0.1\516c03b21d50a644d538de0f0369c620989cd8f0\jsr305-2.0.1.jar, examining for mod candidates
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0\lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\931074f46c795d2f7b30ed6395df5715cfd7675b\lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar
[11:13:58] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\SEAN_GAMING\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\bcab850f8f487c3f4c4dbabde778bb82bd1a40ed\lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar
[11:13:58] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar, examining for mod candidates
[11:13:58] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\SEAN_GAMING\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar, examining for mod candidates
[11:13:58] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\SEAN_GAMING\.gradle\caches\minecraft\net\minecraftforge\forge\1.9-12.16.1.1887\start, examining for mod candidates
[11:13:58] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully
[11:13:58] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer
[11:13:58] [Client thread/INFO] [FML/]: Searching C:\Users\SEAN_GAMING\Desktop\moarfoods creation\run\mods for mods
[11:13:58] [Client thread/DEBUG] [FML/]: Examining directory bin for potential mods
[11:13:58] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory bin
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package assets
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package assets.minecraft
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package assets.minecraft.textures
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package assets.minecraft.textures.gui
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package assets.minecraft.textures.gui.container
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package assets.minecraft.textures.gui.container.creative_inventory
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.blockstates
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.lang
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.models
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.models.block
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.models.item
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.textures
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.textures.blocks
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package assets.moarfoods.textures.items
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package block
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package com
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package com.seanomik
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package com.seanomik.moarfoods
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package com.seanomik.moarfoods.init
[11:13:58] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (com.seanomik.moarfoods.MainRegistry) - loading
[11:13:58] [Client thread/TRACE] [moarFoods/]: Parsed dependency info : [] [] []
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package com.seanomik.moarfoods.Proxies
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package com.seanomik.moarfoods.world
[11:13:58] [Client thread/TRACE] [FML/]: Recursing into package MoarFoodsItemsClass
[11:13:58] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.9-12.16.1.1887.jar for potential mods
[11:13:58] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.9-12.16.1.1887.jar appears to be missing an mcmod.info file
[11:14:00] [Client thread/DEBUG] [FML/]: Examining file netty-1.6.jar for potential mods
[11:14:00] [Client thread/DEBUG] [FML/]: The mod container netty-1.6.jar appears to be missing an mcmod.info file
[11:14:00] [Client thread/DEBUG] [FML/]: Examining file oshi-core-1.1.jar for potential mods
[11:14:00] [Client thread/DEBUG] [FML/]: The mod container oshi-core-1.1.jar appears to be missing an mcmod.info file
[11:14:00] [Client thread/DEBUG] [FML/]: Examining file jna-3.4.0.jar for potential mods
[11:14:00] [Client thread/DEBUG] [FML/]: The mod container jna-3.4.0.jar appears to be missing an mcmod.info file
[11:14:00] [Client thread/DEBUG] [FML/]: Examining file platform-3.4.0.jar for potential mods
[11:14:00] [Client thread/DEBUG] [FML/]: The mod container platform-3.4.0.jar appears to be missing an mcmod.info file
[11:14:01] [Client thread/DEBUG] [FML/]: Examining file jline-2.13.jar for potential mods
[11:14:01] [Client thread/DEBUG] [FML/]: The mod container jline-2.13.jar appears to be missing an mcmod.info file
[11:14:01] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods
[11:14:01] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file
[11:14:01] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods
[11:14:01] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file
[11:14:01] [Client thread/DEBUG] [FML/]: Examining file jansi-1.11.jar for potential mods
[11:14:01] [Client thread/DEBUG] [FML/]: The mod container jansi-1.11.jar appears to be missing an mcmod.info file
[11:14:01] [Client thread/DEBUG] [FML/]: Examining file jsr305-2.0.1.jar for potential mods
[11:14:01] [Client thread/DEBUG] [FML/]: The mod container jsr305-2.0.1.jar appears to be missing an mcmod.info file
[11:14:01] [Client thread/DEBUG] [FML/]: Examining file compileDummy.jar for potential mods
[11:14:01] [Client thread/DEBUG] [FML/]: The mod container compileDummy.jar appears to be missing an mcmod.info file
[11:14:01] [Client thread/DEBUG] [FML/]: Examining file providedDummy.jar for potential mods
[11:14:01] [Client thread/DEBUG] [FML/]: The mod container providedDummy.jar appears to be missing an mcmod.info file
[11:14:01] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods
[11:14:01] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start
[11:14:01] [Client thread/TRACE] [FML/]: Recursing into package net
[11:14:01] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge
[11:14:01] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle
[11:14:01] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers
[11:14:01] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load
[11:14:01] [Client thread/TRACE] [FML/]: Received a system property request ''
[11:14:01] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods
[11:14:01] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods
[11:14:01] [Client thread/DEBUG] [moarFoods/]: Enabling mod moarFoods
[11:14:01] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied
[11:14:01] [Client thread/TRACE] [FML/]: All mod requirements are satisfied
[11:14:01] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list
[11:14:01] [Client thread/TRACE] [FML/]: Mod sorting completed successfully
[11:14:01] [Client thread/DEBUG] [FML/]: Mod sorting data
[11:14:01] [Client thread/DEBUG] [FML/]: 	moarFoods(Moar Foods:0.1.0 Early Beta): bin ()
[11:14:01] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp
[11:14:01] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp
[11:14:01] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0.003s
[11:14:01] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML
[11:14:01] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists
[11:14:01] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection
[11:14:01] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (8.0.99.99)
[11:14:01] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, moarFoods] at CLIENT
[11:14:01] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, moarFoods] at SERVER
[11:14:02] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML
[11:14:02] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 0.866s
[11:14:02] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge
[11:14:02] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed
[11:14:02] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection
[11:14:02] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (12.16.1.1887)
[11:14:02] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge
[11:14:02] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0.018s
[11:14:02] [Client thread/TRACE] [moarFoods/moarFoods]: Sending event FMLConstructionEvent to mod moarFoods
[11:14:02] [Client thread/TRACE] [FML/moarFoods]: Mod moarFoods is using network checker : Accepting version 0.1.0 Early Beta
[11:14:02] [Client thread/TRACE] [FML/moarFoods]: Testing mod moarFoods to verify it accepts its own version in a remote connection
[11:14:02] [Client thread/TRACE] [FML/moarFoods]: The mod moarFoods accepts its own version (0.1.0 Early Beta)
[11:14:02] [Client thread/DEBUG] [FML/moarFoods]: Attempting to inject @SidedProxy classes into moarFoods
[11:14:02] [Client thread/TRACE] [moarFoods/moarFoods]: Sent event FMLConstructionEvent to mod moarFoods
[11:14:02] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Moar Foods took 0.026s
[11:14:02] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 0.914s
[11:14:02] [Client thread/DEBUG] [FML/]: Mod signature data
[11:14:02] [Client thread/DEBUG] [FML/]:  	Valid Signatures:
[11:14:02] [Client thread/DEBUG] [FML/]:  	Missing Signatures:
[11:14:02] [Client thread/DEBUG] [FML/]: 		mcp	(Minecraft Coder Pack	9.19)	minecraft.jar
[11:14:02] [Client thread/DEBUG] [FML/]: 		FML	(Forge Mod Loader	8.0.99.99)	forgeSrc-1.9-12.16.1.1887.jar
[11:14:02] [Client thread/DEBUG] [FML/]: 		Forge	(Minecraft Forge	12.16.1.1887)	forgeSrc-1.9-12.16.1.1887.jar
[11:14:02] [Client thread/DEBUG] [FML/]: 		moarFoods	(Moar Foods	0.1.0 Early Beta)	bin
[11:14:02] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.008s
[11:14:02] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.017s
[11:14:02] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.017s
[11:14:02] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Moar Foods took 0.004s
[11:14:02] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0.049s
[11:14:02] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0.050s
[11:14:02] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0.096s
[11:14:02] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[11:14:02] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[11:14:02] [Client thread/DEBUG] [Moar Foods/]: Mod Moar Foods is missing a pack.mcmeta file, substituting a dummy one
[11:14:02] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations
[11:14:02] [Client thread/INFO] [FML/]: Found 418 ObjectHolder annotations
[11:14:02] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations
[11:14:02] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations
[11:14:02] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp
[11:14:02] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp
[11:14:02] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0.001s
[11:14:02] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML
[11:14:02] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML
[11:14:02] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0.037s
[11:14:02] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge
[11:14:02] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0
[11:14:02] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge
[11:14:02] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0.092s
[11:14:02] [Client thread/TRACE] [moarFoods/moarFoods]: Sending event FMLPreInitializationEvent to mod moarFoods
[11:14:02] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[11:14:02] [Client thread/TRACE] [moarFoods/moarFoods]: Sent event FMLPreInitializationEvent to mod moarFoods
[11:14:02] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Moar Foods took 0.021s
[11:14:02] [Client thread/DEBUG] [FML/]: Bar Finished: PreInitialization took 0.150s
[11:14:02] [Client thread/INFO] [FML/]: Applying holder lookups
[11:14:02] [Client thread/INFO] [FML/]: Holder lookups applied
[11:14:02] [Client thread/INFO] [FML/]: Injecting itemstacks
[11:14:02] [Client thread/INFO] [FML/]: Itemstack injection complete
[11:14:02] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0.000s
[11:14:03] [Forge Version Check/DEBUG] [ForgeVersionCheck/Forge]: [Forge] Received version check data:
{
  "homepage": "http://files.minecraftforge.net/maven/net/minecraftforge/forge/",
  "promos": {
    "1.10-latest": "12.18.0.1986",
    "1.5.2-latest": "7.8.1.738",
    "1.5.2-recommended": "7.8.1.737",
    "1.6.1-latest": "8.9.0.775",
    "1.6.2-latest": "9.10.1.871",
    "1.6.2-recommended": "9.10.1.871",
    "1.6.3-latest": "9.11.0.878",
    "1.6.4-latest": "9.11.1.1345",
    "1.6.4-recommended": "9.11.1.1345",
    "1.7.10-latest": "10.13.4.1614",
    "1.7.10-latest-1.7.10": "10.13.2.1343",
    "1.7.10-recommended": "10.13.4.1558",
    "1.7.2-latest": "10.12.2.1147",
    "1.7.2-recommended": "10.12.2.1121",
    "1.8-latest": "11.14.4.1577",
    "1.8-recommended": "11.14.4.1563",
    "1.8.8-latest": "11.15.0.1655",
    "1.8.9-latest": "11.15.1.1902",
    "1.8.9-recommended": "11.15.1.1722",
    "1.9-latest": "12.16.0.1942",
    "1.9-recommended": "12.16.1.1887",
    "1.9.4-latest": "12.17.0.1987",
    "1.9.4-recommended": "12.17.0.1976",
    "latest": "12.17.0.1987",
    "latest-1.7.10": "10.13.2.1343",
    "recommended": "12.17.0.1976"
  }
}
[11:14:03] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Found status: UP_TO_DATE Target: null
[11:14:05] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 2.978s
[11:14:06] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.009s
[11:14:06] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.006s
[11:14:06] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0.035s
[11:14:06] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0.016s
[11:14:06] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - GL Setup took 0.004s
[11:14:06] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Texture Map took 0.017s
[11:14:06] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - B3DLoader took 0.000s
[11:14:06] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - OBJLoader took 0.000s
[11:14:06] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelFluid$FluidLoader took 0.000s
[11:14:06] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ItemLayerModel$Loader took 0.000s
[11:14:06] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - MultiLayerModel$Loader took 0.000s
[11:14:06] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelDynBucket$LoaderDynBucket took 0.000s
[11:14:10] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 3.868s
[11:14:12] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 1.860s
[11:14:12] [Client thread/INFO] [FML/]: Max texture size: 16384
[11:14:12] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0.003s
[11:14:12] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.004s
[11:14:12] [Client thread/DEBUG] [FML/]: Bar Finished: Texture mipmap and upload - missingno took 0.001s
[11:14:14] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: baking took 2.095s
[11:14:14] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelManager took 8.400s
[11:14:14] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Model Manager took 8.682s
[11:14:15] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderItem took 0.007s
[11:14:15] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Item Renderer took 0.888s
[11:14:15] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0.000s
[11:14:15] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0.000s
[11:14:15] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderGlobal took 0.000s
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0.393s
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Finished: Rendering Setup took 9.983s
[11:14:16] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp
[11:14:16] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Coder Pack took 0.003s
[11:14:16] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML
[11:14:16] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Forge Mod Loader took 0.001s
[11:14:16] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge
[11:14:16] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Forge took 0.004s
[11:14:16] [Client thread/TRACE] [moarFoods/moarFoods]: Sending event FMLInitializationEvent to mod moarFoods
[11:14:16] [Client thread/TRACE] [moarFoods/moarFoods]: Sent event FMLInitializationEvent to mod moarFoods
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Moar Foods took 0.001s
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Finished: Initialization took 0.008s
[11:14:16] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp
[11:14:16] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp
[11:14:16] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0.090s
[11:14:16] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML
[11:14:16] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML
[11:14:16] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0.002s
[11:14:16] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge
[11:14:16] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge
[11:14:16] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Forge took 0.001s
[11:14:16] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod moarFoods
[11:14:16] [Client thread/TRACE] [moarFoods/moarFoods]: Sending event IMCEvent to mod moarFoods
[11:14:16] [Client thread/TRACE] [moarFoods/moarFoods]: Sent event IMCEvent to mod moarFoods
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Moar Foods took 0.002s
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Finished: InterModComms$IMC took 0.094s
[11:14:16] [Client thread/INFO] [FML/]: Injecting itemstacks
[11:14:16] [Client thread/INFO] [FML/]: Itemstack injection complete
[11:14:16] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp
[11:14:16] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Coder Pack took 0.000s
[11:14:16] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML
[11:14:16] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Forge Mod Loader took 0.000s
[11:14:16] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge
[11:14:16] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Forge took 0.020s
[11:14:16] [Client thread/TRACE] [moarFoods/moarFoods]: Sending event FMLPostInitializationEvent to mod moarFoods
[11:14:16] [Client thread/TRACE] [moarFoods/moarFoods]: Sent event FMLPostInitializationEvent to mod moarFoods
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Moar Foods took 0.001s
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Finished: PostInitialization took 0.022s
[11:14:16] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp
[11:14:16] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Coder Pack took 0.001s
[11:14:16] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML
[11:14:16] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Forge Mod Loader took 0.000s
[11:14:16] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge
[11:14:16] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking:
[11:14:16] [Client thread/DEBUG] [FML/Forge]:   16: RecipeEntry("Before", UNKNOWN, )
[11:14:16] [Client thread/DEBUG] [FML/Forge]:   15: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless
[11:14:16] [Client thread/DEBUG] [FML/Forge]:   14: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped
[11:14:16] [Client thread/DEBUG] [FML/Forge]:   13: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped
[11:14:16] [Client thread/DEBUG] [FML/Forge]:   12: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped
[11:14:16] [Client thread/DEBUG] [FML/Forge]:   11: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless
[11:14:16] [Client thread/DEBUG] [FML/Forge]:   10: RecipeEntry("minecraft:shield_deco", SHAPELESS, net.minecraft.item.crafting.ShieldRecipes$Decoration) After: minecraft:shapeless
[11:14:16] [Client thread/DEBUG] [FML/Forge]:   9: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless
[11:14:16] [Client thread/DEBUG] [FML/Forge]:   8: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless
[11:14:16] [Client thread/DEBUG] [FML/Forge]:   7: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless
[11:14:16] [Client thread/DEBUG] [FML/Forge]:   6: RecipeEntry("minecraft:tippedarrow", SHAPELESS, net.minecraft.item.crafting.RecipeTippedArrow) After: minecraft:shapeless
[11:14:16] [Client thread/DEBUG] [FML/Forge]:   5: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless
[11:14:16] [Client thread/DEBUG] [FML/Forge]:   4: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless
[11:14:16] [Client thread/DEBUG] [FML/Forge]:   3: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless
[11:14:16] [Client thread/DEBUG] [FML/Forge]:   2: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless
[11:14:16] [Client thread/DEBUG] [FML/Forge]:   1: RecipeEntry("After", UNKNOWN, )
[11:14:16] [Client thread/DEBUG] [FML/Forge]: Sorting recipes
[11:14:16] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Forge took 0.023s
[11:14:16] [Client thread/TRACE] [moarFoods/moarFoods]: Sending event FMLLoadCompleteEvent to mod moarFoods
[11:14:16] [Client thread/TRACE] [moarFoods/moarFoods]: Sent event FMLLoadCompleteEvent to mod moarFoods
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Moar Foods took 0.001s
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Finished: LoadComplete took 0.024s
[11:14:16] [Client thread/DEBUG] [FML/]: Freezing block and item id maps
[11:14:16] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.000s
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.018s
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.016s
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Moar Foods took 0.002s
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/blocks.png took 0.000s
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii.png took 0.008s
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/lightMap_1 took 0.000s
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/misc/forcefield.png took 0.041s
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii_sga.png took 0.008s
[11:14:16] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading Texture Manager took 0.058s
[11:14:22] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 3.240s
[11:14:24] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 1.639s
[11:14:24] [Client thread/INFO] [FML/]: Max texture size: 16384
[11:14:24] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.702s
[11:14:25] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.100s
[11:14:25] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.105s
[11:14:26] [Client thread/DEBUG] [FML/]: Bar Finished: Texture mipmap and upload took 1.085s
[11:14:27] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: baking took 1.185s
[11:14:27] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 11.088s
[11:14:27] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 11.093s
[11:14:27] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 11.129s
[11:14:27] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[11:14:27] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[11:14:27] [Client thread/DEBUG] [Moar Foods/]: Mod Moar Foods is missing a pack.mcmeta file, substituting a dummy one
[11:14:27] [Client thread/DEBUG] [FML/]: Bar Finished: Loading took 29.543s

Developer of "A Realistic Foods Mod"

Link to comment
Share on other sites

Post your code.

 

package block;

import java.util.Random;

import com.seanomik.moarfoods.MainRegistry;
import com.seanomik.moarfoods.Strings;
import com.seanomik.moarfoods.init.MoarFoodsItems; // Moar Foods Items Class

import net.minecraft.block.Block;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
import net.minecraft.item.Item;
import net.minecraft.util.BlockRenderLayer;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;



public class BlockStrawberryPlant extends Block {


public BlockStrawberryPlant(Material materialIn) {
	super(materialIn);
	this.setUnlocalizedName("strawberry_plant");
	this.setCreativeTab(MainRegistry.moarfoodsTab); //Leave uncommented for testing
	this.setHardness(0.05f);
	//this.setLightOpacity(16); Sets if light can go through the block
	this.setStepSound(SoundType.PLANT);
	this.getRenderType();
}
public int getRenderType() {
	  return 6;
}
//What item will this block drop?
    public Item getItemDropped(IBlockState state, Random rand, int fortune) {
        return MoarFoodsItems.strawberry;
    }
    protected boolean canSilkHarvest() {
        return true;
    }
    public boolean canUseBonemeal(World worldIn, Random rand, BlockPos pos, IBlockState state)
    {
        return true;
    }
    //Rendering
    public boolean isOpaqueCube(){
    	return false;
    }
    @SideOnly(Side.CLIENT)
    public BlockRenderLayer getBlockLayer() {
        return BlockRenderLayer.CUTOUT;
    }
    public boolean isFullCube(IBlockState state) {
        return false;
    }

/*   What color will this block show up as on the map?
    public MapColor getMapColor(IBlockState state) {
        return MapColor.sandColor;  
    } */
}

Developer of "A Realistic Foods Mod"

Link to comment
Share on other sites

This is why you should always annotate override methods with

@Override

: Several of the methods you're trying to override have a different signature to your methods, so you're not actually overriding them. If you annotate a method with

@Override

, you'll get a compilation error if it doesn't override a super method. Your IDE should also be able to auto-generate override methods for you.

 

The call to

getRenderType

in your constructor is pointless, the method does nothing but return a value and you never use that value.

 

Once you understand what you've done wrong with the override methods, I'd recommend extending

BlockBush

instead of

Block

. Keep in mind that there's no reason to override a method if your method will do exactly the same thing as the super method.

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

Link to comment
Share on other sites

This is why you should always annotate override methods with

@Override

: Several of the methods you're trying to override have a different signature to your methods, so you're not actually overriding them. If you annotate a method with

@Override

, you'll get a compilation error if it doesn't override a super method. Your IDE should also be able to auto-generate override methods for you.

 

The call to

getRenderType

in your constructor is pointless, the method does nothing but return a value and you never use that value.

 

Once you understand what you've done wrong with the override methods, I'd recommend extending

BlockBush

instead of

Block

. Keep in mind that there's no reason to override a method if your method will do exactly the same thing as the super method.

 

Well now I have errors in the script when I set it to extend BlockBush

Description	Resource	Path	Location	Type
BlockBush cannot be resolved to a type	BlockStrawberryPlant.java	/MDKExample/src/main/java/block	line 22	Java Problem
The method isOpaqueCube() of type BlockCucumberPlant must override or implement a supertype method	BlockCucumberPlant.java	/MDKExample/src/main/java/block	line 40	Java Problem
The method setCreativeTab(Tab) is undefined for the type BlockStrawberryPlant	BlockStrawberryPlant.java	/MDKExample/src/main/java/block	line 28	Java Problem
The method setHardness(float) is undefined for the type BlockStrawberryPlant	BlockStrawberryPlant.java	/MDKExample/src/main/java/block	line 29	Java Problem
The method setStepSound(SoundType) is undefined for the type BlockStrawberryPlant	BlockStrawberryPlant.java	/MDKExample/src/main/java/block	line 31	Java Problem
The method setUnlocalizedName(String) is undefined for the type BlockStrawberryPlant	BlockStrawberryPlant.java	/MDKExample/src/main/java/block	line 27	Java Problem
Type mismatch: cannot convert from BlockStrawberryPlant to Block	MoarFoodsBlocks.java	/MDKExample/src/main/java/com/seanomik/moarfoods/init	line 23	Java Problem

 

Here's the new code for the script:

]

package block;

import java.util.Random;

import com.seanomik.moarfoods.MainRegistry;
import com.seanomik.moarfoods.Strings;
import com.seanomik.moarfoods.init.MoarFoodsItems; // Moar Foods Items Class

import net.minecraft.block.Block;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
import net.minecraft.item.Item;
import net.minecraft.util.BlockRenderLayer;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;



public class BlockStrawberryPlant extends BlockBush {


public BlockStrawberryPlant(Material materialIn) {
	super(materialIn);
	this.setUnlocalizedName("strawberry_plant");
	this.setCreativeTab(MainRegistry.moarfoodsTab); //Leave uncommented for testing
	this.setHardness(0.05f);
	//this.setLightOpacity(16); Sets if light can go through the block
	this.setStepSound(SoundType.PLANT);
}
//What item will this block drop?
    public Item getItemDropped(IBlockState state, Random rand, int fortune) {
        return MoarFoodsItems.strawberry;
    }
    protected boolean canSilkHarvest() {
        return true;
    }
    public boolean canUseBonemeal(World worldIn, Random rand, BlockPos pos, IBlockState state) {
        return true;
    }
    //Rendering
    public boolean isOpaqueCube(){
    	return false;
    }
    @SideOnly(Side.CLIENT)
    public BlockRenderLayer getBlockLayer() {
        return BlockRenderLayer.CUTOUT;
    }
    public boolean isFullCube(IBlockState state) {
        return false;
    }

/*   What color will this block show up as on the map?
    public MapColor getMapColor(IBlockState state) {
        return MapColor.sandColor;  
    } */
}

 

 

Oh wait, I forgot to import BlockBush

Developer of "A Realistic Foods Mod"

Link to comment
Share on other sites

package block;

 

Your package name should include your mod name and your name.

 

e.g. I use

package com.draco18s.artifacts

for one of my mods (modID is "artifacts").  Although I technically shouldn't use "com.draco18s" unless I actually own "draco18s.com"

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Oklahoma Nation Cowboys at Youngstown Country PenguinsYoungstown, Ohio; Wednesday, 7 p.m. EDTBOTTOM LINE: The Youngstown Region Penguins facial area the Oklahoma Country Cowboys within the Countrywide Invitation Penguins include absent 15-5 versus Horizon League rivals, with a 9-4 history within non-meeting participate in. Youngstown Region is 1-2 inside online games resolved as a result of considerably less than 4 facts. The Cowboys are 8-10 in just Massive 12 engage in. Oklahoma Region ranks 9th within just the Large 12 taking pictures 31.1% towards 3-stage wide PERFORMERS: Dwayne Cohill is averaging 17.8 details and 4.8 helps for the Penguins. Adrian Nelson is averaging 17.1 info higher than the remaining 10 game titles for Youngstown Thompson is averaging 11.7 details for the Cowboys. Caleb Asberry is averaging 13.1 facts about the very last 10 video games for Oklahoma last 10 Video games: Penguins: 7-3 Zeke Zaragoza Jersey, averaging 79.7 info, 33.4 rebounds, 14.8 helps, 5.3 steals and 2.7 blocks for each video game despite the fact that capturing 48.1% versus the marketplace. Their rivals incorporate averaged 72.4 details for every : 4-6, averaging 66.4 specifics, 33.1 rebounds, 11.1 helps Jake Henry Jersey, 4.9 steals and 3.6 blocks for each sport even though taking pictures 41.3% towards the sector. Their rivals consist of averaged 72.0 info. The made this tale making use of technological innovation delivered by means of Information and facts Skrive and info against Sportradar. Cowboys Shop
    • Oklahoma Nation Cowboys at Youngstown Country PenguinsYoungstown, Ohio; Wednesday, 7 p.m. EDTBOTTOM LINE: The Youngstown Region Penguins facial area the Oklahoma Country Cowboys within the Countrywide Invitation Penguins include absent 15-5 versus Horizon League rivals, with a 9-4 history within non-meeting participate in. Youngstown Region is 1-2 inside online games resolved as a result of considerably less than 4 facts. The Cowboys are 8-10 in just Massive 12 engage in. Oklahoma Region ranks 9th within just the Large 12 taking pictures 31.1% towards 3-stage wide PERFORMERS: Dwayne Cohill is averaging 17.8 details and 4.8 helps for the Penguins. Adrian Nelson is averaging 17.1 info higher than the remaining 10 game titles for Youngstown Thompson is averaging 11.7 details for the Cowboys. Caleb Asberry is averaging 13.1 facts about the very last 10 video games for Oklahoma last 10 Video games: Penguins: 7-3 Zeke Zaragoza Jersey, averaging 79.7 info, 33.4 rebounds, 14.8 helps, 5.3 steals and 2.7 blocks for each video game despite the fact that capturing 48.1% versus the marketplace. Their rivals incorporate averaged 72.4 details for every : 4-6, averaging 66.4 specifics, 33.1 rebounds, 11.1 helps Jake Henry Jersey, 4.9 steals and 3.6 blocks for each sport even though taking pictures 41.3% towards the sector. Their rivals consist of averaged 72.0 info. The made this tale making use of technological innovation delivered by means of Information and facts Skrive and info against Sportradar. Cowboys Shop
    • DUTA89 agen slot online terbaik dan sering memberikan kemenangan kepada setiap member yang deposit diatas 50k dengan tidak klaim bonus sepeser pun.   Link daftar : https://heylink.me/DUTA89OFFICIAL/  
    • Hello All! Started a MC Eternal 1.6.2.2 server on Shockbyte hosting. The only other mod I added was betterfarmland v0.0.8BETA. Server is 16GB and Shockbyte wont tell me how many CPU cores i have.  We are having problems now when players log in it seems to crash the server. At other times it seems fine and we can have 3 people playing for hours at a time. Usually always when it does crash it is when someone logs in. Crash Reports Below. To the person who can post the fix I will reward $100 via Paypal.   ---- Minecraft Crash Report ---- // This is a token for 1 free hug. Redeem at your nearest Mojangsta: [~~HUG~~] Time: 2024-09-19 21:04:58 UTC Description: Exception in server tick loop java.lang.StackOverflowError     at net.minecraft.advancements.PlayerAdvancements.hasCompletedChildrenOrSelf(PlayerAdvancements.java:451)     at net.minecraft.advancements.PlayerAdvancements.shouldBeVisible(PlayerAdvancements.java:419)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:385)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:406)     at net.minecraft.advancements.PlayerAdvancements.ensureVisibility(PlayerAdvancements.java:411)     at net.minecraft.advancements.P  
    • It worked the first time but none of my friends and now me either could enter the server. internal exception: io.netty.handler.codec.DecoderException Unknown modifier tconstruct:soulbound
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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