Jump to content

Recommended Posts

Posted

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"

Posted

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

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.

Posted

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.

Posted
  On 6/21/2016 at 5:16 AM, Choonster said:

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 : FML@8.0.99.99,Forge@12.16.1.1887,mcp@9.19,moarFoods@0.1.0 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"

Posted
  On 6/21/2016 at 8:25 AM, SeqSEE said:

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"

Posted

Please post the new FML log.

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.

Posted

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.

Posted
  On 6/22/2016 at 3:03 AM, Choonster said:

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 : FML@8.0.99.99,Forge@12.16.1.1887,mcp@9.19,moarFoods@0.1.0 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"

Posted
  On 6/22/2016 at 11:12 PM, jeffryfisher said:

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

No difference I changed it back to before

Developer of "A Realistic Foods Mod"

Posted

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.

Posted
  On 6/23/2016 at 2:17 PM, Choonster said:

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"

Posted
  On 6/24/2016 at 4:04 AM, SeanOMik said:

  Quote

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 : FML@8.0.99.99,Forge@12.16.1.1887,mcp@9.19,moarFoods@0.1.0 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"

Posted

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.

Posted
  On 6/24/2016 at 6:38 AM, Choonster said:

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"

Posted

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.

Posted
  On 6/24/2016 at 4:35 PM, SeanOMik said:

  Quote

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"

Posted
  On 6/24/2016 at 5:32 PM, Choonster said:

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"

Posted

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.

Posted
  On 6/24/2016 at 6:42 PM, Choonster said:

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"

Posted
  Quote
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.

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

    • Update your AMD/ATI drivers - get the drivers from their website - do not update via system  
    • Ive made a 1.21.5 modpack with the curseforge launcher and set up a small server for my friends and I. The server works, the modpack works for everyone else but i cant start minecraft, no matter what ive done I get crash code 1. I have updated both graphics and cpu drivers, i have reinstalled java and minecraft. i can play modded 1.20.x but i cant start any 1.21.x modpacks. Here is the log. If you are a wizard that can somehow sift through all this and know whats wrong i would love to hear from you. for the plebians who might have the same problem as me, stay posted in case gandalf strolls by ¯\_(ツ)_/¯ # A fatal error has been detected by the Java Runtime Environment: # #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ff8b3476280, pid=25160, tid=26600 # # JRE version: OpenJDK Runtime Environment Microsoft-11369940 (21.0.7+6) (build 21.0.7+6-LTS) # Java VM: OpenJDK 64-Bit Server VM Microsoft-11369940 (21.0.7+6-LTS, mixed mode, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64) # Problematic frame: # C  [atio6axx.dll+0x196280] # # No core dump will be written. Minidumps are not enabled by default on client versions of Windows # # If you would like to submit a bug report, please visit: #   https://aka.ms/minecraftjavacrashes # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. # ---------------  S U M M A R Y ------------ Command Line: -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Djava.library.path=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Djna.tmpdir=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Dorg.lwjgl.system.SharedLibraryExtractPath=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Dio.netty.native.workdir=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Dminecraft.launcher.brand=minecraft-launcher -Dminecraft.launcher.version=3.14.2 -Djava.net.preferIPv6Addresses=system -Xmx4096m -Xms256m -Dminecraft.applet.TargetDirectory=\curseforge\minecraft\Instances\sejt seed modded forge -Dfml.ignorePatchDiscrepancies=true -Dfml.ignoreInvalidMinecraftCertificates=true -Duser.language=en -Duser.country=US -DlibraryDirectory=\curseforge\minecraft\Install\libraries -Dlog4j.configurationFile=\curseforge\minecraft\Install\assets\log_configs\client-1.21.2.xml net.minecraftforge.bootstrap.ForgeBootstrap --username BingBongMaster27 --version forge-55.0.17 --gameDir \curseforge\minecraft\Instances\sejt seed modded forge --assetsDir \curseforge\minecraft\Install\assets --assetIndex 24 --uuid f68120281c3a4671b587856055e366bf -UTaeapdqVJtu9-ViDPYrMQeXxB4siChHhnieYhKZWD8QrvGUj5J3N--8KoL8DGJC8vSPEwpb7G9YlMGIynR3o4Ri_ZWErl9iSO1h4WxEjZqwKKKUlJ6OP7co2DrCSnf8tVzTJa2pzhpazZecBVD6o2xKtQv5w92Z7AVn-v7kzk8xZiSY4lscbqb4RO9_NVQouUfU5mxCNmpektaO6f_X4vwOlI9UH8oGvlaGkiuP3qL_Rtmqj87ZdxmnROF82aN-Al_I94DH0OfyVL51Sho6TPoEdAJlHervCVl6HWEtuLYAsCp9ykfYiNsx_44WbTZ-a6FBsg --clientId ODM5YTllZmUtMTQzZS00MjVkLWI1MmUtZTZmMmM4MzkxYTIz --xuid 2535410774699131 --userType msa --versionType release --width 1024 --height 768 --quickPlayPath \curseforge\minecraft\Install\quickPlay\java\1747844448525.json --launchTarget forge_client Host: AMD Ryzen 7 5700U with Radeon Graphics         , 16 cores, 15G,  Windows 11 , 64 bit Build 26100 (10.0.26100.3912) Time: Wed May 21 18:20:52 2025 Rom, sommertid elapsed time: 4.006014 seconds (0d 0h 0m 4s) ---------------  T H R E A D  --------------- Current thread (0x000002771353b650):  JavaThread "main"             [_thread_in_native, id=26600, stack(0x000000fb5a500000,0x000000fb5a600000) (1024K)] Stack: [0x000000fb5a500000,0x000000fb5a600000],  sp=0x000000fb5a5fb1d8,  free space=1004k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) C  [atio6axx.dll+0x196280] Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j  org.lwjgl.system.JNI.invokePPPP(IIJJJJ)J+0 org.lwjgl@3.3.3+5 j  org.lwjgl.glfw.GLFW.nglfwCreateWindow(IIJJJ)J+14 org.lwjgl.glfw@3.3.3+5 j  org.lwjgl.glfw.GLFW.glfwCreateWindow(IILjava/lang/CharSequence;JJ)J+34 org.lwjgl.glfw@3.3.3+5 j  net.minecraftforge.fml.earlydisplay.DisplayWindow.initWindow(Ljava/lang/String;)V+437 net.minecraftforge.earlydisplay@1.21.5-55.0.17 j  net.minecraftforge.fml.earlydisplay.DisplayWindow.start(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Runnable;+2 net.minecraftforge.earlydisplay@1.21.5-55.0.17 j  net.minecraftforge.fml.earlydisplay.DisplayWindow.initialize([Ljava/lang/String;)Ljava/lang/Runnable;+368 net.minecraftforge.earlydisplay@1.21.5-55.0.17 j  net.minecraftforge.fml.loading.ImmediateWindowHandler.load(Ljava/lang/String;[Ljava/lang/String;)V+198 net.minecraftforge.fmlloader@1.21.5-55.0.17 j  net.minecraftforge.fml.loading.ModDirTransformerDiscoverer.earlyInitialization(Ljava/lang/String;[Ljava/lang/String;)V+2 net.minecraftforge.fmlloader@1.21.5-55.0.17 j  cpw.mods.modlauncher.TransformationServicesHandler.discoverServices(Lcpw/mods/modlauncher/ArgumentHandler$DiscoveryData;)V+274 cpw.mods.modlauncher@10.2.4 j  cpw.mods.modlauncher.Launcher.run([Ljava/lang/String;)V+14 cpw.mods.modlauncher@10.2.4 j  cpw.mods.modlauncher.Launcher.main([Ljava/lang/String;)V+114 cpw.mods.modlauncher@10.2.4 j  cpw.mods.modlauncher.BootstrapEntry.main([Ljava/lang/String;)V+1 cpw.mods.modlauncher@10.2.4 j  net.minecraftforge.bootstrap.Bootstrap.moduleMain([Ljava/lang/String;Ljava/util/List;)V+315 net.minecraftforge.bootstrap@2.1.7 j  java.lang.invoke.LambdaForm$DMH+0x0000000800148000.invokeVirtual(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V+14 java.base@21.0.7 j  java.lang.invoke.LambdaForm$MH+0x0000000800149000.invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+73 java.base@21.0.7 j  java.lang.invoke.LambdaForm$MH+0x0000000800149400.invokeExact_MT(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+22 java.base@21.0.7 j  jdk.internal.reflect.DirectMethodHandleAccessor.invokeImpl(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+72 java.base@21.0.7 j  jdk.internal.reflect.DirectMethodHandleAccessor.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+23 java.base@21.0.7 j  java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+102 java.base@21.0.7 j  net.minecraftforge.bootstrap.Bootstrap.bootstrapMain([Ljava/lang/String;Ljava/util/List;)V+211 j  net.minecraftforge.bootstrap.Bootstrap.start([Ljava/lang/String;)V+186 j  net.minecraftforge.bootstrap.ForgeBootstrap.main([Ljava/lang/String;)V+8 v  ~StubRoutines::call_stub 0x000002771e67100d siginfo: EXCEPTION_ACCESS_VIOLATION (0xc0000005), reading address 0xffffffffffffffff Registers: RAX=0x0000000000000000, RBX=0x00007ff8b6d05a80, RCX=0x2d7365766974616e, RDX=0x00000000000000d0 RSP=0x000000fb5a5fb1d8, RBP=0x000000fb5a5fb340, RSI=0x000000fb5a5fb298, RDI=0x000000fb5a5fb630 R8 =0x00000000000001a5, R9 =0x2d7365766974616e, R10=0x0000000000000000, R11=0x0000000000000200 R12=0x00007ff8b6d05a80, R13=0x00007ff8b6d05ad8, R14=0x00007ff8b6c14f88, R15=0x0000000000000000 RIP=0x00007ff8b3476280, EFLAGS=0x0000000000010202 XMM[0]=0x000000f000000001 0x0000002d00000001 XMM[1]=0x0000000000000000 0x0000000000000000 XMM[2]=0x0000000000000000 0x0000000000000000 XMM[3]=0x0000000000000000 0x0000000000000000 XMM[4]=0x0000000000000000 0x0000000000000000 XMM[5]=0x0000000000000000 0x0000000000000000 XMM[6]=0x04f1d166f8abb63f 0x0a163ef2749a403d XMM[7]=0x0834976695da3a92 0x7390eba5c1b044b9 XMM[8]=0x06a91bf9b84b6314 0x8e8662f25c52007f XMM[9]=0x4ea0f42c4ea0f42c 0x4ea0f42c55e85ad9 XMM[10]=0x0000000000000000 0x00000000074766ad XMM[11]=0xa9fbf020a9fbf020 0xa9fbf020ffe44af9 XMM[12]=0x0000000000000000 0x0000000055e85ad9 XMM[13]=0x0000000000000000 0x00000000391f8821 XMM[14]=0x0000000000000000 0x5b5a1b17caee30a2 XMM[15]=0x0000000000000000 0x000000006f94158b   MXCSR=0x00001fa0 Register to memory mapping: RAX=0x0 is null RBX=0x00007ff8b6d05a80 atio6axx.dll RCX=0x2d7365766974616e is an unknown value RDX=0x00000000000000d0 is an unknown value RSP=0x000000fb5a5fb1d8 is pointing into the stack for thread: 0x000002771353b650 RBP=0x000000fb5a5fb340 is pointing into the stack for thread: 0x000002771353b650 RSI=0x000000fb5a5fb298 is pointing into the stack for thread: 0x000002771353b650 RDI=0x000000fb5a5fb630 is pointing into the stack for thread: 0x000002771353b650 R8 =0x00000000000001a5 is an unknown value R9 =0x2d7365766974616e is an unknown value R10=0x0 is null R11=0x0000000000000200 is an unknown value R12=0x00007ff8b6d05a80 atio6axx.dll R13=0x00007ff8b6d05ad8 atio6axx.dll R14=0x00007ff8b6c14f88 atio6axx.dll R15=0x0 is null Top of Stack: (sp=0x000000fb5a5fb1d8) 0x000000fb5a5fb1d8:   00007ff8b347659c 00007ff8b6d086f0 0x000000fb5a5fb1e8:   000002773ad91748 000000000000004d 0x000000fb5a5fb1f8:   000000fb5a5fb298 000000fb5a5fb630 0x000000fb5a5fb208:   00007ff8b3431af4 00007ff8b6d05a80 0x000000fb5a5fb218:   000000fb5a5fb298 000000fb5a5fb340 0x000000fb5a5fb228:   000045a7c7e8ee72 000000fb5a5fb630 0x000000fb5a5fb238:   00007ff8b3432ab5 00007ff8b6d05a88 0x000000fb5a5fb248:   000000000000004d 00007ff8b6d05a88 0x000000fb5a5fb258:   000002773b03d17c 000000fb00000000 0x000000fb5a5fb268:   0000000000000009 000002773b03d344 0x000000fb5a5fb278:   000002773b03d490 00007ff8b6d05a88 0x000000fb5a5fb288:   000000fb5a5fb630 000000fb5a5fb42f 0x000000fb5a5fb298:   00007f006176616a 000000006176616a 0x000000fb5a5fb2a8:   00007ff96e20680a 46676e697274535c 0x000000fb5a5fb2b8:   5c6f666e49656c69 3062343039303430 0x000000fb5a5fb2c8:   726556656c69465c 000000006e6f6973 0x000000fb5a5fb2d8:   0000000000000000 0000000000000000 0x000000fb5a5fb2e8:   0000000000000000 0000000a0000011c 0x000000fb5a5fb2f8:   000065f400000000 0000000000000002 0x000000fb5a5fb308:   0000000000000000 0000000000000000 0x000000fb5a5fb318:   0000000000000000 0000000000000000 0x000000fb5a5fb328:   0000000000000000 0000000000000000 0x000000fb5a5fb338:   0000000000000000 0000000000000000 0x000000fb5a5fb348:   0000000000000000 0000000000000000 0x000000fb5a5fb358:   0000000000000000 0000000000000000 0x000000fb5a5fb368:   0000000000000000 0000000000000000 0x000000fb5a5fb378:   0000000000000000 0000000000000000 0x000000fb5a5fb388:   0000000000000000 0000000000000000 0x000000fb5a5fb398:   0000000000000000 0000000000000000 0x000000fb5a5fb3a8:   0000000000000000 0000000000000000 0x000000fb5a5fb3b8:   0000000000000000 73726573555c3a43 0x000000fb5a5fb3c8:   5220626f63614a5c 737275635c6b6369  Instructions: (pc=0x00007ff8b3476280) 0x00007ff8b3476180:   74 09 33 c9 ff 15 c6 72 6b 03 90 48 8b c3 48 83 0x00007ff8b3476190:   c4 20 5b c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff8b34761a0:   48 83 ec 28 48 8b 51 08 48 85 d2 74 09 33 c9 ff 0x00007ff8b34761b0:   15 9b 72 6b 03 90 48 83 c4 28 c3 cc cc cc cc cc 0x00007ff8b34761c0:   48 89 11 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff8b34761d0:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff8b34761e0:   48 3b ca 74 10 41 8b 00 39 01 74 09 48 83 c1 04 0x00007ff8b34761f0:   48 3b ca 75 f3 48 8b c1 c3 cc cc cc cc cc cc cc 0x00007ff8b3476200:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff8b3476210:   48 83 39 00 0f 94 c0 c3 cc cc cc cc cc cc cc cc 0x00007ff8b3476220:   4c 8d 04 d5 00 00 00 00 33 d2 e9 f1 6e e0 01 cc 0x00007ff8b3476230:   4c 8b 41 08 48 8b 02 49 89 00 48 83 41 08 08 c3 0x00007ff8b3476240:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff8b3476250:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff8b3476260:   49 8b 00 48 89 02 c3 cc cc cc cc cc cc cc cc cc 0x00007ff8b3476270:   8b 81 48 39 00 00 c3 cc cc cc cc cc cc cc cc cc 0x00007ff8b3476280:   8b 81 48 39 00 00 83 c0 f0 83 f8 68 0f 87 5a 01 0x00007ff8b3476290:   00 00 48 8d 15 67 9d e6 ff 0f b6 84 02 10 64 19 0x00007ff8b34762a0:   00 8b 8c 82 f0 63 19 00 48 03 ca ff e1 48 8b 0d 0x00007ff8b34762b0:   ec 5d 83 03 83 b9 04 37 00 00 02 0f 87 2b 01 00 0x00007ff8b34762c0:   00 48 8d 91 30 2b 00 00 c7 02 e1 00 00 00 e9 ce 0x00007ff8b34762d0:   00 00 00 48 8b 0d c6 5d 83 03 83 b9 04 37 00 00 0x00007ff8b34762e0:   02 0f 87 05 01 00 00 48 8d 91 30 2b 00 00 c7 02 0x00007ff8b34762f0:   f0 00 00 00 e9 a8 00 00 00 48 8b 0d a0 5d 83 03 0x00007ff8b3476300:   83 b9 04 37 00 00 02 0f 87 df 00 00 00 48 8d 91 0x00007ff8b3476310:   30 2b 00 00 c7 02 00 04 00 00 e9 82 00 00 00 48 0x00007ff8b3476320:   8b 0d 7a 5d 83 03 83 b9 04 37 00 00 02 0f 87 b9 0x00007ff8b3476330:   00 00 00 48 8d 91 30 2b 00 00 c7 02 00 08 00 00 0x00007ff8b3476340:   eb 5f 48 8b 0d 57 5d 83 03 83 b9 04 37 00 00 02 0x00007ff8b3476350:   0f 87 96 00 00 00 48 8d 91 30 2b 00 00 c7 02 00 0x00007ff8b3476360:   09 00 00 eb 3c 48 8b 0d 34 5d 83 03 83 b9 04 37 0x00007ff8b3476370:   00 00 02 77 77 48 8d 91 30 2b 00 00 c7 02 3c 0f  Stack slot to memory mapping: stack at sp + 0 slots: 0x00007ff8b347659c atio6axx.dll stack at sp + 1 slots: 0x00007ff8b6d086f0 atio6axx.dll stack at sp + 2 slots: 0x000002773ad91748 points into unknown readable memory: 0x00007ff8b650d2f0 | f0 d2 50 b6 f8 7f 00 00 stack at sp + 3 slots: 0x000000000000004d is an unknown value stack at sp + 4 slots: 0x000000fb5a5fb298 is pointing into the stack for thread: 0x000002771353b650 stack at sp + 5 slots: 0x000000fb5a5fb630 is pointing into the stack for thread: 0x000002771353b650 stack at sp + 6 slots: 0x00007ff8b3431af4 atio6axx.dll stack at sp + 7 slots: 0x00007ff8b6d05a80 atio6axx.dll ---------------  P R O C E S S  --------------- Threads class SMR info: _java_thread_list=0x000002773c7111a0, length=22, elements={ 0x000002771353b650, 0x000002772f3953c0, 0x000002772f396fd0, 0x000002772f397a20, 0x000002772f398620, 0x000002772f3f2610, 0x000002772f3f2fd0, 0x000002772f3f3fb0, 0x000002772f3ede60, 0x000002772f45fb10, 0x000002772f6adaa0, 0x000002772f6d43b0, 0x000002772f6f2ff0, 0x000002772fb2bd10, 0x000002772fbe0840, 0x000002773452e140, 0x000002773452f5b0, 0x000002773452eee0, 0x000002773452e810, 0x00000277345310f0, 0x0000027734530a20, 0x0000027738551f10 } Java Threads: ( => current thread ) =>0x000002771353b650 JavaThread "main"                              [_thread_in_native, id=26600, stack(0x000000fb5a500000,0x000000fb5a600000) (1024K)]   0x000002772f3953c0 JavaThread "Reference Handler"          daemon [_thread_blocked, id=1980, stack(0x000000fb5ad00000,0x000000fb5ae00000) (1024K)]   0x000002772f396fd0 JavaThread "Finalizer"                  daemon [_thread_blocked, id=25464, stack(0x000000fb5ae00000,0x000000fb5af00000) (1024K)]   0x000002772f397a20 JavaThread "Signal Dispatcher"          daemon [_thread_blocked, id=26248, stack(0x000000fb5af00000,0x000000fb5b000000) (1024K)]   0x000002772f398620 JavaThread "Attach Listener"            daemon [_thread_blocked, id=21664, stack(0x000000fb5b000000,0x000000fb5b100000) (1024K)]   0x000002772f3f2610 JavaThread "Service Thread"             daemon [_thread_blocked, id=23632, stack(0x000000fb5b100000,0x000000fb5b200000) (1024K)]   0x000002772f3f2fd0 JavaThread "Monitor Deflation Thread"   daemon [_thread_blocked, id=24536, stack(0x000000fb5b200000,0x000000fb5b300000) (1024K)]   0x000002772f3f3fb0 JavaThread "C2 CompilerThread0"         daemon [_thread_blocked, id=3596, stack(0x000000fb5b300000,0x000000fb5b400000) (1024K)]   0x000002772f3ede60 JavaThread "C1 CompilerThread0"         daemon [_thread_blocked, id=15716, stack(0x000000fb5b400000,0x000000fb5b500000) (1024K)]   0x000002772f45fb10 JavaThread "C1 CompilerThread1"         daemon [_thread_blocked, id=22460, stack(0x000000fb5b500000,0x000000fb5b600000) (1024K)]   0x000002772f6adaa0 JavaThread "Notification Thread"        daemon [_thread_blocked, id=25312, stack(0x000000fb5b600000,0x000000fb5b700000) (1024K)]   0x000002772f6d43b0 JavaThread "Common-Cleaner"             daemon [_thread_blocked, id=22376, stack(0x000000fb5b700000,0x000000fb5b800000) (1024K)]   0x000002772f6f2ff0 JavaThread "C2 CompilerThread1"         daemon [_thread_blocked, id=6712, stack(0x000000fb5b800000,0x000000fb5b900000) (1024K)]   0x000002772fb2bd10 JavaThread "C1 CompilerThread2"         daemon [_thread_blocked, id=24364, stack(0x000000fb5ba00000,0x000000fb5bb00000) (1024K)]   0x000002772fbe0840 JavaThread "C1 CompilerThread3"         daemon [_thread_blocked, id=15740, stack(0x000000fb5bb00000,0x000000fb5bc00000) (1024K)]   0x000002773452e140 JavaThread "C2 CompilerThread2"         daemon [_thread_in_native, id=19124, stack(0x000000fb5b900000,0x000000fb5ba00000) (1024K)]   0x000002773452f5b0 JavaThread "C2 CompilerThread3"         daemon [_thread_blocked, id=8356, stack(0x000000fb5bc00000,0x000000fb5bd00000) (1024K)]   0x000002773452eee0 JavaThread "C2 CompilerThread4"         daemon [_thread_blocked, id=22424, stack(0x000000fb5c200000,0x000000fb5c300000) (1024K)]   0x000002773452e810 JavaThread "C2 CompilerThread5"         daemon [_thread_blocked, id=2284, stack(0x000000fb5c300000,0x000000fb5c400000) (1024K)]   0x00000277345310f0 JavaThread "C2 CompilerThread6"         daemon [_thread_blocked, id=24256, stack(0x000000fb5c400000,0x000000fb5c500000) (1024K)]   0x0000027734530a20 JavaThread "C2 CompilerThread7"         daemon [_thread_blocked, id=9916, stack(0x000000fb5cd00000,0x000000fb5ce00000) (1024K)]   0x0000027738551f10 JavaThread "EarlyDisplay"               daemon [_thread_blocked, id=1908, stack(0x000000fb5d200000,0x000000fb5d300000) (1024K)] Total: 22 Other Threads:   0x000002772f325aa0 VMThread "VM Thread"                           [id=25740, stack(0x000000fb5ac00000,0x000000fb5ad00000) (1024K)]   0x000002772e8e2da0 WatcherThread "VM Periodic Task Thread"        [id=22668, stack(0x000000fb5ab00000,0x000000fb5ac00000) (1024K)]   0x00000277135a3aa0 WorkerThread "GC Thread#0"                     [id=26160, stack(0x000000fb5a600000,0x000000fb5a700000) (1024K)]   0x0000027734205fb0 WorkerThread "GC Thread#1"                     [id=10948, stack(0x000000fb5bd00000,0x000000fb5be00000) (1024K)]   0x0000027734269200 WorkerThread "GC Thread#2"                     [id=3248, stack(0x000000fb5be00000,0x000000fb5bf00000) (1024K)]   0x0000027734206350 WorkerThread "GC Thread#3"                     [id=11428, stack(0x000000fb5bf00000,0x000000fb5c000000) (1024K)]   0x000002773427f610 WorkerThread "GC Thread#4"                     [id=23688, stack(0x000000fb5c000000,0x000000fb5c100000) (1024K)]   0x000002772fe0f8a0 WorkerThread "GC Thread#5"                     [id=22540, stack(0x000000fb5c100000,0x000000fb5c200000) (1024K)]   0x0000027734d39820 WorkerThread "GC Thread#6"                     [id=4804, stack(0x000000fb5c500000,0x000000fb5c600000) (1024K)]   0x00000277349d36b0 WorkerThread "GC Thread#7"                     [id=2888, stack(0x000000fb5c600000,0x000000fb5c700000) (1024K)]   0x00000277349d3a50 WorkerThread "GC Thread#8"                     [id=19872, stack(0x000000fb5c700000,0x000000fb5c800000) (1024K)]   0x00000277349d4530 WorkerThread "GC Thread#9"                     [id=24684, stack(0x000000fb5c800000,0x000000fb5c900000) (1024K)]   0x00000277349d3df0 WorkerThread "GC Thread#10"                    [id=8520, stack(0x000000fb5c900000,0x000000fb5ca00000) (1024K)]   0x00000277357cfc10 WorkerThread "GC Thread#11"                    [id=24496, stack(0x000000fb5ca00000,0x000000fb5cb00000) (1024K)]   0x00000277357ced90 WorkerThread "GC Thread#12"                    [id=6024, stack(0x000000fb5ce00000,0x000000fb5cf00000) (1024K)]   0x00000277135b5eb0 ConcurrentGCThread "G1 Main Marker"            [id=23776, stack(0x000000fb5a700000,0x000000fb5a800000) (1024K)]   0x00000277135b67c0 WorkerThread "G1 Conc#0"                       [id=20640, stack(0x000000fb5a800000,0x000000fb5a900000) (1024K)]   0x00000277357d23f0 WorkerThread "G1 Conc#1"                       [id=8448, stack(0x000000fb5cb00000,0x000000fb5cc00000) (1024K)]   0x00000277357cf4d0 WorkerThread "G1 Conc#2"                       [id=19520, stack(0x000000fb5cc00000,0x000000fb5cd00000) (1024K)]   0x000002772e79ca90 ConcurrentGCThread "G1 Refine#0"               [id=22112, stack(0x000000fb5a900000,0x000000fb5aa00000) (1024K)]   0x000002772e79e2c0 ConcurrentGCThread "G1 Service"                [id=24788, stack(0x000000fb5aa00000,0x000000fb5ab00000) (1024K)] Total: 21 Threads with active compile tasks: C2 CompilerThread2  4059 3915       4       java.lang.invoke.MethodType::makeImpl (109 bytes) Total: 1 VM state: not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap address: 0x0000000700000000, size: 4096 MB, Compressed Oops mode: Zero based, Oop shift amount: 3 CDS archive(s) not mapped Compressed class space mapped at: 0x0000000800000000-0x0000000840000000, reserved size: 1073741824 Narrow klass base: 0x0000000800000000, Narrow klass shift: 0, Narrow klass range: 0x40000000 GC Precious Log:  CardTable entry size: 512  Card Set container configuration: InlinePtr #cards 4 size 8 Array Of Cards #cards 16 size 48 Howl #buckets 8 coarsen threshold 3686 Howl Bitmap #cards 512 size 80 coarsen threshold 460 Card regions per heap region 1 cards per card region 4096  CPUs: 16 total, 16 available  Memory: 15693M  Large Page Support: Disabled  NUMA Support: Disabled  Compressed Oops: Enabled (Zero based)  Heap Region Size: 2M  Heap Min Capacity: 256M  Heap Initial Capacity: 256M  Heap Max Capacity: 4G  Pre-touch: Disabled  Parallel Workers: 13  Concurrent Workers: 3  Concurrent Refinement Workers: 13  Periodic GC: Disabled Heap:  garbage-first heap   total 262144K, used 138417K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 33 young (67584K), 9 survivors (18432K)  Metaspace       used 27634K, committed 28096K, reserved 1114112K   class space    used 2694K, committed 2944K, reserved 1048576K Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, TAMS=top-at-mark-start, PB=parsable bottom |   0|0x0000000700000000, 0x0000000700200000, 0x0000000700200000|100%|HS|  |TAMS 0x0000000700000000| PB 0x0000000700000000| Complete  |   1|0x0000000700200000, 0x0000000700400000, 0x0000000700400000|100%|HC|  |TAMS 0x0000000700200000| PB 0x0000000700200000| Complete  |   2|0x0000000700400000, 0x0000000700600000, 0x0000000700600000|100%|HS|  |TAMS 0x0000000700400000| PB 0x0000000700400000| Complete  |   3|0x0000000700600000, 0x0000000700800000, 0x0000000700800000|100%|HS|  |TAMS 0x0000000700600000| PB 0x0000000700600000| Complete  |   4|0x0000000700800000, 0x0000000700a00000, 0x0000000700a00000|100%|HC|  |TAMS 0x0000000700800000| PB 0x0000000700800000| Complete  |   5|0x0000000700a00000, 0x0000000700c00000, 0x0000000700c00000|100%| O|  |TAMS 0x0000000700a00000| PB 0x0000000700a00000| Untracked  |   6|0x0000000700c00000, 0x0000000700e00000, 0x0000000700e00000|100%| O|Cm|TAMS 0x0000000700c00000| PB 0x0000000700c00000| Complete  |   7|0x0000000700e00000, 0x0000000701000000, 0x0000000701000000|100%|HS|  |TAMS 0x0000000700e00000| PB 0x0000000700e00000| Complete  |   8|0x0000000701000000, 0x0000000701200000, 0x0000000701200000|100%|HC|  |TAMS 0x0000000701000000| PB 0x0000000701000000| Complete  |   9|0x0000000701200000, 0x0000000701400000, 0x0000000701400000|100%| O|  |TAMS 0x0000000701200000| PB 0x0000000701200000| Untracked  |  10|0x0000000701400000, 0x0000000701600000, 0x0000000701600000|100%| O|  |TAMS 0x0000000701400000| PB 0x0000000701400000| Untracked  |  11|0x0000000701600000, 0x0000000701800000, 0x0000000701800000|100%| O|  |TAMS 0x0000000701600000| PB 0x0000000701600000| Untracked  |  12|0x0000000701800000, 0x0000000701a00000, 0x0000000701a00000|100%| O|  |TAMS 0x0000000701800000| PB 0x0000000701800000| Untracked  |  13|0x0000000701a00000, 0x0000000701c00000, 0x0000000701c00000|100%|HS|  |TAMS 0x0000000701a00000| PB 0x0000000701a00000| Complete  |  14|0x0000000701c00000, 0x0000000701e00000, 0x0000000701e00000|100%|HS|  |TAMS 0x0000000701c00000| PB 0x0000000701c00000| Complete  |  15|0x0000000701e00000, 0x0000000702000000, 0x0000000702000000|100%|HC|  |TAMS 0x0000000701e00000| PB 0x0000000701e00000| Complete  |  16|0x0000000702000000, 0x0000000702200000, 0x0000000702200000|100%|HS|  |TAMS 0x0000000702000000| PB 0x0000000702000000| Complete  |  17|0x0000000702200000, 0x0000000702400000, 0x0000000702400000|100%|HC|  |TAMS 0x0000000702200000| PB 0x0000000702200000| Complete  |  18|0x0000000702400000, 0x0000000702600000, 0x0000000702600000|100%| O|  |TAMS 0x0000000702400000| PB 0x0000000702400000| Untracked  |  19|0x0000000702600000, 0x0000000702800000, 0x0000000702800000|100%| O|  |TAMS 0x0000000702600000| PB 0x0000000702600000| Untracked  |  20|0x0000000702800000, 0x0000000702a00000, 0x0000000702a00000|100%| O|  |TAMS 0x0000000702800000| PB 0x0000000702800000| Untracked  |  21|0x0000000702a00000, 0x0000000702c00000, 0x0000000702c00000|100%|HS|  |TAMS 0x0000000702a00000| PB 0x0000000702a00000| Complete  |  22|0x0000000702c00000, 0x0000000702e00000, 0x0000000702e00000|100%|HC|  |TAMS 0x0000000702c00000| PB 0x0000000702c00000| Complete  |  23|0x0000000702e00000, 0x0000000703000000, 0x0000000703000000|100%| O|  |TAMS 0x0000000702e00000| PB 0x0000000702e00000| Untracked  |  24|0x0000000703000000, 0x000000070312c580, 0x0000000703200000| 58%| O|  |TAMS 0x0000000703000000| PB 0x0000000703000000| Untracked  |  25|0x0000000703200000, 0x0000000703200000, 0x0000000703400000|  0%| F|  |TAMS 0x0000000703200000| PB 0x0000000703200000| Untracked  |  26|0x0000000703400000, 0x0000000703600000, 0x0000000703600000|100%| O|  |TAMS 0x0000000703400000| PB 0x0000000703400000| Untracked  |  27|0x0000000703600000, 0x0000000703800000, 0x0000000703800000|100%| O|  |TAMS 0x0000000703600000| PB 0x0000000703600000| Untracked  |  28|0x0000000703800000, 0x0000000703a00000, 0x0000000703a00000|100%| O|  |TAMS 0x0000000703800000| PB 0x0000000703800000| Untracked  |  29|0x0000000703a00000, 0x0000000703c00000, 0x0000000703c00000|100%| O|  |TAMS 0x0000000703a00000| PB 0x0000000703a00000| Untracked  |  30|0x0000000703c00000, 0x0000000703e00000, 0x0000000703e00000|100%| O|  |TAMS 0x0000000703c00000| PB 0x0000000703c00000| Untracked  |  31|0x0000000703e00000, 0x0000000704000000, 0x0000000704000000|100%| O|  |TAMS 0x0000000703e00000| PB 0x0000000703e00000| Untracked  |  32|0x0000000704000000, 0x0000000704200000, 0x0000000704200000|100%| O|  |TAMS 0x0000000704000000| PB 0x0000000704000000| Untracked  |  33|0x0000000704200000, 0x0000000704400000, 0x0000000704400000|100%| O|  |TAMS 0x0000000704200000| PB 0x0000000704200000| Untracked  |  34|0x0000000704400000, 0x0000000704600000, 0x0000000704600000|100%| O|  |TAMS 0x0000000704400000| PB 0x0000000704400000| Untracked  |  35|0x0000000704600000, 0x0000000704800000, 0x0000000704800000|100%| O|  |TAMS 0x0000000704600000| PB 0x0000000704600000| Untracked  |  36|0x0000000704800000, 0x0000000704a00000, 0x0000000704a00000|100%| O|  |TAMS 0x0000000704800000| PB 0x0000000704800000| Untracked  |  37|0x0000000704a00000, 0x0000000704a00000, 0x0000000704c00000|  0%| F|  |TAMS 0x0000000704a00000| PB 0x0000000704a00000| Untracked  |  38|0x0000000704c00000, 0x0000000704c00000, 0x0000000704e00000|  0%| F|  |TAMS 0x0000000704c00000| PB 0x0000000704c00000| Untracked  |  39|0x0000000704e00000, 0x0000000704e00000, 0x0000000705000000|  0%| F|  |TAMS 0x0000000704e00000| PB 0x0000000704e00000| Untracked  |  40|0x0000000705000000, 0x0000000705000000, 0x0000000705200000|  0%| F|  |TAMS 0x0000000705000000| PB 0x0000000705000000| Untracked  |  41|0x0000000705200000, 0x0000000705200000, 0x0000000705400000|  0%| F|  |TAMS 0x0000000705200000| PB 0x0000000705200000| Untracked  |  42|0x0000000705400000, 0x0000000705400000, 0x0000000705600000|  0%| F|  |TAMS 0x0000000705400000| PB 0x0000000705400000| Untracked  |  43|0x0000000705600000, 0x0000000705600000, 0x0000000705800000|  0%| F|  |TAMS 0x0000000705600000| PB 0x0000000705600000| Untracked  |  44|0x0000000705800000, 0x0000000705800000, 0x0000000705a00000|  0%| F|  |TAMS 0x0000000705800000| PB 0x0000000705800000| Untracked  |  45|0x0000000705a00000, 0x0000000705a00000, 0x0000000705c00000|  0%| F|  |TAMS 0x0000000705a00000| PB 0x0000000705a00000| Untracked  |  46|0x0000000705c00000, 0x0000000705c00000, 0x0000000705e00000|  0%| F|  |TAMS 0x0000000705c00000| PB 0x0000000705c00000| Untracked  |  47|0x0000000705e00000, 0x0000000705e00000, 0x0000000706000000|  0%| F|  |TAMS 0x0000000705e00000| PB 0x0000000705e00000| Untracked  |  48|0x0000000706000000, 0x0000000706000000, 0x0000000706200000|  0%| F|  |TAMS 0x0000000706000000| PB 0x0000000706000000| Untracked  |  49|0x0000000706200000, 0x0000000706200000, 0x0000000706400000|  0%| F|  |TAMS 0x0000000706200000| PB 0x0000000706200000| Untracked  |  50|0x0000000706400000, 0x0000000706600000, 0x0000000706600000|100%| S|CS|TAMS 0x0000000706400000| PB 0x0000000706400000| Complete  |  51|0x0000000706600000, 0x0000000706800000, 0x0000000706800000|100%| S|CS|TAMS 0x0000000706600000| PB 0x0000000706600000| Complete  |  52|0x0000000706800000, 0x0000000706a00000, 0x0000000706a00000|100%| S|CS|TAMS 0x0000000706800000| PB 0x0000000706800000| Complete  |  53|0x0000000706a00000, 0x0000000706c00000, 0x0000000706c00000|100%| S|CS|TAMS 0x0000000706a00000| PB 0x0000000706a00000| Complete  |  54|0x0000000706c00000, 0x0000000706e00000, 0x0000000706e00000|100%| S|CS|TAMS 0x0000000706c00000| PB 0x0000000706c00000| Complete  |  55|0x0000000706e00000, 0x0000000707000000, 0x0000000707000000|100%| S|CS|TAMS 0x0000000706e00000| PB 0x0000000706e00000| Complete  |  56|0x0000000707000000, 0x0000000707200000, 0x0000000707200000|100%| S|CS|TAMS 0x0000000707000000| PB 0x0000000707000000| Complete  |  57|0x0000000707200000, 0x0000000707400000, 0x0000000707400000|100%| S|CS|TAMS 0x0000000707200000| PB 0x0000000707200000| Complete  |  58|0x0000000707400000, 0x0000000707600000, 0x0000000707600000|100%| S|CS|TAMS 0x0000000707400000| PB 0x0000000707400000| Complete  |  59|0x0000000707600000, 0x0000000707600000, 0x0000000707800000|  0%| F|  |TAMS 0x0000000707600000| PB 0x0000000707600000| Untracked  |  60|0x0000000707800000, 0x0000000707800000, 0x0000000707a00000|  0%| F|  |TAMS 0x0000000707800000| PB 0x0000000707800000| Untracked  |  61|0x0000000707a00000, 0x0000000707a00000, 0x0000000707c00000|  0%| F|  |TAMS 0x0000000707a00000| PB 0x0000000707a00000| Untracked  |  62|0x0000000707c00000, 0x0000000707c00000, 0x0000000707e00000|  0%| F|  |TAMS 0x0000000707c00000| PB 0x0000000707c00000| Untracked  |  63|0x0000000707e00000, 0x0000000707e00000, 0x0000000708000000|  0%| F|  |TAMS 0x0000000707e00000| PB 0x0000000707e00000| Untracked  |  64|0x0000000708000000, 0x0000000708000000, 0x0000000708200000|  0%| F|  |TAMS 0x0000000708000000| PB 0x0000000708000000| Untracked  |  65|0x0000000708200000, 0x0000000708200000, 0x0000000708400000|  0%| F|  |TAMS 0x0000000708200000| PB 0x0000000708200000| Untracked  |  66|0x0000000708400000, 0x0000000708400000, 0x0000000708600000|  0%| F|  |TAMS 0x0000000708400000| PB 0x0000000708400000| Untracked  |  67|0x0000000708600000, 0x0000000708600000, 0x0000000708800000|  0%| F|  |TAMS 0x0000000708600000| PB 0x0000000708600000| Untracked  |  68|0x0000000708800000, 0x0000000708800000, 0x0000000708a00000|  0%| F|  |TAMS 0x0000000708800000| PB 0x0000000708800000| Untracked  |  69|0x0000000708a00000, 0x0000000708a00000, 0x0000000708c00000|  0%| F|  |TAMS 0x0000000708a00000| PB 0x0000000708a00000| Untracked  |  70|0x0000000708c00000, 0x0000000708c00000, 0x0000000708e00000|  0%| F|  |TAMS 0x0000000708c00000| PB 0x0000000708c00000| Untracked  |  71|0x0000000708e00000, 0x0000000708e00000, 0x0000000709000000|  0%| F|  |TAMS 0x0000000708e00000| PB 0x0000000708e00000| Untracked  |  72|0x0000000709000000, 0x0000000709000000, 0x0000000709200000|  0%| F|  |TAMS 0x0000000709000000| PB 0x0000000709000000| Untracked  |  73|0x0000000709200000, 0x0000000709200000, 0x0000000709400000|  0%| F|  |TAMS 0x0000000709200000| PB 0x0000000709200000| Untracked  |  74|0x0000000709400000, 0x0000000709400000, 0x0000000709600000|  0%| F|  |TAMS 0x0000000709400000| PB 0x0000000709400000| Untracked  |  75|0x0000000709600000, 0x0000000709600000, 0x0000000709800000|  0%| F|  |TAMS 0x0000000709600000| PB 0x0000000709600000| Untracked  |  76|0x0000000709800000, 0x0000000709800000, 0x0000000709a00000|  0%| F|  |TAMS 0x0000000709800000| PB 0x0000000709800000| Untracked  |  77|0x0000000709a00000, 0x0000000709a00000, 0x0000000709c00000|  0%| F|  |TAMS 0x0000000709a00000| PB 0x0000000709a00000| Untracked  |  78|0x0000000709c00000, 0x0000000709c00000, 0x0000000709e00000|  0%| F|  |TAMS 0x0000000709c00000| PB 0x0000000709c00000| Untracked  |  79|0x0000000709e00000, 0x0000000709e00000, 0x000000070a000000|  0%| F|  |TAMS 0x0000000709e00000| PB 0x0000000709e00000| Untracked  |  80|0x000000070a000000, 0x000000070a000000, 0x000000070a200000|  0%| F|  |TAMS 0x000000070a000000| PB 0x000000070a000000| Untracked  |  81|0x000000070a200000, 0x000000070a200000, 0x000000070a400000|  0%| F|  |TAMS 0x000000070a200000| PB 0x000000070a200000| Untracked  |  82|0x000000070a400000, 0x000000070a400000, 0x000000070a600000|  0%| F|  |TAMS 0x000000070a400000| PB 0x000000070a400000| Untracked  |  83|0x000000070a600000, 0x000000070a600000, 0x000000070a800000|  0%| F|  |TAMS 0x000000070a600000| PB 0x000000070a600000| Untracked  |  84|0x000000070a800000, 0x000000070a800000, 0x000000070aa00000|  0%| F|  |TAMS 0x000000070a800000| PB 0x000000070a800000| Untracked  |  85|0x000000070aa00000, 0x000000070aa00000, 0x000000070ac00000|  0%| F|  |TAMS 0x000000070aa00000| PB 0x000000070aa00000| Untracked  |  86|0x000000070ac00000, 0x000000070ac00000, 0x000000070ae00000|  0%| F|  |TAMS 0x000000070ac00000| PB 0x000000070ac00000| Untracked  |  87|0x000000070ae00000, 0x000000070ae00000, 0x000000070b000000|  0%| F|  |TAMS 0x000000070ae00000| PB 0x000000070ae00000| Untracked  |  88|0x000000070b000000, 0x000000070b000000, 0x000000070b200000|  0%| F|  |TAMS 0x000000070b000000| PB 0x000000070b000000| Untracked  |  89|0x000000070b200000, 0x000000070b200000, 0x000000070b400000|  0%| F|  |TAMS 0x000000070b200000| PB 0x000000070b200000| Untracked  |  90|0x000000070b400000, 0x000000070b400000, 0x000000070b600000|  0%| F|  |TAMS 0x000000070b400000| PB 0x000000070b400000| Untracked  |  91|0x000000070b600000, 0x000000070b600000, 0x000000070b800000|  0%| F|  |TAMS 0x000000070b600000| PB 0x000000070b600000| Untracked  |  92|0x000000070b800000, 0x000000070b800000, 0x000000070ba00000|  0%| F|  |TAMS 0x000000070b800000| PB 0x000000070b800000| Untracked  |  93|0x000000070ba00000, 0x000000070ba00000, 0x000000070bc00000|  0%| F|  |TAMS 0x000000070ba00000| PB 0x000000070ba00000| Untracked  |  94|0x000000070bc00000, 0x000000070bc00000, 0x000000070be00000|  0%| F|  |TAMS 0x000000070bc00000| PB 0x000000070bc00000| Untracked  |  95|0x000000070be00000, 0x000000070be00000, 0x000000070c000000|  0%| F|  |TAMS 0x000000070be00000| PB 0x000000070be00000| Untracked  |  96|0x000000070c000000, 0x000000070c000000, 0x000000070c200000|  0%| F|  |TAMS 0x000000070c000000| PB 0x000000070c000000| Untracked  |  97|0x000000070c200000, 0x000000070c200000, 0x000000070c400000|  0%| F|  |TAMS 0x000000070c200000| PB 0x000000070c200000| Untracked  |  98|0x000000070c400000, 0x000000070c400000, 0x000000070c600000|  0%| F|  |TAMS 0x000000070c400000| PB 0x000000070c400000| Untracked  |  99|0x000000070c600000, 0x000000070c600000, 0x000000070c800000|  0%| F|  |TAMS 0x000000070c600000| PB 0x000000070c600000| Untracked  | 100|0x000000070c800000, 0x000000070c800000, 0x000000070ca00000|  0%| F|  |TAMS 0x000000070c800000| PB 0x000000070c800000| Untracked  | 101|0x000000070ca00000, 0x000000070ca00000, 0x000000070cc00000|  0%| F|  |TAMS 0x000000070ca00000| PB 0x000000070ca00000| Untracked  | 102|0x000000070cc00000, 0x000000070cc00000, 0x000000070ce00000|  0%| F|  |TAMS 0x000000070cc00000| PB 0x000000070cc00000| Untracked  | 103|0x000000070ce00000, 0x000000070ce00000, 0x000000070d000000|  0%| F|  |TAMS 0x000000070ce00000| PB 0x000000070ce00000| Untracked  | 104|0x000000070d000000, 0x000000070d062fe8, 0x000000070d200000| 19%| E|  |TAMS 0x000000070d000000| PB 0x000000070d000000| Complete  | 105|0x000000070d200000, 0x000000070d400000, 0x000000070d400000|100%| E|CS|TAMS 0x000000070d200000| PB 0x000000070d200000| Complete  | 106|0x000000070d400000, 0x000000070d600000, 0x000000070d600000|100%| E|CS|TAMS 0x000000070d400000| PB 0x000000070d400000| Complete  | 107|0x000000070d600000, 0x000000070d800000, 0x000000070d800000|100%| E|CS|TAMS 0x000000070d600000| PB 0x000000070d600000| Complete  | 108|0x000000070d800000, 0x000000070da00000, 0x000000070da00000|100%| E|CS|TAMS 0x000000070d800000| PB 0x000000070d800000| Complete  | 109|0x000000070da00000, 0x000000070dc00000, 0x000000070dc00000|100%| E|CS|TAMS 0x000000070da00000| PB 0x000000070da00000| Complete  | 110|0x000000070dc00000, 0x000000070de00000, 0x000000070de00000|100%| E|CS|TAMS 0x000000070dc00000| PB 0x000000070dc00000| Complete  | 111|0x000000070de00000, 0x000000070e000000, 0x000000070e000000|100%| E|CS|TAMS 0x000000070de00000| PB 0x000000070de00000| Complete  | 112|0x000000070e000000, 0x000000070e200000, 0x000000070e200000|100%| E|CS|TAMS 0x000000070e000000| PB 0x000000070e000000| Complete  | 113|0x000000070e200000, 0x000000070e400000, 0x000000070e400000|100%| E|CS|TAMS 0x000000070e200000| PB 0x000000070e200000| Complete  | 114|0x000000070e400000, 0x000000070e600000, 0x000000070e600000|100%| E|CS|TAMS 0x000000070e400000| PB 0x000000070e400000| Complete  | 115|0x000000070e600000, 0x000000070e800000, 0x000000070e800000|100%| E|CS|TAMS 0x000000070e600000| PB 0x000000070e600000| Complete  | 116|0x000000070e800000, 0x000000070ea00000, 0x000000070ea00000|100%| E|CS|TAMS 0x000000070e800000| PB 0x000000070e800000| Complete  | 117|0x000000070ea00000, 0x000000070ec00000, 0x000000070ec00000|100%| E|CS|TAMS 0x000000070ea00000| PB 0x000000070ea00000| Complete  | 118|0x000000070ec00000, 0x000000070ee00000, 0x000000070ee00000|100%| E|CS|TAMS 0x000000070ec00000| PB 0x000000070ec00000| Complete  | 119|0x000000070ee00000, 0x000000070f000000, 0x000000070f000000|100%| E|CS|TAMS 0x000000070ee00000| PB 0x000000070ee00000| Complete  | 120|0x000000070f000000, 0x000000070f200000, 0x000000070f200000|100%| E|CS|TAMS 0x000000070f000000| PB 0x000000070f000000| Complete  | 121|0x000000070f200000, 0x000000070f400000, 0x000000070f400000|100%| E|CS|TAMS 0x000000070f200000| PB 0x000000070f200000| Complete  | 122|0x000000070f400000, 0x000000070f600000, 0x000000070f600000|100%| E|CS|TAMS 0x000000070f400000| PB 0x000000070f400000| Complete  | 123|0x000000070f600000, 0x000000070f800000, 0x000000070f800000|100%| E|CS|TAMS 0x000000070f600000| PB 0x000000070f600000| Complete  | 124|0x000000070f800000, 0x000000070fa00000, 0x000000070fa00000|100%| E|CS|TAMS 0x000000070f800000| PB 0x000000070f800000| Complete  | 125|0x000000070fa00000, 0x000000070fc00000, 0x000000070fc00000|100%| E|CS|TAMS 0x000000070fa00000| PB 0x000000070fa00000| Complete  | 126|0x000000070fc00000, 0x000000070fe00000, 0x000000070fe00000|100%| E|CS|TAMS 0x000000070fc00000| PB 0x000000070fc00000| Complete  | 127|0x000000070fe00000, 0x0000000710000000, 0x0000000710000000|100%| E|CS|TAMS 0x000000070fe00000| PB 0x000000070fe00000| Complete  Card table byte_map: [0x00000277279f0000,0x00000277281f0000] _byte_map_base: 0x00000277241f0000 Marking Bits: (CMBitMap*) 0x00000277135a3fb0  Bits: [0x00000277281f0000, 0x000002772c1f0000) Polling page: 0x0000027711d10000 Metaspace: Usage:   Non-class:     24.36 MB used.       Class:      2.63 MB used.        Both:     26.99 MB used. Virtual space:   Non-class space:       64.00 MB reserved,      24.56 MB ( 38%) committed,  1 nodes.       Class space:        1.00 GB reserved,       2.88 MB ( <1%) committed,  1 nodes.              Both:        1.06 GB reserved,      27.44 MB (  3%) committed.  Chunk freelists:    Non-Class:  7.20 MB        Class:  13.12 MB         Both:  20.32 MB MaxMetaspaceSize: unlimited CompressedClassSpaceSize: 1.00 GB Initial GC threshold: 21.00 MB Current GC threshold: 35.88 MB CDS: off  - commit_granule_bytes: 65536.  - commit_granule_words: 8192.  - virtual_space_node_default_size: 8388608.  - enlarge_chunks_in_place: 1.  - use_allocation_guard: 0. Internal statistics: num_allocs_failed_limit: 6. num_arena_births: 392. num_arena_deaths: 0. num_vsnodes_births: 2. num_vsnodes_deaths: 0. num_space_committed: 439. num_space_uncommitted: 0. num_chunks_returned_to_freelist: 6. num_chunks_taken_from_freelist: 847. num_chunk_merges: 0. num_chunk_splits: 565. num_chunks_enlarged: 407. num_inconsistent_stats: 0. CodeHeap 'non-profiled nmethods': size=119168Kb used=3458Kb max_used=3458Kb free=115709Kb  bounds [0x000002771edc0000, 0x000002771f130000, 0x0000027726220000] CodeHeap 'profiled nmethods': size=119104Kb used=7593Kb max_used=7593Kb free=111510Kb  bounds [0x0000027717220000, 0x0000027717990000, 0x000002771e670000] CodeHeap 'non-nmethods': size=7488Kb used=3888Kb max_used=3888Kb free=3599Kb  bounds [0x000002771e670000, 0x000002771ea40000, 0x000002771edc0000]  total_blobs=5057 nmethods=3914 adapters=1044  compilation: enabled               stopped_count=0, restarted_count=0  full_count=0 Compilation events (20 events): Event: 3.891 Thread 0x000002772f45fb10 nmethod 3905 0x0000027717985a90 code [0x0000027717985c40, 0x0000027717985e88] Event: 3.891 Thread 0x000002773452f5b0 3908       4       java.lang.Integer::toUnsignedLong (7 bytes) Event: 3.891 Thread 0x000002773452f5b0 nmethod 3908 0x000002771f11fc90 code [0x000002771f11fe00, 0x000002771f11fe68] Event: 3.892 Thread 0x000002772fbe0840 3909       3       sun.misc.Unsafe::putInt (11 bytes) Event: 3.892 Thread 0x000002772fbe0840 nmethod 3909 0x0000027717985f90 code [0x0000027717986120, 0x0000027717986230] Event: 3.892 Thread 0x000002772fbe0840 3910       3       org.lwjgl.system.MemoryUtil::encodeASCIIUnsafe (53 bytes) Event: 3.892 Thread 0x000002772fbe0840 nmethod 3910 0x0000027717986310 code [0x0000027717986500, 0x00000277179868f8] Event: 3.914 Thread 0x000002772f3ede60 3911       3       java.lang.invoke.BoundMethodHandle::rebind (14 bytes) Event: 3.914 Thread 0x000002772fbe0840 3912       3       java.lang.invoke.BoundMethodHandle::tooComplex (27 bytes) Event: 3.914 Thread 0x000002772f45fb10 3913       3       java.lang.invoke.BoundMethodHandle::fieldCount (8 bytes) Event: 3.914 Thread 0x000002772fb2bd10 3914       3       java.lang.invoke.LambdaForm::expressionCount (11 bytes) Event: 3.914 Thread 0x000002773452e140 3915       4       java.lang.invoke.MethodType::makeImpl (109 bytes) Event: 3.915 Thread 0x000002772fb2bd10 nmethod 3914 0x0000027717986a90 code [0x0000027717986c20, 0x0000027717986d40] Event: 3.915 Thread 0x000002772f45fb10 nmethod 3913 0x0000027717986e10 code [0x0000027717986fe0, 0x00000277179872d8] Event: 3.915 Thread 0x000002772fbe0840 nmethod 3912 0x0000027717987410 code [0x0000027717987600, 0x0000027717987a68] Event: 3.915 Thread 0x000002772f3ede60 nmethod 3911 0x0000027717987c10 code [0x0000027717987e20, 0x0000027717988378] Event: 3.915 Thread 0x000002772f45fb10 3918       3       java.lang.invoke.LambdaFormBuffer::indexOf (33 bytes) Event: 3.915 Thread 0x000002772f45fb10 nmethod 3918 0x0000027717988590 code [0x0000027717988760, 0x0000027717988b10] Event: 3.916 Thread 0x000002772fbe0840 3919       3       java.lang.invoke.LambdaFormBuffer::growNames (281 bytes) Event: 3.917 Thread 0x000002772fbe0840 nmethod 3919 0x0000027717988c10 code [0x0000027717988ec0, 0x0000027717989f58] GC Heap History (14 events): Event: 0.523 GC heap before {Heap before GC invocations=0 (full 0):  garbage-first heap   total 262144K, used 38912K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 11 young (22528K), 0 survivors (0K)  Metaspace       used 10273K, committed 10496K, reserved 1114112K   class space    used 846K, committed 960K, reserved 1048576K } Event: 0.527 GC heap after {Heap after GC invocations=1 (full 0):  garbage-first heap   total 262144K, used 23099K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 2 young (4096K), 2 survivors (4096K)  Metaspace       used 10273K, committed 10496K, reserved 1114112K   class space    used 846K, committed 960K, reserved 1048576K } Event: 0.606 GC heap before {Heap before GC invocations=1 (full 0):  garbage-first heap   total 262144K, used 47675K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 14 young (28672K), 2 survivors (4096K)  Metaspace       used 10278K, committed 10496K, reserved 1114112K   class space    used 846K, committed 960K, reserved 1048576K } Event: 0.610 GC heap after {Heap after GC invocations=2 (full 0):  garbage-first heap   total 262144K, used 27824K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 2 young (4096K), 2 survivors (4096K)  Metaspace       used 10278K, committed 10496K, reserved 1114112K   class space    used 846K, committed 960K, reserved 1048576K } Event: 1.047 GC heap before {Heap before GC invocations=2 (full 0):  garbage-first heap   total 262144K, used 58544K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 17 young (34816K), 2 survivors (4096K)  Metaspace       used 12660K, committed 12928K, reserved 1114112K   class space    used 1067K, committed 1216K, reserved 1048576K } Event: 1.050 GC heap after {Heap after GC invocations=3 (full 0):  garbage-first heap   total 262144K, used 29041K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 2 young (4096K), 2 survivors (4096K)  Metaspace       used 12660K, committed 12928K, reserved 1114112K   class space    used 1067K, committed 1216K, reserved 1048576K } Event: 1.710 GC heap before {Heap before GC invocations=3 (full 0):  garbage-first heap   total 262144K, used 205169K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 76 young (155648K), 2 survivors (4096K)  Metaspace       used 13588K, committed 13824K, reserved 1114112K   class space    used 1150K, committed 1280K, reserved 1048576K } Event: 1.716 GC heap after {Heap after GC invocations=4 (full 0):  garbage-first heap   total 262144K, used 47722K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 8 young (16384K), 8 survivors (16384K)  Metaspace       used 13588K, committed 13824K, reserved 1114112K   class space    used 1150K, committed 1280K, reserved 1048576K } Event: 2.168 GC heap before {Heap before GC invocations=4 (full 0):  garbage-first heap   total 262144K, used 207466K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 76 young (155648K), 8 survivors (16384K)  Metaspace       used 13845K, committed 14080K, reserved 1114112K   class space    used 1159K, committed 1280K, reserved 1048576K } Event: 2.182 GC heap after {Heap after GC invocations=5 (full 0):  garbage-first heap   total 262144K, used 87863K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 10 young (20480K), 10 survivors (20480K)  Metaspace       used 13845K, committed 14080K, reserved 1114112K   class space    used 1159K, committed 1280K, reserved 1048576K } Event: 2.664 GC heap before {Heap before GC invocations=5 (full 0):  garbage-first heap   total 262144K, used 159543K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 46 young (94208K), 10 survivors (20480K)  Metaspace       used 21273K, committed 21504K, reserved 1114112K   class space    used 1977K, committed 2112K, reserved 1048576K } Event: 2.670 GC heap after {Heap after GC invocations=6 (full 0):  garbage-first heap   total 262144K, used 72852K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 4 young (8192K), 4 survivors (8192K)  Metaspace       used 21273K, committed 21504K, reserved 1114112K   class space    used 1977K, committed 2112K, reserved 1048576K } Event: 3.576 GC heap before {Heap before GC invocations=7 (full 0):  garbage-first heap   total 262144K, used 210068K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 69 young (141312K), 4 survivors (8192K)  Metaspace       used 25540K, committed 25920K, reserved 1114112K   class space    used 2492K, committed 2688K, reserved 1048576K } Event: 3.586 GC heap after {Heap after GC invocations=8 (full 0):  garbage-first heap   total 262144K, used 91313K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 9 young (18432K), 9 survivors (18432K)  Metaspace       used 25540K, committed 25920K, reserved 1114112K   class space    used 2492K, committed 2688K, reserved 1048576K } Dll operation events (11 events): Event: 0.010 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\java.dll Event: 0.018 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\zip.dll Event: 0.064 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\jsvml.dll Event: 0.157 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\net.dll Event: 0.159 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\nio.dll Event: 0.166 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\zip.dll Event: 0.273 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\jimage.dll Event: 0.679 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\verify.dll Event: 2.500 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\management.dll Event: 2.503 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\management_ext.dll Event: 3.859 Loaded shared library \curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041\lwjgl.dll Deoptimization events (20 events): Event: 3.831 Thread 0x000002771353b650 DEOPT PACKING pc=0x000002771eeb824c sp=0x000000fb5a5fc8b0 Event: 3.831 Thread 0x000002771353b650 DEOPT UNPACKING pc=0x000002771e6c46a2 sp=0x000000fb5a5fc828 mode 2 Event: 3.836 Thread 0x000002771353b650 Uncommon trap: trap_request=0xffffffde fr.pc=0x000002771ef3a72c relative=0x00000000000001cc Event: 3.836 Thread 0x000002771353b650 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000002771ef3a72c method=java.nio.ByteBuffer.put(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer; @ 10 c2 Event: 3.836 Thread 0x000002771353b650 DEOPT PACKING pc=0x000002771ef3a72c sp=0x000000fb5a5fdc40 Event: 3.836 Thread 0x000002771353b650 DEOPT UNPACKING pc=0x000002771e6c46a2 sp=0x000000fb5a5fdc20 mode 2 Event: 3.836 Thread 0x000002771353b650 Uncommon trap: trap_request=0xffffffde fr.pc=0x000002771ef3a72c relative=0x00000000000001cc Event: 3.836 Thread 0x000002771353b650 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000002771ef3a72c method=java.nio.ByteBuffer.put(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer; @ 10 c2 Event: 3.836 Thread 0x000002771353b650 DEOPT PACKING pc=0x000002771ef3a72c sp=0x000000fb5a5fdc40 Event: 3.836 Thread 0x000002771353b650 DEOPT UNPACKING pc=0x000002771e6c46a2 sp=0x000000fb5a5fdc20 mode 2 Event: 3.855 Thread 0x000002771353b650 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000002771ef578c0 relative=0x0000000000000d40 Event: 3.855 Thread 0x000002771353b650 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000002771ef578c0 method=sun.nio.ch.FileChannelImpl.read(Ljava/nio/ByteBuffer;)I @ 196 c2 Event: 3.855 Thread 0x000002771353b650 DEOPT PACKING pc=0x000002771ef578c0 sp=0x000000fb5a5fca00 Event: 3.855 Thread 0x000002771353b650 DEOPT UNPACKING pc=0x000002771e6c46a2 sp=0x000000fb5a5fc9b8 mode 2 Event: 3.866 Thread 0x000002771353b650 DEOPT PACKING pc=0x0000027717669dd7 sp=0x000000fb5a5fc960 Event: 3.866 Thread 0x000002771353b650 DEOPT UNPACKING pc=0x000002771e6c4e42 sp=0x000000fb5a5fbe18 mode 0 Event: 3.885 Thread 0x000002771353b650 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000002771f0254e0 relative=0x00000000000016a0 Event: 3.885 Thread 0x000002771353b650 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000002771f0254e0 method=java.util.concurrent.ConcurrentHashMap.transfer([Ljava/util/concurrent/ConcurrentHashMap$Node;[Ljava/util/concurrent/ConcurrentHashMap$Node;)V @ 26 c2 Event: 3.885 Thread 0x000002771353b650 DEOPT PACKING pc=0x000002771f0254e0 sp=0x000000fb5a5fc310 Event: 3.885 Thread 0x000002771353b650 DEOPT UNPACKING pc=0x000002771e6c46a2 sp=0x000000fb5a5fc280 mode 2 Classes loaded (20 events): Event: 3.877 Loading class java/nio/DirectCharBufferU Event: 3.877 Loading class java/nio/DirectCharBufferU done Event: 3.877 Loading class java/nio/DirectFloatBufferU Event: 3.877 Loading class java/nio/DirectFloatBufferU done Event: 3.877 Loading class java/nio/DirectDoubleBufferU Event: 3.878 Loading class java/nio/DirectDoubleBufferU done Event: 3.879 Loading class java/util/function/LongPredicate Event: 3.879 Loading class java/util/function/LongPredicate done Event: 3.882 Loading class java/nio/InvalidMarkException Event: 3.882 Loading class java/nio/InvalidMarkException done Event: 3.882 Loading class java/nio/BufferUnderflowException Event: 3.883 Loading class java/nio/BufferUnderflowException done Event: 3.913 Loading class java/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask Event: 3.913 Loading class java/util/concurrent/FutureTask Event: 3.913 Loading class java/util/concurrent/FutureTask done Event: 3.913 Loading class java/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask done Event: 3.913 Loading class java/util/concurrent/FutureTask$WaitNode Event: 3.913 Loading class java/util/concurrent/FutureTask$WaitNode done Event: 3.913 Loading class java/util/concurrent/Executors$RunnableAdapter Event: 3.913 Loading class java/util/concurrent/Executors$RunnableAdapter done Classes unloaded (0 events): No events Classes redefined (0 events): No events Internal exceptions (20 events): Event: 3.778 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070da96fb0}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeVirtual(java.lang.Object, java.lang.Object)'> (0x000000070da96fb0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.778 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070da9afe0}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, int, int)'> (0x000000070da9afe0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.778 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070daa24d8}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, long, long)'> (0x000000070daa24d8)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.779 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070daa8f70}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, float, float)'> (0x000000070daa8f70)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.779 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070daafa00}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, double, double)'> (0x000000070daafa00)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.779 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070dab3fa0}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStatic(java.lang.Object, long)'> (0x000000070dab3fa0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.832 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d4ae350}: method resolution failed> (0x000000070d4ae350)  thrown [s\src\hotspot\share\prims\methodHandles.cpp, line 1144] Event: 3.837 Thread 0x000002771353b650 Exception <a 'sun/nio/fs/WindowsException'{0x000000070d4e05f8}> (0x000000070d4e05f8)  thrown [s\src\hotspot\share\prims\jni.cpp, line 520] Event: 3.848 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d5ce078}: 'void java.lang.System.load(java.lang.String, java.lang.Class)'> (0x000000070d5ce078)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.850 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d5e4038}: 'void java.lang.System.loadLibrary(java.lang.String, java.lang.Class)'> (0x000000070d5e4038)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.857 Thread 0x000002771353b650 Exception <a 'sun/nio/fs/WindowsException'{0x000000070d207638}> (0x000000070d207638)  thrown [s\src\hotspot\share\prims\jni.cpp, line 520] Event: 3.857 Thread 0x000002771353b650 Exception <a 'sun/nio/fs/WindowsException'{0x000000070d207a58}> (0x000000070d207a58)  thrown [s\src\hotspot\share\prims\jni.cpp, line 520] Event: 3.873 Thread 0x000002771353b650 Exception <a 'sun/nio/fs/WindowsException'{0x000000070d2482a0}> (0x000000070d2482a0)  thrown [s\src\hotspot\share\prims\jni.cpp, line 520] Event: 3.873 Thread 0x000002771353b650 Exception <a 'sun/nio/fs/WindowsException'{0x000000070d2486e0}> (0x000000070d2486e0)  thrown [s\src\hotspot\share\prims\jni.cpp, line 520] Event: 3.879 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d2988d0}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, java.lang.Object, int, long)'> (0x000000070d2988d0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.880 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d29dbd8}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.newInvokeSpecial(java.lang.Object, java.lang.Object, int)'> (0x000000070d29dbd8)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.881 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d2ae9a0}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, java.lang.Object, long, long)'> (0x000000070d2ae9a0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.882 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d2b4070}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.newInvokeSpecial(java.lang.Object, java.lang.Object, long)'> (0x000000070d2b4070)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.882 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d2b7898}: 'java.lang.Object java.lang.invoke.Invokers$Holder.linkToTargetMethod(java.lang.Object, long, java.lang.Object)'> (0x000000070d2b7898)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.882 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d2bea90}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, java.lang.Object, java.lang.Object, long)'> (0x000000070d2bea90)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] ZGC Phase Switch (0 events): No events VM Operations (20 events): Event: 2.677 Executing VM operation: CollectForMetadataAllocation (Metadata GC Threshold) Event: 2.677 Executing VM operation: CollectForMetadataAllocation (Metadata GC Threshold) done Event: 2.681 Executing VM operation: G1PauseRemark Event: 2.683 Executing VM operation: G1PauseRemark done Event: 2.688 Executing VM operation: G1PauseCleanup Event: 2.688 Executing VM operation: G1PauseCleanup done Event: 2.784 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 2.784 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 2.785 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 2.785 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 2.822 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 2.822 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 2.833 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 2.833 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 2.844 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 2.844 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 2.886 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 2.886 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 3.576 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) Event: 3.586 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done Memory protections (0 events): No events Nmethod flushes (0 events): No events Events (20 events): Event: 0.488 Thread 0x000002772f3ede60 Thread added: 0x0000027734206af0 Event: 0.545 Thread 0x000002772f6f2ff0 Thread added: 0x000002772fb59250 Event: 0.551 Thread 0x000002772f45fb10 Thread added: 0x000002773402f810 Event: 0.551 Thread 0x000002772f45fb10 Thread added: 0x00000277344ab6e0 Event: 0.551 Thread 0x000002772f45fb10 Thread added: 0x00000277344a9fa0 Event: 1.431 Thread 0x00000277344a9fa0 Thread exited: 0x00000277344a9fa0 Event: 1.835 Thread 0x00000277344ab6e0 Thread exited: 0x00000277344ab6e0 Event: 2.029 Thread 0x000002773402f810 Thread exited: 0x000002773402f810 Event: 2.029 Thread 0x000002772fb59250 Thread exited: 0x000002772fb59250 Event: 2.033 Thread 0x0000027734206af0 Thread exited: 0x0000027734206af0 Event: 2.255 Thread 0x000002772f6f3690 Thread exited: 0x000002772f6f3690 Event: 2.304 Thread 0x000002772f3ede60 Thread added: 0x000002773452e140 Event: 2.312 Thread 0x000002772fbe0840 Thread added: 0x000002773452f5b0 Event: 2.312 Thread 0x000002772fbe0840 Thread added: 0x000002773452eee0 Event: 2.314 Thread 0x000002773452f5b0 Thread added: 0x000002773452e810 Event: 2.314 Thread 0x000002773452f5b0 Thread added: 0x00000277345310f0 Event: 2.789 Thread 0x000002771353b650 Thread added: 0x0000027734847480 Event: 2.800 Thread 0x0000027734847480 Thread exited: 0x0000027734847480 Event: 3.027 Thread 0x00000277345310f0 Thread added: 0x0000027734530a20 Event: 3.914 Thread 0x000002771353b650 Thread added: 0x0000027738551f10 Dynamic libraries: 0x00007ff7094c0000 - 0x00007ff7094ce000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\javaw.exe 0x00007ff96e1a0000 - 0x00007ff96e406000     C:\WINDOWS\SYSTEM32\ntdll.dll 0x00007ff96d320000 - 0x00007ff96d3e9000     C:\WINDOWS\System32\KERNEL32.DLL 0x00007ff96b900000 - 0x00007ff96bccc000     C:\WINDOWS\System32\KERNELBASE.dll 0x00007ff968380000 - 0x00007ff96841e000     C:\WINDOWS\SYSTEM32\apphelp.dll 0x00007ff96b4e0000 - 0x00007ff96b62b000     C:\WINDOWS\System32\ucrtbase.dll 0x00007ff956500000 - 0x00007ff956518000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\jli.dll 0x00007ff9560d0000 - 0x00007ff9560ed000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\VCRUNTIME140.dll 0x00007ff96df90000 - 0x00007ff96e15a000     C:\WINDOWS\System32\USER32.dll 0x00007ff96b330000 - 0x00007ff96b357000     C:\WINDOWS\System32\win32u.dll 0x00007ff96db20000 - 0x00007ff96db4b000     C:\WINDOWS\System32\GDI32.dll 0x00007ff950e90000 - 0x00007ff95112a000     C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.3912_none_3e07963ce335137e\COMCTL32.dll 0x00007ff96bd80000 - 0x00007ff96beb2000     C:\WINDOWS\System32\gdi32full.dll 0x00007ff96da70000 - 0x00007ff96db19000     C:\WINDOWS\System32\msvcrt.dll 0x00007ff96bcd0000 - 0x00007ff96bd73000     C:\WINDOWS\System32\msvcp_win.dll 0x00007ff96d1e0000 - 0x00007ff96d210000     C:\WINDOWS\System32\IMM32.DLL 0x00007ff9564f0000 - 0x00007ff9564fc000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\vcruntime140_1.dll 0x00007ff9493d0000 - 0x00007ff94945d000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\msvcp140.dll 0x00007ff8b8980000 - 0x00007ff8b9718000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\server\jvm.dll 0x00007ff96c470000 - 0x00007ff96c522000     C:\WINDOWS\System32\ADVAPI32.dll 0x00007ff96dee0000 - 0x00007ff96df86000     C:\WINDOWS\System32\sechost.dll 0x00007ff96c5e0000 - 0x00007ff96c6f6000     C:\WINDOWS\System32\RPCRT4.dll 0x00007ff96cfa0000 - 0x00007ff96d014000     C:\WINDOWS\System32\WS2_32.dll 0x00007ff96ab70000 - 0x00007ff96abce000     C:\WINDOWS\SYSTEM32\POWRPROF.dll 0x00007ff962a70000 - 0x00007ff962aa6000     C:\WINDOWS\SYSTEM32\WINMM.dll 0x00007ff963f50000 - 0x00007ff963f5b000     C:\WINDOWS\SYSTEM32\VERSION.dll 0x00007ff96ab00000 - 0x00007ff96ab14000     C:\WINDOWS\SYSTEM32\UMPDC.dll 0x00007ff96a0f0000 - 0x00007ff96a10a000     C:\WINDOWS\SYSTEM32\kernel.appcore.dll 0x00007ff956040000 - 0x00007ff95604a000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\jimage.dll 0x00007ff95f8c0000 - 0x00007ff95fb01000     C:\WINDOWS\SYSTEM32\DBGHELP.DLL 0x00007ff96db50000 - 0x00007ff96ded4000     C:\WINDOWS\System32\combase.dll 0x00007ff96d070000 - 0x00007ff96d150000     C:\WINDOWS\System32\OLEAUT32.dll 0x00007ff94fdf0000 - 0x00007ff94fe29000     C:\WINDOWS\SYSTEM32\dbgcore.DLL 0x00007ff96bec0000 - 0x00007ff96bf59000     C:\WINDOWS\System32\bcryptPrimitives.dll 0x00007ff956020000 - 0x00007ff956040000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\java.dll 0x00007ff94f3f0000 - 0x00007ff94f408000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\zip.dll 0x00007ff96c870000 - 0x00007ff96cf9d000     C:\WINDOWS\System32\SHELL32.dll 0x00007ff96b6f0000 - 0x00007ff96b864000     C:\WINDOWS\System32\wintypes.dll 0x00007ff968fc0000 - 0x00007ff969816000     C:\WINDOWS\SYSTEM32\windows.storage.dll 0x00007ff96d4c0000 - 0x00007ff96d5af000     C:\WINDOWS\System32\SHCORE.dll 0x00007ff96d160000 - 0x00007ff96d1c9000     C:\WINDOWS\System32\shlwapi.dll 0x00007ff96b240000 - 0x00007ff96b26f000     C:\WINDOWS\SYSTEM32\profapi.dll 0x00007ff943360000 - 0x00007ff943436000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\jsvml.dll 0x00007ff94f3e0000 - 0x00007ff94f3f0000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\net.dll 0x00007ff963630000 - 0x00007ff96374e000     C:\WINDOWS\SYSTEM32\WINHTTP.dll 0x00007ff96a660000 - 0x00007ff96a6ca000     C:\WINDOWS\system32\mswsock.dll 0x00007ff94db00000 - 0x00007ff94db16000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\nio.dll 0x00007ff94e490000 - 0x00007ff94e4a0000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\verify.dll 0x00007ff94daf0000 - 0x00007ff94dafa000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\management.dll 0x00007ff94dae0000 - 0x00007ff94daeb000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\management_ext.dll 0x00007ff96c460000 - 0x00007ff96c468000     C:\WINDOWS\System32\PSAPI.DLL 0x00007ff950430000 - 0x00007ff950448000     C:\WINDOWS\system32\napinsp.dll 0x00007ff969c20000 - 0x00007ff969d47000     C:\WINDOWS\SYSTEM32\DNSAPI.dll 0x00007ff969b80000 - 0x00007ff969bb3000     C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL 0x00007ff96d1d0000 - 0x00007ff96d1da000     C:\WINDOWS\System32\NSI.dll 0x00007ff950410000 - 0x00007ff950422000     C:\WINDOWS\System32\winrnr.dll 0x00007ff9500f0000 - 0x00007ff950120000     C:\WINDOWS\system32\nlansp_c.dll 0x00007ff962480000 - 0x00007ff9624a0000     C:\WINDOWS\system32\wshbth.dll 0x00007ff962820000 - 0x00007ff96282b000     C:\Windows\System32\rasadhlp.dll 0x00007ff964640000 - 0x00007ff9646c6000     C:\WINDOWS\System32\fwpuclnt.dll 0x00007ff9499b0000 - 0x00007ff949a2b000     \curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041\lwjgl.dll 0x00007ff944650000 - 0x00007ff9446d2000     \curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041\glfw.dll 0x00007ff949380000 - 0x00007ff9493cb000     C:\WINDOWS\SYSTEM32\dinput8.dll 0x00007ff94dac0000 - 0x00007ff94dad2000     C:\WINDOWS\SYSTEM32\xinput1_4.dll 0x00007ff96afd0000 - 0x00007ff96affd000     C:\WINDOWS\SYSTEM32\DEVOBJ.dll 0x00007ff96af70000 - 0x00007ff96afc7000     C:\WINDOWS\SYSTEM32\cfgmgr32.dll 0x00007ff968900000 - 0x00007ff968936000     C:\WINDOWS\SYSTEM32\dwmapi.dll 0x00007ff952220000 - 0x00007ff952401000     C:\WINDOWS\SYSTEM32\inputhost.dll 0x00007ff967fa0000 - 0x00007ff9680c6000     C:\WINDOWS\SYSTEM32\CoreMessaging.dll 0x00007ff968520000 - 0x00007ff9685cf000     C:\WINDOWS\system32\uxtheme.dll 0x00007ff96a920000 - 0x00007ff96a92c000     C:\WINDOWS\SYSTEM32\CRYPTBASE.DLL 0x00007ff96c700000 - 0x00007ff96c85f000     C:\WINDOWS\System32\MSCTF.dll 0x00007ff8df200000 - 0x00007ff8df30c000     C:\WINDOWS\SYSTEM32\opengl32.dll 0x00007ff8dec00000 - 0x00007ff8dec2d000     C:\WINDOWS\SYSTEM32\GLU32.dll 0x00007ff9686c0000 - 0x00007ff968707000     C:\WINDOWS\SYSTEM32\dxcore.dll 0x00007ff968710000 - 0x00007ff968770000     C:\WINDOWS\SYSTEM32\directxdatabasehelper.dll 0x00007ff9595a0000 - 0x00007ff9595ba000     C:\WINDOWS\SYSTEM32\windows.staterepositorycore.dll 0x00007ff91df60000 - 0x00007ff91df8d000     C:\WINDOWS\System32\DriverStore\FileRepository\u0387389.inf_amd64_995be970e30b8c79\B385477\atig6pxx.dll 0x00007ff8b32e0000 - 0x00007ff8b6f6b000     C:\WINDOWS\System32\DriverStore\FileRepository\u0387389.inf_amd64_995be970e30b8c79\B385477\atio6axx.dll 0x00007ff96d5c0000 - 0x00007ff96da46000     C:\WINDOWS\System32\SETUPAPI.dll 0x00007ff96b870000 - 0x00007ff96b8f0000     C:\WINDOWS\System32\WINTRUST.dll 0x00007ff96b360000 - 0x00007ff96b4d7000     C:\WINDOWS\System32\CRYPT32.dll 0x00007ff96a970000 - 0x00007ff96a983000     C:\WINDOWS\SYSTEM32\MSASN1.dll dbghelp: loaded successfully - version: 4.0.5 - missing functions: none symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;\curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.3912_none_3e07963ce335137e;\curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\server;\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041;C:\WINDOWS\System32\DriverStore\FileRepository\u0387389.inf_amd64_995be970e30b8c79\B385477 VM Arguments: jvm_args: -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Djava.library.path=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Djna.tmpdir=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Dorg.lwjgl.system.SharedLibraryExtractPath=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Dio.netty.native.workdir=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Dminecraft.launcher.brand=minecraft-launcher -Dminecraft.launcher.version=3.14.2 -Djava.net.preferIPv6Addresses=system -Xmx4096m -Xms256m -Dminecraft.applet.TargetDirectory=\curseforge\minecraft\Instances\sejt seed modded forge -Dfml.ignorePatchDiscrepancies=true -Dfml.ignoreInvalidMinecraftCertificates=true -Duser.language=en -Duser.country=US -DlibraryDirectory=\curseforge\minecraft\Install\libraries -Dlog4j.configurationFile=\curseforge\minecraft\Install\assets\log_configs\client-1.21.2.xml  java_command: net.minecraftforge.bootstrap.ForgeBootstrap --username BingBongMaster27 --version forge-55.0.17 --gameDir \curseforge\minecraft\Instances\sejt seed modded forge --assetsDir \curseforge\minecraft\Install\assets --assetIndex 24 --uuid f68120281c3a4671b587856055e366bf -UTaeapdqVJtu9-ViDPYrMQeXxB4siChHhnieYhKZWD8QrvGUj5J3N--8KoL8DGJC8vSPEwpb7G9YlMGIynR3o4Ri_ZWErl9iSO1h4WxEjZqwKKKUlJ6OP7co2DrCSnf8tVzTJa2pzhpazZecBVD6o2xKtQv5w92Z7AVn-v7kzk8xZiSY4lscbqb4RO9_NVQouUfU5mxCNmpektaO6f_X4vwOlI9UH8oGvlaGkiuP3qL_Rtmqj87ZdxmnROF82aN-Al_I94DH0OfyVL51Sho6TPoEdAJlHervCVl6HWEtuLYAsCp9ykfYiNsx_44WbTZ-a6FBsg --clientId ODM5YTllZmUtMTQzZS00MjVkLWI1MmUtZTZmMmM4MzkxYTIz --xuid 2535410774699131 --userType msa --versionType release --width 1024 --height 768 --quickPlayPath \curseforge\minecraft\Install\quickPlay\java\1747844448525.json --launchTarget forge_client java_class_path (initial): \curseforge\minecraft\Install\libraries\net\minecraftforge\forge\1.21.5-55.0.17\forge-1.21.5-55.0.17-universal.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\forge\1.21.5-55.0.17\forge-1.21.5-55.0.17-client.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\JarJarFileSystems\0.3.26\JarJarFileSystems-0.3.26.jar;\curseforge\minecraft\Install\libraries\com\google\guava\guava\32.1.2-jre\guava-32.1.2-jre.jar;\curseforge\minecraft\Install\libraries\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\securemodules\2.2.21\securemodules-2.2.21.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\unsafe\0.9.2\unsafe-0.9.2.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm\9.7.1\asm-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-tree\9.7.1\asm-tree-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-util\9.7.1\asm-util-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-commons\9.7.1\asm-commons-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-analysis\9.7.1\asm-analysis-9.7.1.jar;\curseforge\minecraft\Install\libraries\de\oceanlabs\mcp\mcp_config\1.21.5-20250325.155543\mcp_config-1.21.5-20250325.155543-srg2off.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\JarJarFileSystems\0.3.26\JarJarFileSystems-0.3.26.jar;\curseforge\minecraft\Install\libraries\com\google\guava\guava\32.1.2-jre\guava-32.1.2-jre.jar;\curseforge\minecraft\Install\libraries\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\securemodules\2.2.21\securemodules-2.2.21.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\unsafe\0.9.2\unsafe-0.9.2.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm\9.7.1\asm-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-tree\9.7.1\asm-tree-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-util\9.7.1\asm-util-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-commons\9.7.1\asm-commons-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-analysis\9.7.1\asm-analysis-9.7.1.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\bootstrap\2.1.8\bootstrap-2.1.8.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\bootstrap-api\2.1.8\bootstrap-api-2.1.8.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\accesstransformers\8.2.2\accesstransformers-8.2.2.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\eventbus\6.2.27\eventbus-6.2.27.jar;\curseforge\minecraft\Install\libraries\net\jodah\typetools\0.6.3\typetools-0.6.3.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\forgespi\7.1.5\forgespi-7.1.5.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\coremods\5.2.6\coremods-5.2.6.jar;\curseforge\minecraft\Install\libraries\org\openjdk\nashorn\nashorn-core\15.4\nashorn-core-15.4.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\modlauncher\10.2.4\modlauncher-10.2.4.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\mergetool-api\1.0\mergetool-api-1.0.jar;\curseforge\minecraft\Install\libraries\com\electronwill\night-config\toml\3.7.4\toml-3.7.4.jar;\curseforge\minecraft\Install\libraries\com\electronwill\night-config\core\3.7.4\core-3.7.4.jar;\curseforge\minecraft\Install\libraries\org\apache\maven\maven-artifact\3.8.8\maven-artifact-3.8.8.jar;\curseforge\minecraft\Install\libraries\net\minecrell\terminalconsoleappender\1.2.0\terminalconsoleappender-1.2.0.jar;\curseforge\minecraft\Install\libraries\org\jline\jline-reader\3.25.1\jline-reader-3.25.1.jar;\curseforge\minecraft\Install\libraries\org\jline\jline-terminal\3.25.1\jline-terminal-3.25.1.jar;\curseforge\minecraft\Install\libraries\org\jline\jline-terminal-jna\3.25.1\jline-terminal-jna-3.25.1.jar;\curseforge\minecraft\Install\libraries\org\spongepowered\mixin\0.8.7\mixin-0.8.7.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\JarJarSelector\0.3.26\JarJarSelector-0.3.26.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\JarJarMetadata\0.3.26\JarJarMetadata-0.3.26.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.21.5-55.0.17\fmlcore-1.21.5-55.0.17.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlloader\1.21.5-55.0.17\fmlloader-1.21.5-55.0.17.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlearlydisplay\1.21.5-55.0.17\fmlearlydisplay-1.21.5-55.0.17.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.21.5-55.0.17\javafmllanguage-1.21.5-55.0.17.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.21.5-55.0.17\lowcodelanguage-1.21.5-55.0.17.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.21.5-55.0.17\mclanguage-1.21.5-55.0.17.jar;\curseforge\minecraft\Install\libraries\com\fasterxml\jackson\core\jackson-annotations\2.13.4\jackson-annotations-2.13.4.jar;\curseforge\minecraft\Install\libraries\com\fasterxml\jackson\core\jackson-core\2.13.4\jackson-core-2.13.4.jar;\curseforge\minecraft\Install\libraries\com\fasterxml\jackson\core\jackson-databind\2.13.4.2\jackson-databind-2.13.4.2.jar;\curseforge\minecraft\Install\libraries\com\github\oshi\oshi-core\6.6.5\oshi-core-6.6.5.jar;\curseforge\minecraft\Install\libraries\com\github\stephenc\jcip\jcip-annotations\1.0-1\jcip-annotations-1.0-1.jar;\curseforge\minecraft\Install\libraries\com\google\code\gson\gson\2.11.0\gson-2.11.0.jar;\curseforge\minecraft\Install\libraries\com\ibm\icu\icu4j\76.1\icu4j-76.1.jar;\curseforge\minecraft\Install\libraries\com\microsoft\azure\msal4j\1.17.2\msal4j-1.17.2.jar;\curseforge\minecraft\Install\libraries\com\mojang\authlib\6.0.58\authlib-6.0.58.jar;\curseforge\minecraft\Install\libraries\com\mojang\blocklist\1.0.10\blocklist-1.0.10.jar;\curseforge\minecraft\Install\libraries\com\mojang\brigadier\1.3.10\brigadier-1.3.10.jar;\curseforge\minecraft\Install\libraries\com\mojang\datafixerupper\8.0.16\datafixerupper-8.0.16.jar;\curseforge\minecraft\Install\libraries\com\mojang\jtracy\1.0.29\jtracy-1.0.29.jar;\curseforge\minecraft\Install\libraries\com\mojang\jtracy\1.0.29\jtracy-1.0.29-natives-windows.jar;\curseforge\minecraft\Install\libraries\com\mojang\logging\1.5.10\logging-1.5.10.jar;\curseforge\minecraft\Install\libraries\com\mojang\patchy\2.2.10\patchy-2.2.10.jar;\curseforge\minecraft\Install\libraries\com\mojang\text2speech\1.18.11\text2speech-1.18.11.jar;\curseforge\minecraft\Install\libraries\com\nimbusds\content-type\2.3\content-type-2.3.jar;\curseforge\minecraft\Install\libraries\com\nimbusds\lang-tag\1.7\lang-tag-1.7.jar;\curseforge\minecraft\Install\libraries\com\nimbusds\nimbus-jose-jwt\9.40\nimbus-jose-jwt-9.40.jar;\curseforge\minecraft\Install\libraries\com\nimbusds\oauth2-oidc-sdk\11.18\oauth2-oidc-sdk-11.18.jar;\curseforge\minecraft\Install\libraries\commons-codec\commons-codec\1.17.1\commons-codec-1.17.1.jar;\curseforge\minecraft\Install\libraries\commons-io\commons-io\2.17.0\commons-io-2.17.0.jar;\curseforge\minecraft\Install\libraries\commons-logging\commons-logging\1.3.4\commons-logging-1.3.4.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-buffer\4.1.118.Final\netty-buffer-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-codec\4.1.118.Final\netty-codec-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-common\4.1.118.Final\netty-common-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-handler\4.1.118.Final\netty-handler-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-resolver\4.1.118.Final\netty-resolver-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-transport-classes-epoll\4.1.118.Final\netty-transport-classes-epoll-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-transport-native-unix-common\4.1.118.Final\netty-transport-native-unix-common-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-transport\4.1.118.Final\netty-transport-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\it\unimi\dsi\fastutil\8.5.15\fastutil-8.5.15.jar;\curseforge\minecraft\Install\libraries\net\java\dev\jna\jna-platform\5.15.0\jna-platform-5.15.0.jar;\curseforge\minecraft\Install\libraries\net\java\dev\jna\jna\5.15.0\jna-5.15.0.jar;\curseforge\minecraft\Install\libraries\net\minidev\accessors-smart\2.5.1\accessors-smart-2.5.1.jar;\curseforge\minecraft\Install\libraries\net\minidev\json-smart\2.5.1\json-smart-2.5.1.jar;\curseforge\minecraft\Install\libraries\net\sf\jopt-simple\jopt-simple\5.0.4\jopt-simple-5.0.4.jar;\curseforge\minecraft\Install\libraries\org\apache\commons\commons-compress\1.27.1\commons-compress-1.27.1.jar;\curseforge\minecraft\Install\libraries\org\apache\commons\commons-lang3\3.17.0\commons-lang3-3.17.0.jar;\curseforge\minecraft\Install\libraries\org\apache\httpcomponents\httpclient\4.5.14\httpclient-4.5.14.jar;\curseforge\minecraft\Install\libraries\org\apache\httpcomponents\httpcore\4.4.16\httpcore-4.4.16.jar;\curseforge\minecraft\Install\libraries\org\apache\logging\log4j\log4j-api\2.24.1\log4j-api-2.24.1.jar;\curseforge\minecraft\Install\libraries\org\apache\logging\log4j\log4j-core\2.24.1\log4j-core-2.24.1.jar;\curseforge\minecraft\Install\libraries\org\apache\logging\log4j\log4j-slf4j2-impl\2.24.1\log4j-slf4j2-impl-2.24.1.jar;\curseforge\minecraft\Install\libraries\org\jcraft\jorbis\0.0.17\jorbis-0.0.17.jar;\curseforge\minecraft\Install\libraries\org\joml\joml\1.10.8\joml-1.10.8.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-freetype\3.3.3\lwjgl-freetype-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-freetype\3.3.3\lwjgl-freetype-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-freetype\3.3.3\lwjgl-freetype-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-freetype\3.3.3\lwjgl-freetype-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-glfw\3.3.3\lwjgl-glfw-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-glfw\3.3.3\lwjgl-glfw-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-glfw\3.3.3\lwjgl-glfw-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-glfw\3.3.3\lwjgl-glfw-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-jemalloc\3.3.3\lwjgl-jemalloc-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-jemalloc\3.3.3\lwjgl-jemalloc-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-jemalloc\3.3.3\lwjgl-jemalloc-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-jemalloc\3.3.3\lwjgl-jemalloc-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-openal\3.3.3\lwjgl-openal-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-openal\3.3.3\lwjgl-openal-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-openal\3.3.3\lwjgl-openal-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-openal\3.3.3\lwjgl-openal-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-opengl\3.3.3\lwjgl-opengl-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-opengl\3.3.3\lwjgl-opengl-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-opengl\3.3.3\lwjgl-opengl-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-opengl\3.3.3\lwjgl-opengl-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-stb\3.3.3\lwjgl-stb-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-stb\3.3.3\lwjgl-stb-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-stb\3.3.3\lwjgl-stb-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-stb\3.3.3\lwjgl-stb-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-tinyfd\3.3.3\lwjgl-tinyfd-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-tinyfd\3.3.3\lwjgl-tinyfd-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-tinyfd\3.3.3\lwjgl-tinyfd-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-tinyfd\3.3.3\lwjgl-tinyfd-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl\3.3.3\lwjgl-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl\3.3.3\lwjgl-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl\3.3.3\lwjgl-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl\3.3.3\lwjgl-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lz4\lz4-java\1.8.0\lz4-java-1.8.0.jar;\curseforge\minecraft\Install\libraries\org\slf4j\slf4j-api\2.0.16\slf4j-api-2.0.16.jar;\curseforge\minecraft\Install\versions\forge-55.0.17\forge-55.0.17.jar Launcher Type: SUN_STANDARD [Global flags]      intx CICompilerCount                          = 12                                        {product} {ergonomic}      uint ConcGCThreads                            = 3                                         {product} {ergonomic}      uint G1ConcRefinementThreads                  = 13                                        {product} {ergonomic}    size_t G1HeapRegionSize                         = 2097152                                   {product} {ergonomic}     uintx GCDrainStackTargetSize                   = 64                                        {product} {ergonomic}     ccstr HeapDumpPath                             = MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump         {manageable} {command line}    size_t InitialHeapSize                          = 268435456                                 {product} {command line}    size_t MarkStackSize                            = 4194304                                   {product} {ergonomic}    size_t MaxHeapSize                              = 4294967296                                {product} {command line}    size_t MaxNewSize                               = 2575302656                                {product} {ergonomic}    size_t MinHeapDeltaBytes                        = 2097152                                   {product} {ergonomic}    size_t MinHeapSize                              = 268435456                                 {product} {command line}     uintx NonNMethodCodeHeapSize                   = 7602480                                {pd product} {ergonomic}     uintx NonProfiledCodeHeapSize                  = 122027880                              {pd product} {ergonomic}     uintx ProfiledCodeHeapSize                     = 122027880                              {pd product} {ergonomic}     uintx ReservedCodeCacheSize                    = 251658240                              {pd product} {ergonomic}      bool SegmentedCodeCache                       = true                                      {product} {ergonomic}    size_t SoftMaxHeapSize                          = 4294967296                             {manageable} {ergonomic}      intx ThreadStackSize                          = 1024                                   {pd product} {command line}      bool UseCompressedOops                        = true                           {product lp64_product} {ergonomic}      bool UseG1GC                                  = true                                      {product} {ergonomic}      bool UseLargePagesIndividualAllocation        = false                                  {pd product} {ergonomic} Logging: Log output configuration:  #0: stdout all=warning uptime,level,tags foldmultilines=false  #1: stderr all=off uptime,level,tags foldmultilines=false Environment Variables: PATH=C:\Program Files (x86)\Common Files\Oracle\Java\java8path;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\dotnet\;\AppData\Local\Microsoft\WindowsApps;\.dotnet\tools; USERNAME=%USERPROFILE% Rick OS=Windows_NT PROCESSOR_IDENTIFIER=AMD64 Family 23 Model 104 Stepping 1, AuthenticAMD TMP=<TMP> TEMP=<TEMP> Periodic native trim disabled ---------------  S Y S T E M  --------------- OS:  Windows 11 , 64 bit Build 26100 (10.0.26100.3912) OS uptime: 2 days 3:13 hours CPU: total 16 (initial active 16) (16 cores per cpu, 2 threads per core) family 23 model 104 stepping 1 microcode 0x8608104, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4a, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, clmul, bmi1, bmi2, adx, sha, fma, vzeroupper, clflush, clflushopt, rdtscp, rdpid, f16c Processor Information for the first 16 processors :   Max Mhz: 1801, Current Mhz: 1801, Mhz Limit: 1801 Memory: 4k page, system-wide physical 15693M (4574M free) TotalPageFile size 17997M (AvailPageFile size 1992M) current process WorkingSet (physical memory assigned to process): 456M, peak: 474M current process commit charge ("private bytes"): 512M, peak: 538M vm_info: OpenJDK 64-Bit Server VM (21.0.7+6-LTS) for windows-amd64 JRE (21.0.7+6-LTS), built on 2025-04-09T22:17:25Z by "MicrosoftCorporation" with unknown MS VC++:1939 END.  
    • i'm working on a mod but i need add a camera shake mechanic to it i tried do this with setPich and SetYaw and setRoll but it didn't work then i tried do this with setDelta method but this thing didn't work too so i need help because i don't know how can i add this
  • Topics

×
×
  • Create New...

Important Information

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