Jump to content

[1.11.2] Stuck at preInitialization


Villfuk02

Recommended Posts

I'm trying to make new block with tons of blockstates and everything seems fine for me, but when i run the game it's stuck at preInit when registering tis block.
It doesn't crash, doesn't write anything in consloe, it's just stuck.

Block Class
 

package vms.archeology.blocks;

import net.minecraft.block.Block;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
import net.minecraft.block.properties.IProperty;
import net.minecraft.block.properties.PropertyBool;
import net.minecraft.block.properties.PropertyInteger;
import net.minecraft.block.state.BlockStateContainer;
import net.minecraft.block.state.IBlockState;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.util.NonNullList;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.RayTraceResult;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import net.minecraftforge.fml.common.registry.GameRegistry;
import net.minecraftforge.oredict.ShapelessOreRecipe;
import vms.archeology.Reference;
import vms.archeology.handlers.EnumHandler.CoilTypes;
import vms.archeology.handlers.EnumHandler.DisplayTypes;
import vms.archeology.handlers.EnumHandler.RodTypes;
import vms.archeology.handlers.EnumHandler.Types;
import vms.archeology.handlers.EnumHandler.Types.BatteryTypes;
import vms.archeology.init.ModItems;

public class DetectorBlock extends Block{
	
	public static PropertyBool found = PropertyBool.create("found");
	public static PropertyInteger coil = PropertyInteger.create("coil", 0, CoilTypes.values().length -1);
	public static PropertyInteger battery = PropertyInteger.create("battery", 0, BatteryTypes.values().length -1);
	public static PropertyInteger rod = PropertyInteger.create("rod", 0, RodTypes.values().length -1);
	public static PropertyInteger display = PropertyInteger.create("display", 0, DisplayTypes.values().length -1);
	public static PropertyInteger distance = PropertyInteger.create("distance", 0, 3);
	public static PropertyInteger direction = PropertyInteger.create("direction", 0, 8);
	public static PropertyInteger type = PropertyInteger.create("type", 0, Types.values().length -1);

	public DetectorBlock(String unlocalizedName) {
		super(Material.GROUND);
		this.setUnlocalizedName(unlocalizedName);
		this.setRegistryName(new ResourceLocation(Reference.MODID, unlocalizedName));
		this.setHardness(420.0f);
		this.setResistance(690.0f);
		this.setDefaultState(this.blockState.getBaseState().withProperty(found, false).withProperty(coil, 0).withProperty(battery, 0).withProperty(rod, 0).withProperty(display, 0).withProperty(distance, 0).withProperty(direction, 0).withProperty(type, 0));
		this.setSoundType(SoundType.GROUND);
	}
	
	@Override
	protected net.minecraft.block.state.BlockStateContainer createBlockState() {
		return new BlockStateContainer(this, found, coil, battery, rod, display, distance, direction, type);
	}
	
	@Override
	public int getMetaFromState(IBlockState state) {
		return 0;
	}
	
	@Override
	public IBlockState getStateFromMeta(int meta) {		
		return this.getDefaultState();
	}	
	
	@Override
	public ItemStack getPickBlock(IBlockState state, RayTraceResult target, World world, BlockPos pos, EntityPlayer player) {
		return new ItemStack(Item.getItemFromBlock(this), 1, 0);
	}
	
	@Override
	public IBlockState getActualState(IBlockState state, IBlockAccess worldIn, BlockPos pos) {
		return state;
	}
	
	@Override
	public void getSubBlocks(Item itemIn, CreativeTabs tab, NonNullList<ItemStack> list) {
		list.add(new ItemStack(itemIn));
	}
	
	
}

 

ModBlocks file called when preInitializing

package vms.archeology.init;

import net.minecraft.block.Block;
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.init.Blocks;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.Item;
import net.minecraft.item.ItemBlock;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.client.model.ModelLoader;
import net.minecraftforge.fml.common.registry.GameRegistry;
import vms.archeology.Archeology;
import vms.archeology.Reference;
import vms.archeology.blocks.ArcheologyDirt;
import vms.archeology.blocks.DetectorBlock;
import vms.archeology.blocks.EmeraldPumpkin;
import vms.archeology.blocks.EmeraldStem;
import vms.archeology.items.DepositeItemBlock;
import vms.archeology.items.RarityItemBlock;
import vms.archeology.items.detector.Detector;
import vms.archeology.util.Utils;

public class ModBlocks {	
	
	public static Block archeology_dirt;	
	
	public static Block emerald_pumpkin;
	public static Block emerald_stem;
	
	public static Block detector_block;
	
	public static void init () {
		archeology_dirt = new ArcheologyDirt("archeology_dirt");
				
		emerald_pumpkin = new EmeraldPumpkin("emerald_pumpkin");
		emerald_stem = new EmeraldStem("emerald_pumpkin_stem");	
		
		detector_block = new DetectorBlock("detector_block");
	}
	
	public static void register() {
		registerBlock(detector_block, false);
		
		registerBlock(archeology_dirt, false, true);
		
		
		registerBlock(emerald_pumpkin, true, Utils.GREEN);
		registerBlock(emerald_stem, false);
	}
	
	public static void registerRenders() {
		for(int i = 0; i < 16; i++) {
			registerRender(archeology_dirt, i , "archeology_dirt");
		}	
		
		registerRender(emerald_pumpkin);
		registerRender(emerald_stem);
		
		registerRender(detector_block);
		
	}
	
	public static void registerBlock(Block block, Boolean item) {
		GameRegistry.register(block);
		GameRegistry.register(new ItemBlock(block).setRegistryName(block.getRegistryName()));
		if (item)
			block.setCreativeTab(Archeology.item);
	}
	
	public static void registerBlock(Block block, Boolean item, EnumRarity rarity) {
		GameRegistry.register(block);
		GameRegistry.register(new RarityItemBlock(block, rarity).setRegistryName(block.getRegistryName()));
		if (item)
			block.setCreativeTab(Archeology.item);
	}
	
	public static void registerBlock(Block block, Boolean item, Boolean deposite) {
		if (deposite)
			block.setCreativeTab(Archeology.deposite);
		if (item)
			block.setCreativeTab(Archeology.item);
		GameRegistry.register(block);
		if (deposite)
			GameRegistry.register(new DepositeItemBlock(block).setRegistryName(block.getRegistryName()));
		else
			GameRegistry.register(new ItemBlock(block).setRegistryName(block.getRegistryName()));
	}
	
		
	public static void registerRender(Block block) {
		ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(block), 0, new ModelResourceLocation(new ResourceLocation(Reference.MODID, block.getUnlocalizedName().substring(5)), "inventory"));
		
	}
	
	public static void registerRender(Block block, int meta, String fileName) {
		ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(block), meta, new ModelResourceLocation(new ResourceLocation(Reference.MODID, fileName), "inventory"));
		
	}

}

 

 

thanks for any help

Link to comment
Share on other sites

Main mod class
 

package vms.archeology;

import net.minecraft.creativetab.CreativeTabs;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.SidedProxy;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import vms.archeology.creativetabs.TabDeposites;
import vms.archeology.creativetabs.TabItems;
import vms.archeology.handlers.OreDictHandler;
import vms.archeology.handlers.RecipeHandler;
import vms.archeology.init.ModBlocks;
import vms.archeology.init.ModItems;
import vms.archeology.init.ModTools;
import vms.archeology.proxy.CommonProxy;
import vms.archeology.util.Utils;

@Mod(modid = Reference.MODID, name = Reference.NAME, version = Reference.VERSION)
public class Archeology {
	
	
	public static final CreativeTabs deposite = new TabDeposites();
	public static final CreativeTabs item = new TabItems();
	
	vms.archeology.handlers.EventHandler eventHandler = new vms.archeology.handlers.EventHandler();
	
	@Mod.Instance(Reference.MODID)
	public static Archeology instance;
	
	@SidedProxy(serverSide = Reference.SERVER_PROXY_CLASS, clientSide = Reference.CLIENT_PROXY_CLASS)
	public static CommonProxy proxy;

	@EventHandler
	public void preInit(FMLPreInitializationEvent event){
		Utils.getLogger().info("Registering Items");
		ModItems.init();
		ModBlocks.init();
		ModTools.init();
		ModItems.register();
		ModBlocks.register();
		ModTools.register();
		
		proxy.registerRenders();
	}
	
	@EventHandler
	public void init(FMLInitializationEvent event){
		Utils.getLogger().info("Registering OreDictionary");
		OreDictHandler.registerOreDict();
		Utils.getLogger().info("Registering Events");
		eventHandler.registerEvents();
		proxy.init();
		proxy.registerModelBakeryVariants();
	}
	
	@EventHandler
	public void postInit(FMLPostInitializationEvent event){
		Utils.getLogger().info("Registering Recipes");
		RecipeHandler.registerCraftingRecipes();
		RecipeHandler.registerSmeltingRecipes();
	}
	
}

 

 

FML log

[20:14:28] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
[20:14:28] [main/INFO] [FML/]: Forge Mod Loader version 13.20.0.2210 for Minecraft 1.11.2 loading
[20:14:28] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_101, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jdk1.8.0_101\jre
[20:14:28] [main/DEBUG] [FML/]: Java classpath at launch is C:\Users\Villfuk\Desktop\Archeology\bin;C:\Users\Villfuk\.gradle\caches\minecraft\net\minecraftforge\forge\1.11.2-13.20.0.2210\snapshot\20161220\forgeSrc-1.11.2-13.20.0.2210.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.1\f7be08ec23c21485b9b5a1cf1654c2ec8c58168d\jsr305-3.0.1.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.mojang\netty\1.6\4b75825a06139752bd800d9e29c5fd55b8b1b1e4\netty-1.6.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar;C:\Users\Villfuk\.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\Villfuk\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.24\889ff5477b844800cff734babbf42c1bbda4b10\authlib-1.5.24.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.10.13\bc40a390634d2ece4d89b9904101932a4de98588\realms-1.10.13.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\7.0.12_mojang\ba787e741efdc425fc5d2ea654b57c15fba27efa\fastutil-7.0.12_mojang.jar;C:\Users\Villfuk\.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\Villfuk\.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\Villfuk\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar;C:\Users\Villfuk\.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\Villfuk\.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\Villfuk\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar;C:\Users\Villfuk\.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\Villfuk\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar;C:\Users\Villfuk\.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\Villfuk\.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\Villfuk\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar;C:\Users\Villfuk\.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\Villfuk\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar;C:\Users\Villfuk\.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\Villfuk\.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\Villfuk\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\Villfuk\.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\Villfuk\.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\Villfuk\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar;C:\Users\Villfuk\.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\Villfuk\.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\Villfuk\.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\Villfuk\.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\Villfuk\.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\Villfuk\.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\Villfuk\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar;C:\Users\Villfuk\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar;C:\Users\Villfuk\.gradle\caches\minecraft\net\minecraftforge\forge\1.11.2-13.20.0.2210\start
[20:14:28] [main/DEBUG] [FML/]: Java library path at launch is C:\Program Files\Java\jdk1.8.0_101\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\ProgramData\Oracle\Java\javapath;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\GtkSharp\2.12\bin;C:\Program Files\Git\cmd;C:\FFMPEG\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\GtkSharp\2.12\bin;C:\FFMPEG\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WIND;.;C:/Users/Villfuk/.gradle/caches/minecraft/net/minecraft/natives/1.11.2
[20:14:28] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[20:14:28] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin
[20:14:28] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers
[20:14:28] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin
[20:14:28] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin
[20:14:28] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin
[20:14:28] [main/DEBUG] [FML/]: All fundamental core mods are successfully located
[20:14:28] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to C:\Users\Villfuk\Desktop\Archeology\run\.
[20:14:28] [main/DEBUG] [FML/]: Discovering coremods
[20:14:28] [main/DEBUG] [FML/]: Examining for coremod candidacy jei_1.11.2-4.2.2.215.jar
[20:14:28] [main/DEBUG] [FML/]: Not found coremod data in jei_1.11.2-4.2.2.215.jar
[20:14:28] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[20:14:28] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[20:14:28] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[20:14:28] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[20:14:28] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[20:14:28] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[20:14:28] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[20:14:28] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[20:14:28] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[20:14:28] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} class transformers
[20:14:28] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer
[20:14:29] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer
[20:14:29] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer
[20:14:29] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer
[20:14:29] [main/DEBUG] [FML/]: Injection complete
[20:14:29] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin}
[20:14:29] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin
[20:14:29] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[20:14:30] [main/DEBUG] [FML/]: Loading deobfuscation resource C:\Users\Villfuk\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_snapshot\20161220\1.11.2\srgs\srg-mcp.srg with 33532 records
[20:14:36] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing
[20:14:36] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully
[20:14:36] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[20:14:36] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers
[20:14:36] [main/DEBUG] [FML/]: Injection complete
[20:14:36] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin}
[20:14:36] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin
[20:14:36] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully
[20:14:36] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[20:14:36] [main/DEBUG] [FML/]: Loaded 190 rules from AccessTransformer config file forge_at.cfg
[20:14:36] [main/DEBUG] [FML/]: Loaded 2 rules from AccessTransformer mod jar file C:\Users\Villfuk\Desktop\Archeology\run\mods\jei_1.11.2-4.2.2.215.jar!META-INF/jei_at.cfg

[20:14:36] [main/DEBUG] [FML/]: Validating minecraft
[20:14:39] [main/DEBUG] [FML/]: Minecraft validated, launching...
[20:14:39] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[20:14:39] [main/DEBUG] [GradleStart/]: Reading CSV file: C:\Users\Villfuk\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_snapshot\20161220\fields.csv
[20:14:39] [main/DEBUG] [GradleStart/]: Reading CSV file: C:\Users\Villfuk\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_snapshot\20161220\methods.csv
[20:14:39] [main/INFO] [GradleStart/]: Remapping AccessTransformer rules...
[20:14:39] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[20:14:39] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[20:14:39] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[20:14:58] [Client thread/DEBUG] [FML/]: Creating vanilla freeze snapshot
[20:14:58] [Client thread/DEBUG] [FML/]: Vanilla freeze snapshot created
[20:15:01] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0.002s
[20:15:02] [Client thread/INFO] [FML/]: MinecraftForge v13.20.0.2210 Initialized
[20:15:02] [Client thread/INFO] [FML/]: Replaced 232 ore recipes
[20:15:03] [Client thread/DEBUG] [FML/]: File C:\Users\Villfuk\Desktop\Archeology\run\config\injectedDependencies.json not found. No dependencies injected
[20:15:03] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer]
[20:15:03] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes
[20:15:03] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\Villfuk\Desktop\Archeology\bin, examining for mod candidates
[20:15:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Villfuk\.gradle\caches\minecraft\net\minecraftforge\forge\1.11.2-13.20.0.2210\snapshot\20161220\forgeSrc-1.11.2-13.20.0.2210.jar, examining for mod candidates
[20:15:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.1\f7be08ec23c21485b9b5a1cf1654c2ec8c58168d\jsr305-3.0.1.jar, examining for mod candidates
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.mojang\netty\1.6\4b75825a06139752bd800d9e29c5fd55b8b1b1e4\netty-1.6.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.23.Final\294104aaf1781d6a56a07d561e792c5d0c95f45\netty-all-4.0.23.Final.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.24\889ff5477b844800cff734babbf42c1bbda4b10\authlib-1.5.24.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.10.13\bc40a390634d2ece4d89b9904101932a4de98588\realms-1.10.13.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\7.0.12_mojang\ba787e741efdc425fc5d2ea654b57c15fba27efa\fastutil-7.0.12_mojang.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar
[20:15:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Villfuk\.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
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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
[20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar
[20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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
[20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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
[20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar
[20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar
[20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar
[20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar
[20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar
[20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar
[20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar
[20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar
[20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar
[20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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
[20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar
[20:15:04] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar, examining for mod candidates
[20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar
[20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar
[20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar
[20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar
[20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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
[20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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
[20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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
[20:15:04] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Villfuk\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar, examining for mod candidates
[20:15:04] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Villfuk\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar, examining for mod candidates
[20:15:04] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\Villfuk\.gradle\caches\minecraft\net\minecraftforge\forge\1.11.2-13.20.0.2210\start, examining for mod candidates
[20:15:04] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully
[20:15:04] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer
[20:15:04] [Client thread/INFO] [FML/]: Searching C:\Users\Villfuk\Desktop\Archeology\run\mods for mods
[20:15:04] [Client thread/DEBUG] [FML/]: Found a candidate mod directory BACCUP
[20:15:04] [Client thread/DEBUG] [FML/]: Found a candidate zip or jar file jei_1.11.2-4.2.2.215.jar
[20:15:04] [Client thread/DEBUG] [FML/]: Examining directory bin for potential mods
[20:15:04] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory bin
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/blockstates
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/lang
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/models
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/models/block
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/models/block/detector
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/models/item
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/textures
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/textures/blocks
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/textures/items
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/textures/items/coin
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/textures/items/detector
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/textures/items/food
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology
[20:15:04] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (vms.archeology.Archeology) - loading
[20:15:04] [Client thread/TRACE] [archeology/]: Parsed dependency info : [] [] []
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/blocks
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/capabilities
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/creativetabs
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/handlers
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/init
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/items
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/items/artefacts
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/items/craftingMaterial
[20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/items/detector
[20:15:05] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/proxy
[20:15:05] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/util
[20:15:05] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/worldgen
[20:15:05] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.11.2-13.20.0.2210.jar for potential mods
[20:15:05] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.11.2-13.20.0.2210.jar appears to be missing an mcmod.info file
[20:15:08] [Client thread/DEBUG] [FML/]: Examining file jsr305-3.0.1.jar for potential mods
[20:15:08] [Client thread/DEBUG] [FML/]: The mod container jsr305-3.0.1.jar appears to be missing an mcmod.info file
[20:15:08] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods
[20:15:08] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file
[20:15:08] [Client thread/DEBUG] [FML/]: Examining file jansi-1.11.jar for potential mods
[20:15:08] [Client thread/DEBUG] [FML/]: The mod container jansi-1.11.jar appears to be missing an mcmod.info file
[20:15:08] [Client thread/DEBUG] [FML/]: Examining file compileDummy.jar for potential mods
[20:15:08] [Client thread/DEBUG] [FML/]: The mod container compileDummy.jar appears to be missing an mcmod.info file
[20:15:08] [Client thread/DEBUG] [FML/]: Examining file providedDummy.jar for potential mods
[20:15:08] [Client thread/DEBUG] [FML/]: The mod container providedDummy.jar appears to be missing an mcmod.info file
[20:15:08] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods
[20:15:08] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start
[20:15:08] [Client thread/TRACE] [FML/]: Recursing into package net
[20:15:08] [Client thread/TRACE] [FML/]: Recursing into package net/minecraftforge
[20:15:08] [Client thread/TRACE] [FML/]: Recursing into package net/minecraftforge/gradle
[20:15:08] [Client thread/TRACE] [FML/]: Recursing into package net/minecraftforge/gradle/tweakers
[20:15:08] [Client thread/DEBUG] [FML/]: Examining directory BACCUP for potential mods
[20:15:08] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory BACCUP
[20:15:08] [Client thread/DEBUG] [FML/]: Examining file jei_1.11.2-4.2.2.215.jar for potential mods
[20:15:08] [Client thread/TRACE] [FML/]: Located mcmod.info file in file jei_1.11.2-4.2.2.215.jar
[20:15:08] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (mezz.jei.JustEnoughItems) - loading
[20:15:08] [Client thread/TRACE] [jei/]: Parsed dependency info : [forge@[13.19.0.2180,)] [forge@[13.19.0.2180,)] []
[20:15:09] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 6 mods to load
[20:15:09] [Client thread/DEBUG] [FML/]: Found API mezz.jei.api (owned by jei providing JustEnoughItemsAPI) embedded in jei
[20:15:09] [Client thread/DEBUG] [FML/]: Creating API container dummy for API JustEnoughItemsAPI: owner: jei, dependents: []
[20:15:09] [Client thread/TRACE] [FML/]: Received a system property request ''
[20:15:09] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods
[20:15:09] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods
[20:15:09] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[20:15:09] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[20:15:09] [Client thread/DEBUG] [archeology/]: Enabling mod archeology
[20:15:09] [Client thread/DEBUG] [Archeology/]: Mod Archeology is missing a pack.mcmeta file, substituting a dummy one
[20:15:09] [Client thread/DEBUG] [jei/]: Enabling mod jei
[20:15:09] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied
[20:15:09] [Client thread/TRACE] [FML/]: All mod requirements are satisfied
[20:15:09] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list
[20:15:09] [Client thread/TRACE] [FML/]: Mod sorting completed successfully
[20:15:09] [Client thread/DEBUG] [FML/]: Mod sorting data
[20:15:09] [Client thread/DEBUG] [FML/]: 	archeology(Archeology:0.0.0 (Alpha)): bin ()
[20:15:09] [Client thread/DEBUG] [FML/]: 	jei(Just Enough Items:4.2.2.215): jei_1.11.2-4.2.2.215.jar (required-after:forge@[13.19.0.2180,);)
[20:15:09] [Client thread/DEBUG] [FML/]: 	JustEnoughItemsAPI(API: JustEnoughItemsAPI:4.11.0): jei_1.11.2-4.2.2.215.jar ()
[20:15:09] [Client thread/DEBUG] [FML/]: Loading @Config anotation data
[20:15:09] [Client thread/TRACE] [minecraft/minecraft]: Sending event FMLConstructionEvent to mod minecraft
[20:15:09] [Client thread/TRACE] [minecraft/minecraft]: Sent event FMLConstructionEvent to mod minecraft
[20:15:09] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft took 0.009s
[20:15:09] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp
[20:15:09] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp
[20:15:09] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0.001s
[20:15:09] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML
[20:15:10] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists
[20:15:10] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection
[20:15:10] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (8.0.99.99)
[20:15:10] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, archeology, jei] at CLIENT
[20:15:10] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, archeology, jei] at SERVER
[20:15:11] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML
[20:15:11] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 2.374s
[20:15:11] [Client thread/TRACE] [forge/forge]: Sending event FMLConstructionEvent to mod forge
[20:15:11] [Client thread/DEBUG] [forge/forge]: Preloading CrashReport Classes
[20:15:11] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$10
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$11
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$12
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$13
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$14
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$15
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$3
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$4
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$5
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$6
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$7
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$8
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$9
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/multiplayer/WorldClient$1
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/multiplayer/WorldClient$2
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/multiplayer/WorldClient$3
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/multiplayer/WorldClient$4
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/particle/ParticleManager$1
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/particle/ParticleManager$2
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/particle/ParticleManager$3
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/particle/ParticleManager$4
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/EntityRenderer$2
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/EntityRenderer$3
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/EntityRenderer$4
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/RenderGlobal$1
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/RenderItem$1
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/RenderItem$2
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/RenderItem$3
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/RenderItem$4
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/texture/TextureAtlasSprite$1
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/texture/TextureManager$1
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/texture/TextureMap$1
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/texture/TextureMap$2
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/texture/TextureMap$3
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReport$1
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReport$2
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReport$3
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReport$4
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReport$5
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReport$6
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReport$7
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReportCategory$1
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReportCategory$2
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReportCategory$3
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReportCategory$4
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReportCategory$5
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/entity/Entity$2
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/entity/Entity$3
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/entity/Entity$4
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/entity/Entity$5
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/entity/EntityTracker$1
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/entity/player/InventoryPlayer$1
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/nbt/NBTTagCompound$1
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/nbt/NBTTagCompound$2
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/network/NetHandlerPlayServer$3
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/network/NetworkSystem$6
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/server/MinecraftServer$2
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/server/MinecraftServer$3
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/server/dedicated/DedicatedServer$3
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/server/dedicated/DedicatedServer$4
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/server/integrated/IntegratedServer$1
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/server/integrated/IntegratedServer$2
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/tileentity/CommandBlockBaseLogic$1
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/tileentity/CommandBlockBaseLogic$2
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/tileentity/TileEntity$1
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/tileentity/TileEntity$2
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/tileentity/TileEntity$3
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/world/World$1
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/world/World$2
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/world/World$3
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/world/World$4
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/world/World$5
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/world/chunk/Chunk$1
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/world/gen/structure/MapGenStructure$1
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/world/gen/structure/MapGenStructure$2
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/world/gen/structure/MapGenStructure$3
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/world/storage/WorldInfo$10
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/world/storage/WorldInfo$2
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/world/storage/WorldInfo$3
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/world/storage/WorldInfo$4
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/world/storage/WorldInfo$5
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/world/storage/WorldInfo$6
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/world/storage/WorldInfo$7
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/world/storage/WorldInfo$8
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraft/world/storage/WorldInfo$9
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraftforge/fml/client/SplashProgress$1
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraftforge/fml/common/FMLCommonHandler$1
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraftforge/fml/common/ICrashCallable
[20:15:12] [Client thread/DEBUG] [forge/forge]: 	net/minecraftforge/fml/common/Loader$3
[20:15:12] [Client thread/TRACE] [FML/forge]: Mod forge is using network checker : No network checking performed
[20:15:12] [Client thread/TRACE] [FML/forge]: Testing mod forge to verify it accepts its own version in a remote connection
[20:15:12] [Client thread/TRACE] [FML/forge]: The mod forge accepts its own version (13.20.0.2210)
[20:15:12] [Client thread/DEBUG] [FML/forge]: Attempting to inject @Config classes into forge for type INSTANCE
[20:15:12] [Client thread/TRACE] [forge/forge]: Sent event FMLConstructionEvent to mod forge
[20:15:12] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0.363s
[20:15:12] [Client thread/TRACE] [archeology/archeology]: Sending event FMLConstructionEvent to mod archeology
[20:15:12] [Client thread/TRACE] [FML/archeology]: Mod archeology is using network checker : Accepting version 0.0.0 (Alpha)
[20:15:12] [Client thread/TRACE] [FML/archeology]: Testing mod archeology to verify it accepts its own version in a remote connection
[20:15:12] [Client thread/TRACE] [FML/archeology]: The mod archeology accepts its own version (0.0.0 (Alpha))
[20:15:12] [Client thread/DEBUG] [FML/archeology]: Attempting to inject @SidedProxy classes into archeology
[20:15:12] [Client thread/DEBUG] [FML/archeology]: Attempting to inject @EventBusSubscriber classes into the eventbus for archeology
[20:15:12] [Client thread/DEBUG] [FML/archeology]: Attempting to inject @Config classes into archeology for type INSTANCE
[20:15:12] [Client thread/TRACE] [archeology/archeology]: Sent event FMLConstructionEvent to mod archeology
[20:15:12] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Archeology took 0.117s
[20:15:12] [Client thread/TRACE] [jei/jei]: Sending event FMLConstructionEvent to mod jei
[20:15:12] [Client thread/TRACE] [FML/jei]: Mod jei is using network checker : Invoking method checkModLists
[20:15:12] [Client thread/TRACE] [FML/jei]: Testing mod jei to verify it accepts its own version in a remote connection
[20:15:12] [Client thread/TRACE] [FML/jei]: The mod jei accepts its own version (4.2.2.215)
[20:15:12] [Client thread/DEBUG] [FML/jei]: Attempting to inject @SidedProxy classes into jei
[20:15:12] [Client thread/DEBUG] [FML/jei]: Attempting to inject @EventBusSubscriber classes into the eventbus for jei
[20:15:12] [Client thread/DEBUG] [FML/jei]: Attempting to inject @Config classes into jei for type INSTANCE
[20:15:12] [Client thread/TRACE] [jei/jei]: Sent event FMLConstructionEvent to mod jei
[20:15:12] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Just Enough Items took 0.271s
[20:15:12] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 3.135s
[20:15:12] [Client thread/DEBUG] [FML/]: Mod signature data
[20:15:12] [Client thread/DEBUG] [FML/]:  	Valid Signatures:
[20:15:12] [Client thread/DEBUG] [FML/]:  	Missing Signatures:
[20:15:12] [Client thread/DEBUG] [FML/]: 		minecraft	(Minecraft	1.11.2)	minecraft.jar
[20:15:12] [Client thread/DEBUG] [FML/]: 		mcp	(Minecraft Coder Pack	9.19)	minecraft.jar
[20:15:12] [Client thread/DEBUG] [FML/]: 		FML	(Forge Mod Loader	8.0.99.99)	forgeSrc-1.11.2-13.20.0.2210.jar
[20:15:12] [Client thread/DEBUG] [FML/]: 		forge	(Minecraft Forge	13.20.0.2210)	forgeSrc-1.11.2-13.20.0.2210.jar
[20:15:12] [Client thread/DEBUG] [FML/]: 		archeology	(Archeology	0.0.0 (Alpha))	bin
[20:15:12] [Client thread/DEBUG] [FML/]: 		jei	(Just Enough Items	4.2.2.215)	jei_1.11.2-4.2.2.215.jar
[20:15:12] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.017s
[20:15:12] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.029s
[20:15:12] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.031s
[20:15:12] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Archeology took 0.013s
[20:15:12] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Just Enough Items took 0.007s
[20:15:12] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0.094s
[20:15:12] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0.095s
[20:15:12] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0.191s
[20:15:12] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[20:15:12] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[20:15:12] [Client thread/DEBUG] [Archeology/]: Mod Archeology is missing a pack.mcmeta file, substituting a dummy one
[20:15:13] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations
[20:15:13] [Client thread/INFO] [FML/]: Found 444 ObjectHolder annotations
[20:15:13] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations
[20:15:13] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations
[20:15:13] [Client thread/INFO] [FML/]: Applying holder lookups
[20:15:13] [Client thread/INFO] [FML/]: Holder lookups applied
[20:15:13] [Client thread/INFO] [FML/]: Applying holder lookups
[20:15:13] [Client thread/INFO] [FML/]: Holder lookups applied
[20:15:13] [Client thread/INFO] [FML/]: Applying holder lookups
[20:15:13] [Client thread/INFO] [FML/]: Holder lookups applied
[20:15:13] [Client thread/TRACE] [minecraft/minecraft]: Sending event FMLPreInitializationEvent to mod minecraft
[20:15:13] [Client thread/TRACE] [minecraft/minecraft]: Sent event FMLPreInitializationEvent to mod minecraft
[20:15:13] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft took 0.004s
[20:15:13] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp
[20:15:13] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp
[20:15:13] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0.001s
[20:15:13] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML
[20:15:13] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML
[20:15:13] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0.001s
[20:15:13] [Client thread/TRACE] [forge/forge]: Sending event FMLPreInitializationEvent to mod forge
[20:15:13] [Client thread/INFO] [FML/forge]: Configured a dormant chunk cache size of 0
[20:15:13] [Client thread/TRACE] [forge/forge]: Sent event FMLPreInitializationEvent to mod forge
[20:15:13] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0.363s
[20:15:13] [Client thread/TRACE] [archeology/archeology]: Sending event FMLPreInitializationEvent to mod archeology
[20:15:13] [Forge Version Check/INFO] [ForgeVersionCheck/forge]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[20:15:13] [Client thread/INFO] [archeology/archeology]: Registering Items
[20:15:13] [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.2000",
    "1.10.2-latest": "12.18.3.2239",
    "1.10.2-recommended": "12.18.3.2185",
    "1.11-latest": "13.19.1.2199",
    "1.11-recommended": "13.19.1.2189",
    "1.11.2-latest": "13.20.0.2253",
    "1.11.2-recommended": "13.20.0.2228",
    "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.2051",
    "1.9.4-recommended": "12.17.0.1976",
    "latest": "13.20.0.2253",
    "latest-1.7.10": "10.13.2.1343",
    "recommended": "13.20.0.2228"
  }
}
[20:15:13] [Forge Version Check/INFO] [ForgeVersionCheck/forge]: [forge] Found status: OUTDATED Target: 13.20.0.2228

 

Link to comment
Share on other sites

What are the sizes of each enum you use for each property. If multiply all those together you might get a really high number. If that number is in the hundreds of thousands, it is probably hanging on the calculation of the cartesian product of each value.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

i calculated it myself, there is only 379080 combinations

i thought of that too, but i don't think the process is too complicated for this to take longer than 10 minutes

if it is stuck on that, can i somehow block combinations that will not be poosible in survival?

that would reduce it to about 100 000

Link to comment
Share on other sites

it looks like it spends a lot of time in this loop:

for (List < Comparable<? >> list : Cartesian.cartesianProduct(this.getAllowedValues()))
        {
            Map < IProperty<?>, Comparable<? >> map1 = MapPopulator. < IProperty<?>, Comparable<? >> createMap(this.properties.values(), list);
            BlockStateContainer.StateImplementation blockstatecontainer$stateimplementation = createState(blockIn, ImmutableMap.copyOf(map1), unlistedProperties);
            map2.put(map1, blockstatecontainer$stateimplementation);
            list1.add(blockstatecontainer$stateimplementation);
        }

in BlockStateContainer class

Link to comment
Share on other sites

1 minute ago, Villfuk02 said:

only 379080 combinations

 

"only"

 

379080 is quite a lot of values and would take a while to generate. My 140000~ values took about 15 minutes to generate, probably more. Your values could probably take more than 10 minutes to generate and get every blockstate value for it.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

You can use IUnlistedPropertys and an IBakedModel to generate models using code.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

Thanks, i'll look at that tomorrow. :)

But i'd like to ask AGAIN if you know any good way to make ITEM with model composed of other parts like Forge blockstate JSON allows. THAT's the reason i'm even trying to make this block. I have asked many times now on this forum and still no solution :(.
For example Tinker's Constuct is mod entirely based on putting different parts together and it works. I just don't uderstand ANYTHING in the mod's code. Too advanced for me.

SO PLEASE, do you know of any way to make it work even for item?

THANKS in advance

Edited by Villfuk02
Link to comment
Share on other sites

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • it crashed again     What the console says : [00:02:03] [Server thread/INFO] [Easy NPC/]: [EntityManager] Server started! [00:02:03] [Server thread/INFO] [co.gi.al.ic.IceAndFire/]: {iceandfire:fire_dragon_roost=true, iceandfire:fire_lily=true, iceandfire:spawn_dragon_skeleton_fire=true, iceandfire:lightning_dragon_roost=true, iceandfire:spawn_dragon_skeleton_lightning=true, iceandfire:ice_dragon_roost=true, iceandfire:ice_dragon_cave=true, iceandfire:lightning_dragon_cave=true, iceandfire:cyclops_cave=true, iceandfire:spawn_wandering_cyclops=true, iceandfire:spawn_sea_serpent=true, iceandfire:frost_lily=true, iceandfire:hydra_cave=true, iceandfire:lightning_lily=true, iceandfireixie_village=true, iceandfire:myrmex_hive_jungle=true, iceandfire:myrmex_hive_desert=true, iceandfire:silver_ore=true, iceandfire:siren_island=true, iceandfire:spawn_dragon_skeleton_ice=true, iceandfire:spawn_stymphalian_bird=true, iceandfire:fire_dragon_cave=true, iceandfire:sapphire_ore=true, iceandfire:spawn_hippocampus=true, iceandfire:spawn_death_worm=true} [00:02:03] [Server thread/INFO] [co.gi.al.ic.IceAndFire/]: {TROLL_S=true, HIPPOGRYPH=true, AMPHITHERE=true, COCKATRICE=true, TROLL_M=true, DREAD_LICH=true, TROLL_F=true} [00:02:03] [Server thread/INFO] [ne.be.lo.WeaponRegistry/]: Encoded Weapon Attribute registry size (with package overhead): 41976 bytes (in 5 string chunks with the size of 10000) [00:02:03] [Server thread/INFO] [patchouli/]: Sending reload packet to clients [00:02:03] [Server thread/WARN] [voicechat/]: [voicechat] Running in offline mode - Voice chat encryption is not secure! [00:02:03] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Using server-ip as bind address: 0.0.0.0 [00:02:03] [Server thread/WARN] [ModernFix/]: Dedicated server took 22.521 seconds to load [00:02:03] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Voice chat server started at 0.0.0.0:25565 [00:02:03] [Server thread/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.player.Player from class tschipp.carryon.common.carry.CarryOnDataManager [00:02:03] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@2941ffd5 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 0 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 1 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 2 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 3 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 4 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 5 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 6 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 7 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 8 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 9 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 10 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 11 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 12 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 13 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 14 [00:02:19] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@ebc7ef2 [00:02:19] [Server thread/INFO] [minecraft/PlayerList]: ZacAdos[/90.2.17.162:49242] logged in with entity id 1062 at (-1848.6727005281205, 221.0, -3054.2468255848935) [00:02:19] [Server thread/ERROR] [ModernFix/]: Skipping entity ID sync for com.talhanation.smallships.world.entity.ship.Ship: java.lang.NoClassDefFoundError: net/minecraft/client/CameraType [00:02:19] [Server thread/INFO] [minecraft/MinecraftServer]: - Gloop - ZacAdos joined the game [00:02:19] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Updating all forceload tickets for cc56befd-d376-3526-a760-340713c478bd [00:02:19] [Server thread/INFO] [se.mi.te.da.DataManager/]: Sending data to client: ZacAdos [00:02:19] [Server thread/INFO] [voicechat/]: [voicechat] Received secret request of - Gloop - ZacAdos (17) [00:02:19] [Server thread/INFO] [voicechat/]: [voicechat] Sent secret to - Gloop - ZacAdos [00:02:21] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Successfully authenticated player cc56befd-d376-3526-a760-340713c478bd [00:02:22] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Successfully validated connection of player cc56befd-d376-3526-a760-340713c478bd [00:02:22] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Player - Gloop - ZacAdos (cc56befd-d376-3526-a760-340713c478bd) successfully connected to voice chat stop [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping the server [00:02:34] [Server thread/INFO] [mo.pl.ar.ArmourersWorkshop/]: stop local service [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players [00:02:34] [Server thread/INFO] [minecraft/ServerGamePacketListenerImpl]: ZacAdos lost connection: Server closed [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: - Gloop - ZacAdos left the game [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Updating all forceload tickets for cc56befd-d376-3526-a760-340713c478bd [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_end [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_nether [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (world): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage: All dimensions are saved [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Stopping IO worker... [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Stopped IO worker! [00:02:34] [Server thread/INFO] [Calio/]: Removing Dynamic Registries for: net.minecraft.server.dedicated.DedicatedServer@7dc879e1 [MineStrator Daemon]: Checking server disk space usage, this could take a few seconds... [MineStrator Daemon]: Updating process configuration files... [MineStrator Daemon]: Ensuring file permissions are set correctly, this could take a few seconds... [MineStrator Daemon]: Pulling Docker container image, this could take a few minutes to complete... [MineStrator Daemon]: Finished pulling Docker container image container@pterodactyl~ java -version openjdk version "17.0.10" 2024-01-16 OpenJDK Runtime Environment Temurin-17.0.10+7 (build 17.0.10+7) OpenJDK 64-Bit Server VM Temurin-17.0.10+7 (build 17.0.10+7, mixed mode, sharing) container@pterodactyl~ java -Xms128M -Xmx6302M -Dterminal.jline=false -Dterminal.ansi=true -Djline.terminal=jline.UnsupportedTerminal -p libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar:libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/net/minecraftforge/JarJarFileSystems/0.3.16/JarJarFileSystems-0.3.16.jar --add-modules ALL-MODULE-PATH --add-opens java.base/java.util.jar=cpw.mods.securejarhandler --add-opens java.base/java.lang.invoke=cpw.mods.securejarhandler --add-exports java.base/sun.security.util=cpw.mods.securejarhandler --add-exports jdk.naming.dns/com.sun.jndi.dns=java.naming -Djava.net.preferIPv6Addresses=system -DignoreList=bootstraplauncher-1.1.2.jar,securejarhandler-2.1.4.jar,asm-commons-9.5.jar,asm-util-9.5.jar,asm-analysis-9.5.jar,asm-tree-9.5.jar,asm-9.5.jar,JarJarFileSystems-0.3.16.jar -DlibraryDirectory=libraries -DlegacyClassPath=libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/net/minecraftforge/accesstransformers/8.0.4/accesstransformers-8.0.4.jar:libraries/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar:libraries/net/minecraftforge/eventbus/6.0.3/eventbus-6.0.3.jar:libraries/net/minecraftforge/forgespi/6.0.0/forgespi-6.0.0.jar:libraries/net/minecraftforge/coremods/5.0.1/coremods-5.0.1.jar:libraries/cpw/mods/modlauncher/10.0.8/modlauncher-10.0.8.jar:libraries/net/minecraftforge/unsafe/0.2.0/unsafe-0.2.0.jar:libraries/com/electronwill/night-config/core/3.6.4/core-3.6.4.jar:libraries/com/electronwill/night-config/toml/3.6.4/toml-3.6.4.jar:libraries/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar:libraries/net/jodah/typetools/0.8.3/typetools-0.8.3.jar:libraries/net/minecrell/terminalconsoleappender/1.2.0/terminalconsoleappender-1.2.0.jar:libraries/org/jline/jline-reader/3.12.1/jline-reader-3.12.1.jar:libraries/org/jline/jline-terminal/3.12.1/jline-terminal-3.12.1.jar:libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar:libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar:libraries/net/minecraftforge/JarJarSelector/0.3.16/JarJarSelector-0.3.16.jar:libraries/net/minecraftforge/JarJarMetadata/0.3.16/JarJarMetadata-0.3.16.jar:libraries/net/minecraftforge/fmlloader/1.19.2-43.3.0/fmlloader-1.19.2-43.3.0.jar:libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-extra.jar:libraries/com/github/oshi/oshi-core/5.8.5/oshi-core-5.8.5.jar:libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:libraries/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar:libraries/com/mojang/authlib/3.11.49/authlib-3.11.49.jar:libraries/com/mojang/brigadier/1.0.18/brigadier-1.0.18.jar:libraries/com/mojang/datafixerupper/5.0.28/datafixerupper-5.0.28.jar:libraries/com/mojang/javabridge/1.2.24/javabridge-1.2.24.jar:libraries/com/mojang/logging/1.0.0/logging-1.0.0.jar:libraries/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar:libraries/io/netty/netty-buffer/4.1.77.Final/netty-buffer-4.1.77.Final.jar:libraries/io/netty/netty-codec/4.1.77.Final/netty-codec-4.1.77.Final.jar:libraries/io/netty/netty-common/4.1.77.Final/netty-common-4.1.77.Final.jar:libraries/io/netty/netty-handler/4.1.77.Final/netty-handler-4.1.77.Final.jar:libraries/io/netty/netty-resolver/4.1.77.Final/netty-resolver-4.1.77.Final.jar:libraries/io/netty/netty-transport/4.1.77.Final/netty-transport-4.1.77.Final.jar:libraries/io/netty/netty-transport-classes-epoll/4.1.77.Final/netty-transport-classes-epoll-4.1.77.Final.jar:libraries/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-x86_64.jar:libraries/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-aarch_64.jar:libraries/io/netty/netty-transport-native-unix-common/4.1.77.Final/netty-transport-native-unix-common-4.1.77.Final.jar:libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar:libraries/net/java/dev/jna/jna/5.10.0/jna-5.10.0.jar:libraries/net/java/dev/jna/jna-platform/5.10.0/jna-platform-5.10.0.jar:libraries/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar:libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar:libraries/org/apache/logging/log4j/log4j-api/2.17.0/log4j-api-2.17.0.jar:libraries/org/apache/logging/log4j/log4j-core/2.17.0/log4j-core-2.17.0.jar:libraries/org/apache/logging/log4j/log4j-slf4j18-impl/2.17.0/log4j-slf4j18-impl-2.17.0.jar:libraries/org/slf4j/slf4j-api/1.8.0-beta4/slf4j-api-1.8.0-beta4.jar cpw.mods.bootstraplauncher.BootstrapLauncher --launchTarget forgeserver --fml.forgeVersion 43.3.0 --fml.mcVersion 1.19.2 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20220805.130853 [00:02:42] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [00:02:42] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-12-amd64 [00:02:43] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.0/fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.0/javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.0/lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.0/mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:44] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [00:02:44] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /home/container/mods/resourcefullib-forge-1.19.2-1.1.24.jar [00:02:44] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection Latest log [29Mar2024 00:02:42.803] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [29Mar2024 00:02:42.805] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-12-amd64 [29Mar2024 00:02:43.548] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [29Mar2024 00:02:43.876] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.0/fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.877] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.0/javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.877] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.0/lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.878] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.0/mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:44.033] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [29Mar2024 00:02:44.034] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /home/container/mods/resourcefullib-forge-1.19.2-1.1.24.jar [29Mar2024 00:02:44.034] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection
    • I am unable to do that. Brigadier is a mojang library that parses commands.
    • Hi, i appreciate the answer. I would love to do that, but we have active players with all their belongings in SSN. Also this mod is really handy and they would be mad if we removed it. Are you really certain that SSN is causing this? It would require lots of work to test it and SSN was not really an issue before we removed Fast Suite. Can it be related somehow? I will provide you with log before removing FS. PasteBin: https://pastebin.com/Y5EpLpNe (crash before removing Fast Suite, which I suspected to be a problem from some crash before)
    • Backup the world and make a test without storagenetwork
  • Topics

×
×
  • Create New...

Important Information

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