diff --git a/bin/com/kitsu/medievalcraft/item/ModItems.class b/bin/com/kitsu/medievalcraft/item/ModItems.class index fad1a9a3..93a7f87f 100644 Binary files a/bin/com/kitsu/medievalcraft/item/ModItems.class and b/bin/com/kitsu/medievalcraft/item/ModItems.class differ diff --git a/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/6f/50692e3d203300151434c7a2e1c3af7b b/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/6f/50692e3d203300151434c7a2e1c3af7b new file mode 100644 index 00000000..9247e561 --- /dev/null +++ b/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/6f/50692e3d203300151434c7a2e1c3af7b @@ -0,0 +1,1031 @@ +package com.kitsu.medievalcraft.item; + +import net.minecraft.init.Items; +import net.minecraft.item.Item; +import net.minecraft.item.Item.ToolMaterial; +import net.minecraft.item.ItemStack; +import net.minecraftforge.common.util.EnumHelper; +import net.minecraftforge.fluids.FluidContainerRegistry; + +import com.kitsu.medievalcraft.Main; +import com.kitsu.medievalcraft.block.ModBlocks; +import com.kitsu.medievalcraft.item.craftingtools.FireBow; +import com.kitsu.medievalcraft.item.craftingtools.FlintSaw; +import com.kitsu.medievalcraft.item.craftingtools.ForgeHammer; +import com.kitsu.medievalcraft.item.craftingtools.InlayHammer; +import com.kitsu.medievalcraft.item.craftingtools.IronSaw; +import com.kitsu.medievalcraft.item.craftingtools.LeatherShears; +import com.kitsu.medievalcraft.item.craftingtools.SlottedTongs; +import com.kitsu.medievalcraft.item.craftingtools.WorkBlade; +import com.kitsu.medievalcraft.item.craftingtools.filters.CoarseFilter; +import com.kitsu.medievalcraft.item.craftingtools.filters.FineFilter; +import com.kitsu.medievalcraft.item.craftingtools.filters.MediumFilter; +import com.kitsu.medievalcraft.item.forms.clay.CClayAxeForm; +import com.kitsu.medievalcraft.item.forms.clay.CClayBattleAxeForm; +import com.kitsu.medievalcraft.item.forms.clay.CClayDaggerForm; +import com.kitsu.medievalcraft.item.forms.clay.CClayHoeForm; +import com.kitsu.medievalcraft.item.forms.clay.CClayLongswordForm; +import com.kitsu.medievalcraft.item.forms.clay.CClayMaceHeadForm; +import com.kitsu.medievalcraft.item.forms.clay.CClayPickaxeForm; +import com.kitsu.medievalcraft.item.forms.clay.CClayRingForm; +import com.kitsu.medievalcraft.item.forms.clay.CClaySawBladeForm; +import com.kitsu.medievalcraft.item.forms.clay.CClaySharpTipForm; +import com.kitsu.medievalcraft.item.forms.clay.CClayShortSwordForm; +import com.kitsu.medievalcraft.item.forms.clay.CClaySpadeForm; +import com.kitsu.medievalcraft.item.forms.clay.CClaySpearTipForm; +import com.kitsu.medievalcraft.item.forms.iron.IronAxeForm; +import com.kitsu.medievalcraft.item.forms.iron.IronBattleAxeForm; +import com.kitsu.medievalcraft.item.forms.iron.IronDaggerForm; +import com.kitsu.medievalcraft.item.forms.iron.IronHandleForm; +import com.kitsu.medievalcraft.item.forms.iron.IronHoeForm; +import com.kitsu.medievalcraft.item.forms.iron.IronLongswordForm; +import com.kitsu.medievalcraft.item.forms.iron.IronMaceHeadForm; +import com.kitsu.medievalcraft.item.forms.iron.IronPickaxeForm; +import com.kitsu.medievalcraft.item.forms.iron.IronRingForm; +import com.kitsu.medievalcraft.item.forms.iron.IronSawBladeForm; +import com.kitsu.medievalcraft.item.forms.iron.IronSharpTipForm; +import com.kitsu.medievalcraft.item.forms.iron.IronShortSwordForm; +import com.kitsu.medievalcraft.item.forms.iron.IronSpadeForm; +import com.kitsu.medievalcraft.item.forms.iron.IronSpearTipForm; +import com.kitsu.medievalcraft.item.misc.ItemBark; +import com.kitsu.medievalcraft.item.misc.ItemSmallBarrelLid; +import com.kitsu.medievalcraft.item.misc.RawCuredLeather; +import com.kitsu.medievalcraft.item.throwable.ItemShit; +import com.kitsu.medievalcraft.item.throwable.ItemTester; +import com.kitsu.medievalcraft.item.tools.CustomIronHoe; +import com.kitsu.medievalcraft.item.tools.CustomIronLumberAxe; +import com.kitsu.medievalcraft.item.tools.CustomIronPick; +import com.kitsu.medievalcraft.item.tools.CustomIronShovel; +import com.kitsu.medievalcraft.item.weapon.ItemBattleAxe; +import com.kitsu.medievalcraft.item.weapon.ItemGladius; +import com.kitsu.medievalcraft.item.weapon.ItemHeavyMace; +import com.kitsu.medievalcraft.item.weapon.ItemIronShield; +import com.kitsu.medievalcraft.item.weapon.ItemIronTippedModelArrow; +//import com.kitsu.medievalcraft.item.weapon.ItemIronShield; +import com.kitsu.medievalcraft.item.weapon.ItemLongSword; +import com.kitsu.medievalcraft.item.weapon.ItemLongbow; +import com.kitsu.medievalcraft.item.weapon.ItemModelArrow; +import com.kitsu.medievalcraft.item.weapon.ItemWoodenShield; +import com.kitsu.medievalcraft.util.CustomTab; + +import cpw.mods.fml.common.registry.GameRegistry; + + +public final class ModItems { + + public static Item slottedTongs; + + + public static Item leatherStrap; + public static Item wovenLeather; + public static Item ironChunk; + public static Item hotironChunk; + public static Item ironRing; + public static Item itemShit; + public static Item itemTester; + public static Item linkedRings; + public static Item ironRingMesh; + public static Item chainMailPlate; + //public static Item hotIronIngot; + public static Item woodenPlate; + public static Item ironweaponHandle; + public static Item woodentoolHandle; + //public static Item refinedIngot; + public static Item charcoalLeafPellet; + public static Item unstrungLongbow; + public static Item itemBark; + public static Item quartzDust; + public static Item salt; + public static Item strippedSapling; + public static Item saplingRing; + public static Item limestoneDust; + public static Item leatherString; + public static Item flintKnapped; + //public static Item crucibleLid; + //public static Item emptyCrucible; + //public static Item clayFormBook; + //SPLIT BOARD + public static Item halfSplitBoard; + public static Item splitBoard; + public static Item acaciaSplitBoard; + public static Item birchSplitBoard; + public static Item darkSplitBoard; + public static Item jungleSplitBoard; + public static Item oakSplitBoard; + public static Item spruceSplitBoard; + public static Item itemSmallBarrelLid; + +//-----------------------FILTERS-----------------------// + public static Item coarseFilter; + public static Item mediumFilter; + public static Item fineFilter; + public static Item charcoalFilter; + public static Item woodPulp; + +//-----------------------LEATHER STUFF-----------------------// + public static Item rawCuredLeather; + public static Item soakedLeather; + public static Item slackedLeather; + public static Item scuddedLeather; + public static Item tannedLeather; + public static Item finishedLeather; + public static Item cutLeather; + +//-----------------------BUCKETS-----------------------// + public static Item filteredBucket; + public static Item tanninBucket; + public static Item slackBucket; + +//-----------------------WEAPONS AND SHIELDS-----------------------// + public static Item heavyMace; + public static Item longSword; + public static Item woodenShield; + public static Item ironShield; + public static Item battleAxe; + public static Item gladius; + +//-----------------------BOWS AND ARROWS-----------------------// + //public static Item testLongbow0; + //public static Item testLongbow1; + //public static Item testLongbow10; + public static Item longbow; + public static Item itemModelArrow; + public static Item itemIronTippedModelArrow; + + //-----------------------CRAFTING TOOLS-----------------------// + public static Item leatherShears; + public static Item flintSaw; + public static Item ironSaw; + public static Item forgeHammer; + public static Item inlayHammer; + public static Item fireBow; + public static Item workBlade; + + //-----------------------FINISHED TOOL COMBOS-----------------------/// + public static Item customIronPick; + public static Item customIronPick1; + public static Item customIronPick2; + public static Item customIronPick3; + public static Item customIronPick4; + public static Item customIronPickCase0; + public static Item customHandleIronPickCase0; + public static Item customIronPickCase1; + public static Item customIronPickCase2; + public static Item customIronPickCase3; + public static Item customIronPickCase4; + public static Item customIronPickCase5; + public static Item customIronPickCase6; + public static Item customIronPickCase7; + public static Item customIronPickCase8; + public static Item customIronPickCase9; + public static Item customIronPickCase10; + public static Item customIronPickCase11; + public static Item customIronPickCase12; + public static Item customIronPickCase13; + public static Item customIronPickCase14; + public static Item customIronPickCase15; + public static Item customIronPickCase16; + public static Item customIronPickCase17; + public static Item customIronPickCase18; + public static Item customIronPickCase19; + public static Item customIronPickCase20; + public static Item customIronPickCase21; + public static Item customIronPickCase22; + public static Item customIronPickCase23; + public static Item customIronPickCase24; + public static Item customIronPickCase25; + public static Item customIronPickCase26; + public static Item customIronPickCase27; + public static Item customIronPickCase28; + public static Item customIronPickCase29; + public static Item customIronPickCase30; + public static Item customIronPickCase31; + public static Item customIronPickCase32; + public static Item customIronPickCase33; + public static Item customIronPickCase34; + public static Item customIronPickCase35; + public static Item customIronPickCase36; + public static Item customIronPickCase37; + public static Item customIronPickCase38; + public static Item customIronPickCase39; + public static Item customIronPickCase40; + public static Item customIronPickCase41; + public static Item customIronPickCase42; + public static Item customIronPickCase43; + public static Item customIronPickCase44; + public static Item customIronPickCase45; + public static Item customIronPickCase46; + public static Item customIronPickCase47; + public static Item customIronPickCase48; + public static Item customIronPickCase49; + public static Item customIronPickCase50; + public static Item customIronPickCase51; + public static Item customIronPickCase52; + + + public static Item customStrongIronPick; + public static Item customWeakIronPick; + public static Item customHandleIronPick; + public static Item customHandleStrongIronPick; + + public static Item customIronShovel0; + public static Item customIronShovel1; + public static Item customIronShovel2; + public static Item customIronShovel3; + public static Item customIronShovelCase0; + public static Item customIronShovelCase00; + public static Item customIronShovelCase1; + public static Item customIronShovelCase2; + public static Item customIronShovelCase3; + public static Item customIronShovelCase4; + public static Item customIronShovelCase5; + public static Item customIronShovelCase6; + public static Item customIronShovelCase7; + public static Item customIronShovelCase8; + public static Item customIronShovelCase9; + public static Item customIronShovelCase10; + public static Item customIronShovelCase11; + public static Item customIronShovelCase12; + public static Item customIronShovelCase13; + public static Item customIronShovelCase14; + public static Item customIronShovelCase15; + public static Item customIronShovelCase16; + public static Item customIronShovelCase17; + public static Item customIronShovelCase18; + public static Item customIronShovelCase19; + public static Item customIronShovelCase20; + public static Item customIronShovelCase21; + public static Item customIronShovelCase22; + public static Item customIronShovelCase23; + public static Item customIronShovelCase24; + public static Item customIronShovelCase25; + public static Item customIronShovelCase26; + public static Item customIronShovelCase27; + public static Item customIronShovelCase28; + public static Item customIronShovelCase29; + public static Item customIronShovelCase30; + public static Item customIronShovelCase31; + public static Item customIronShovelCase32; + public static Item customIronShovelCase33; + public static Item customIronShovelCase34; + public static Item customIronShovelCase35; + public static Item customIronShovelCase36; + public static Item customIronShovelCase37; + public static Item customIronShovelCase38; + public static Item customIronShovelCase39; + public static Item customIronShovelCase40; + public static Item customIronShovelCase41; + public static Item customIronShovelCase42; + public static Item customIronShovelCase43; + public static Item customIronShovelCase44; + public static Item customIronShovelCase45; + public static Item customIronShovelCase46; + public static Item customIronShovelCase47; + public static Item customIronShovelCase48; + public static Item customIronShovelCase49; + public static Item customIronShovelCase50; + public static Item customIronShovelCase51; + public static Item customIronShovelCase52; + public static Item customIronShovelCase53; + + + + public static Item customIronShovel; + public static Item customStrongIronShovel; + public static Item customWeakIronShovel; + public static Item customHandleIronShovel; + public static Item customHandleStrongIronShovel; + + public static Item customIronLumberAxe0; + public static Item customIronLumberAxe1; + public static Item customIronLumberAxe2; + public static Item customIronLumberAxe3; + + public static Item customIronLumberAxe; + public static Item customStrongIronLumberAxe; + public static Item customWeakIronLumberAxe; + public static Item customHandleIronLumberAxe; + public static Item customHandleStrongIronLumberAxe; + + public static Item customIronHoe; + + //-----------------------CLAYFORMS-----------------------/// + public static Item pickaxeClayForm; + public static Item spadeHeadClayForm; + public static Item hoeHeadClayForm; + public static Item axeHeadClayForm; + public static Item longswordClayForm; + public static Item shortswordClayForm; + public static Item daggerClayForm; + //public static Item halberdClayForm; + public static Item speartipClayForm; + public static Item maceheadClayForm; + public static Item sharptipClayForm; + public static Item battleaxeClayForm; + public static Item ringClayForm; + //public static Item plateClayForm; + public static Item sawbladeClayForm; + + //-----------------------COOKED CLAYFORMS-----------------------// + public static Item cookedpickaxeClayForm; + public static Item cookedspadeHeadClayForm; + public static Item cookedhoeHeadClayForm; + public static Item cookedaxeHeadClayForm; + public static Item cookedlongswordClayForm; + public static Item cookedshortswordClayForm; + public static Item cookeddaggerClayForm; + //public static Item cookedhalberdClayForm; + public static Item cookedspeartipClayForm; + public static Item cookedmaceheadClayForm; + public static Item cookedsharptipClayForm; + public static Item cookedbattleaxeClayForm; + public static Item cookedringClayForm; + public static Item cookedplateClayForm; + public static Item cookedsawbladeClayForm; + + //-----------------------TOOLHEADS-----------------------// + public static Item ironpickaxeHead; + public static Item ironspadeHead; + public static Item ironhoeHead; + public static Item ironaxeHead; + public static Item ironlongswordBlade; + public static Item ironshortswordBlade; + public static Item irondaggerBlade; + public static Item ironHandleForm; + public static Item ironspearTip; + public static Item ironsharpTip; + public static Item ironmaceHead; + public static Item ironbattleaxeHead; + public static Item ironsquarePlate; + public static Item ironsawBlade; + + + //-----------------------IRON FORMS-----------------------// + public static Item ironPickaxeForm; + public static Item ironSpadForm; + public static Item ironHoeForm; + public static Item ironAxeForm; + public static Item ironLongswordForm; + public static Item ironShortSwordForm; + public static Item ironDaggerForm; + //public static Item ironHalberdForm; + public static Item ironSpearTipForm; + public static Item ironMaceHeadForm; + public static Item ironBattleAxeForm; + public static Item ironSharpTipForm; + public static Item ironSawBladeForm; + public static Item ironRingForm; + + //-----------------------PICK PARTS-----------------------// + public static Item silkTouchIronHead; + public static Item unbreakingOneHead; + public static Item unbreakingTwoHead; + public static Item efficOneHead; + public static Item efficTwoHead; + public static Item fortuneOneHead; + public static Item fortuneTwoHead; + public static Item unbreakingOneEfficOneHead; + public static Item unbreakingOneFortuneOneHead; + public static Item efficOneFortuneOneHead; + + //-----------------------SHOVEL PARTS-----------------------// + public static Item silkTouchIronSpade; + public static Item unbreakingOneSpade; + public static Item unbreakingTwoSpade; + public static Item efficOneSpade; + public static Item efficTwoSpade; + public static Item fortuneOneSpade; + public static Item fortuneTwoSpade; + public static Item unbreakingOneEfficOneSpade; + public static Item unbreakingOneFortuneOneSpade; + public static Item efficOneFortuneOneSpade; + + //-----------------------LUMBERAXE PARTS-----------------------// + public static Item silkTouchIronLumberAxe; + public static Item unbreakingOneLumberAxe; + public static Item unbreakingTwoLumberAxe; + public static Item efficOneLumberAxe; + public static Item efficTwoLumberAxe; + public static Item fortuneOneLumberAxe; + public static Item fortuneTwoLumberAxe; + public static Item unbreakingOneEfficOneLumberAxe; + public static Item unbreakingOneFortuneOneLumberAxe; + public static Item efficOneFortuneOneLumberAxe; + + //-----------------------ROD PARTS-----------------------// + public static Item fortuneWoodRod; + public static Item unbreakingWoodRod; + public static Item fortuneIronRod; + public static Item efficIronRod; + + //EnumHelper.addToolMaterial(name, harvestLevel, maxUses, efficiency, damage, enchantability) + //Max stats a tool / weapon can have + //public static ToolMaterial TUTORIAL = EnumHelper.addToolMaterial("TUTORIAL", 3, 1000, 15.0F, 4.0F, 30); + /*Vanilla Tools + WOOD(0, 59, 2.0F, 0, 15), STONE(1, 131, 4.0F, 1, 5), IRON(2, 250, 6.0F, 2, 14), EMERALD(3, 1561, 8.0F, 3, 10), GOLD(0, 32, 12.0F, 0, 22);*/ + + public static ToolMaterial longswordmat = EnumHelper.addToolMaterial("LONGSWORD", 1, 350, 2.0F, 2.0F, 0); + public static ToolMaterial woodenshieldmat = EnumHelper.addToolMaterial("WOODENSHIELD", 0, 65, 2.0F, -3.5F, 0); + public static ToolMaterial ironshieldmat = EnumHelper.addToolMaterial("IRONSHIELD", 0, 500, 2.0F, -3.5F, 0); + public static ToolMaterial heavymacemat = EnumHelper.addToolMaterial("HEAVYMACE", 0, 350, 4.0F, -4.0F, 0); + public static ToolMaterial customIronPickmat = EnumHelper.addToolMaterial("WOODWEAK", 2, 250, 6.0F, 0, 0); + //public static ToolMaterial customIronPickDiamondTip = EnumHelper.addToolMaterial("DIAMONDTIP", 3, 500, 7.0F, 2, 0); + public static ToolMaterial customWoodNormal = EnumHelper.addToolMaterial("WOODNORMAL", 2, 350, 6.25F, 0, 0); + public static ToolMaterial customWoodStrong = EnumHelper.addToolMaterial("WOODSTRONG", 3, 500, 6.75F, 0, 0); + public static ToolMaterial customWoodWeak = EnumHelper.addToolMaterial("WOODWEAK", 2, 300, 6.0F, 0, 0); + public static ToolMaterial customIronToolRodStrong = EnumHelper.addToolMaterial("IRONSTRONG", 3, 350, 7.5F, 0, 0); + public static ToolMaterial customIronToolRodNormal = EnumHelper.addToolMaterial("IRONNORMAL", 2, 300, 7.5F, 0, 0); + public static ToolMaterial customIronToolRodWeak = EnumHelper.addToolMaterial("IRONWEAK", 2, 250, 7.5F, 0, 0); + + public static void init() { + + /* + tutorialItem = new Item().setUnlocalizedName("tutorialItem").setCreativeTab(CreativeTabs.tabMisc) + .setTextureName(Main.MODID + ":tutorialItem"); + GameRegistry.registerItem(tutorialItem, "tutorialItem"); + COPY TEMPLATE + xxx = new Item().setUnlocalizedName("xxx").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "xxx"); + GameRegistry.registerItem(xxx, "xxx"); + + + + //longbow = new Item().setUnlocalizedName("longbow").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":longbow"); + //GameRegistry.registerItem(longbow, "longbow"); + + //hotIronPlate = new Item().setUnlocalizedName("hotIronPlate").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":hotIronPlate"); + //GameRegistry.registerItem(hotIronPlate, "hotIronPlate"); + + salt = new Item().setUnlocalizedName("salt").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":salt"); + GameRegistry.registerItem(salt, "salt"); +*/ + //acaciaSplitBoard = new Item().setUnlocalizedName("acaciaSplitBoard").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":acaciaSplitBoard"); + //GameRegistry.registerItem(acaciaSplitBoard, "acaciaSplitBoard"); + + //birchSplitBoard = new Item().setUnlocalizedName("birchSplitBoard").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":birchSplitBoard"); + //GameRegistry.registerItem(birchSplitBoard, "birchSplitBoard"); + + //darkSplitBoard = new Item().setUnlocalizedName("darkSplitBoard").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":darkSplitBoard"); + //GameRegistry.registerItem(darkSplitBoard, "darkSplitBoard"); + + //jungleSplitBoard = new Item().setUnlocalizedName("jungleSplitBoard").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":jungleSplitBoard"); + //GameRegistry.registerItem(jungleSplitBoard, "jungleSplitBoard"); + + //oakSplitBoard = new Item().setUnlocalizedName("oakSplitBoard").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":oakSplitBoard"); + //GameRegistry.registerItem(oakSplitBoard, "oakSplitBoard"); + + //spruceSplitBoard = new Item().setUnlocalizedName("spruceSplitBoard").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":spruceSplitBoard"); + //GameRegistry.registerItem(spruceSplitBoard, "spruceSplitBoard"); + + //itemSmallBarrelLid = new Item().setUnlocalizedName("itemSmallBarrelLid").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":itemSmallBarrelLid"); + //GameRegistry.registerItem(itemSmallBarrelLid, "itemSmallBarrelLid"); + + woodPulp = new Item().setUnlocalizedName("woodPulp").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":woodPulp"); + GameRegistry.registerItem(woodPulp, "woodPulp"); + + halfSplitBoard = new Item().setUnlocalizedName("halfSplitBoard").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":halfSplitBoard"); + GameRegistry.registerItem(halfSplitBoard, "halfSplitBoard"); + + splitBoard = new Item().setUnlocalizedName("splitBoard").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":splitBoard"); + GameRegistry.registerItem(splitBoard, "splitBoard"); + + finishedLeather = new Item().setUnlocalizedName("finishedLeather").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":finishedLeather"); + GameRegistry.registerItem(finishedLeather, "finishedLeather"); + + cutLeather = new Item().setUnlocalizedName("cutLeather").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":cutLeather"); + GameRegistry.registerItem(cutLeather, "cutLeather"); + + tannedLeather = new Item().setUnlocalizedName("tannedLeather").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":tannedLeather"); + GameRegistry.registerItem(tannedLeather, "tannedLeather"); + + scuddedLeather = new Item().setUnlocalizedName("scuddedLeather").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":scuddedLeather"); + GameRegistry.registerItem(scuddedLeather, "scuddedLeather"); + + slackedLeather = new Item().setUnlocalizedName("slackedLeather").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":slackedLeather"); + GameRegistry.registerItem(slackedLeather, "slackedLeather"); + + soakedLeather = new Item().setUnlocalizedName("soakedLeather").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":soakedLeather"); + GameRegistry.registerItem(soakedLeather, "soakedLeather"); + + //rawCuredLeather = new Item().setUnlocalizedName("rawCuredLeather").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":rawCuredLeather"); + //GameRegistry.registerItem(rawCuredLeather, "rawCuredLeather"); + + strippedSapling = new Item().setUnlocalizedName("strippedSapling").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":strippedSapling"); + GameRegistry.registerItem(strippedSapling, "strippedSapling"); + + saplingRing = new Item().setUnlocalizedName("saplingRing").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":saplingRing"); + GameRegistry.registerItem(saplingRing, "saplingRing"); + + quartzDust = new Item().setUnlocalizedName("quartzDust").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":quartzDust"); + GameRegistry.registerItem(quartzDust, "quartzDust"); + + salt = new Item().setUnlocalizedName("salt").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":salt"); + GameRegistry.registerItem(salt, "salt"); + + limestoneDust = new Item().setUnlocalizedName("limestoneDust").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":limestoneDust"); + GameRegistry.registerItem(limestoneDust, "limestoneDust"); + + charcoalLeafPellet = new Item().setUnlocalizedName("charcoalLeafPellet").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":charcoalLeafPellet"); + GameRegistry.registerItem(charcoalLeafPellet, "charcoalLeafPellet"); + + unstrungLongbow = new Item().setUnlocalizedName("unstrungLongbow").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":unstrungLongbow"); + GameRegistry.registerItem(unstrungLongbow, "unstrungLongbow"); + + leatherString = new Item().setUnlocalizedName("leatherString").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":leatherString"); + GameRegistry.registerItem(leatherString, "leatherString"); + + //refinedIngot = new Item().setUnlocalizedName("refinedIngot").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":refinedIngot"); + //GameRegistry.registerItem(refinedIngot, "refinedIngot"); + + //coarseFilter = new Item().setUnlocalizedName("coarseFilter").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":coarseFilter").setMaxStackSize(1).setMaxDamage(300); + //GameRegistry.registerItem(coarseFilter, "coarseFilter"); + //mediumFilter = new Item().setUnlocalizedName("mediumFilter").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":mediumFilter").setMaxStackSize(1).setMaxDamage(300); + //GameRegistry.registerItem(mediumFilter, "mediumFilter"); + //fineFilter = new Item().setUnlocalizedName("fineFilter").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":fineFilter").setMaxStackSize(1).setMaxDamage(300); + //GameRegistry.registerItem(fineFilter, "fineFilter"); + + leatherStrap = new Item().setUnlocalizedName("leatherStrap").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":leatherStrap"); + GameRegistry.registerItem(leatherStrap, "leatherStrap"); + + wovenLeather = new Item().setUnlocalizedName("wovenLeather").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":wovenLeather"); + GameRegistry.registerItem(wovenLeather, "wovenLeather"); + + ironChunk = new Item().setUnlocalizedName("ironChunk").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":ironChunk"); + GameRegistry.registerItem(ironChunk, "ironChunk"); + + hotironChunk = new Item().setUnlocalizedName("hotironChunk").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":hotironChunk"); + GameRegistry.registerItem(hotironChunk, "hotironChunk"); + + ironRing = new Item().setUnlocalizedName("ironRing").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":ironRing").setMaxStackSize(16); + GameRegistry.registerItem(ironRing, "ironRing"); + + linkedRings = new Item().setUnlocalizedName("linkedRings").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":linkedRings").setMaxStackSize(1); + GameRegistry.registerItem(linkedRings, "linkedRings"); + + ironRingMesh = new Item().setUnlocalizedName("ironRingMesh").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":ironRingMesh"); + GameRegistry.registerItem(ironRingMesh, "ironRingMesh"); + + //hotIronIngot = new Item().setUnlocalizedName("hotIronIngot").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":hotIronIngot"); + //GameRegistry.registerItem(hotIronIngot, "hotIronIngot"); + + ironweaponHandle = new Item().setUnlocalizedName("ironweaponHandle").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":ironweaponHandle"); + GameRegistry.registerItem(ironweaponHandle, "ironweaponHandle"); + + woodenPlate = new Item().setUnlocalizedName("woodenPlate").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":woodenPlate"); + GameRegistry.registerItem(woodenPlate, "woodenPlate"); + + woodentoolHandle = new Item().setUnlocalizedName("woodentoolHandle").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":woodentoolHandle"); + GameRegistry.registerItem(woodentoolHandle, "woodentoolHandle"); + + flintKnapped = new Item().setUnlocalizedName("flintKnapped").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":flintKnapped"); + GameRegistry.registerItem(flintKnapped, "flintKnapped"); + + //-----------------------CLAY FORMS-----------------------// + pickaxeClayForm = new Item().setUnlocalizedName("pickaxeClayForm").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "pickaxeClayForm"); + GameRegistry.registerItem(pickaxeClayForm, "pickaxeClayForm"); + + spadeHeadClayForm = new Item().setUnlocalizedName("spadeHeadClayForm").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "spadeHeadClayForm"); + GameRegistry.registerItem(spadeHeadClayForm, "spadeHeadClayForm"); + + hoeHeadClayForm = new Item().setUnlocalizedName("hoeHeadClayForm").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "hoeHeadClayForm"); + GameRegistry.registerItem(hoeHeadClayForm, "hoeHeadClayForm"); + + axeHeadClayForm = new Item().setUnlocalizedName("axeHeadClayForm").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "axeHeadClayForm"); + GameRegistry.registerItem(axeHeadClayForm, "axeHeadClayForm"); + + longswordClayForm = new Item().setUnlocalizedName("longswordClayForm").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "longswordClayForm"); + GameRegistry.registerItem(longswordClayForm, "longswordClayForm"); + + shortswordClayForm = new Item().setUnlocalizedName("shortswordClayForm").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "shortswordClayForm"); + GameRegistry.registerItem(shortswordClayForm, "shortswordClayForm"); + + daggerClayForm = new Item().setUnlocalizedName("daggerClayForm").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "daggerClayForm"); + GameRegistry.registerItem(daggerClayForm, "daggerClayForm"); + + //halberdClayForm = new Item().setUnlocalizedName("halberdClayForm").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "halberdClayForm"); + //GameRegistry.registerItem(halberdClayForm, "halberdClayForm"); + + speartipClayForm = new Item().setUnlocalizedName("speartipClayForm").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "speartipClayForm"); + GameRegistry.registerItem(speartipClayForm, "speartipClayForm"); + + maceheadClayForm = new Item().setUnlocalizedName("maceheadClayForm").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "maceheadClayForm"); + GameRegistry.registerItem(maceheadClayForm, "maceheadClayForm"); + + sharptipClayForm = new Item().setUnlocalizedName("sharptipClayForm").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "sharptipClayForm"); + GameRegistry.registerItem(sharptipClayForm, "sharptipClayForm"); + + battleaxeClayForm = new Item().setUnlocalizedName("battleaxeClayForm").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "battleaxeClayForm"); + GameRegistry.registerItem(battleaxeClayForm, "battleaxeClayForm"); + + ringClayForm = new Item().setUnlocalizedName("ringClayForm").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "ringClayForm"); + GameRegistry.registerItem(ringClayForm, "ringClayForm"); + + //plateClayForm = new Item().setUnlocalizedName("plateClayForm").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "plateClayForm"); + //GameRegistry.registerItem(plateClayForm, "plateClayForm"); + + sawbladeClayForm = new Item().setUnlocalizedName("sawbladeClayForm").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "sawbladeClayForm"); + GameRegistry.registerItem(sawbladeClayForm, "sawbladeClayForm"); + + + + //-----------------------COOKED CLAY FORMS-----------------------// + cookedpickaxeClayForm = new CClayPickaxeForm("cookedpickaxeClayForm", cookedpickaxeClayForm); + cookedspadeHeadClayForm = new CClaySpadeForm("cookedspadeHeadClayForm", cookedspadeHeadClayForm); + cookedhoeHeadClayForm = new CClayHoeForm("cookedhoeHeadClayForm", cookedhoeHeadClayForm); + cookedaxeHeadClayForm = new CClayAxeForm("cookedaxeHeadClayForm", cookedaxeHeadClayForm); + cookedlongswordClayForm = new CClayLongswordForm("cookedlongswordClayForm", cookedlongswordClayForm); + cookedshortswordClayForm = new CClayShortSwordForm("cookedshortswordClayForm", cookedshortswordClayForm); + cookeddaggerClayForm = new CClayDaggerForm("cookeddaggerClayForm", cookeddaggerClayForm); + cookedspeartipClayForm = new CClaySpearTipForm("cookedspeartipClayForm", cookedspeartipClayForm); + cookedmaceheadClayForm = new CClayMaceHeadForm("cookedmaceheadClayForm", cookedmaceheadClayForm); + cookedsharptipClayForm = new CClaySharpTipForm("cookedsharptipClayForm", cookedsharptipClayForm); + cookedbattleaxeClayForm = new CClayBattleAxeForm("cookedbattleaxeClayForm", cookedbattleaxeClayForm); + cookedringClayForm = new CClayRingForm("cookedringClayForm", cookedringClayForm); + cookedsawbladeClayForm = new CClaySawBladeForm("cookedsawbladeClayForm", cookedsawbladeClayForm); + + //-----------------------IRON PARTS-----------------------// + ironpickaxeHead = new Item().setUnlocalizedName("ironpickaxeHead").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "ironpickaxeHead").setMaxStackSize(1); + GameRegistry.registerItem(ironpickaxeHead, "ironpickaxeHead"); + + ironspadeHead = new Item().setUnlocalizedName("ironspadeHead").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "ironspadeHead").setMaxStackSize(1); + GameRegistry.registerItem(ironspadeHead, "ironspadeHead"); + + ironhoeHead = new Item().setUnlocalizedName("ironhoeHead").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "ironhoeHead").setMaxStackSize(1); + GameRegistry.registerItem(ironhoeHead, "ironhoeHead"); + + ironaxeHead = new Item().setUnlocalizedName("ironaxeHead").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "ironaxeHead").setMaxStackSize(1); + GameRegistry.registerItem(ironaxeHead, "ironaxeHead"); + + ironlongswordBlade = new Item().setUnlocalizedName("ironlongswordBlade").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "ironlongswordBlade").setMaxStackSize(1); + GameRegistry.registerItem(ironlongswordBlade, "ironlongswordBlade"); + + ironshortswordBlade = new Item().setUnlocalizedName("ironshortswordBlade").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "ironshortswordBlade").setMaxStackSize(1); + GameRegistry.registerItem(ironshortswordBlade, "ironshortswordBlade"); + + irondaggerBlade = new Item().setUnlocalizedName("irondaggerBlade").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "irondaggerBlade").setMaxStackSize(1); + GameRegistry.registerItem(irondaggerBlade, "irondaggerBlade"); + + //ironhalberdHead = new Item().setUnlocalizedName("ironhalberdHead").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "ironhalberdHead"); + //GameRegistry.registerItem(ironhalberdHead, "ironhalberdHead"); + + ironspearTip = new Item().setUnlocalizedName("ironspearTip").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "ironspearTip").setMaxStackSize(1); + GameRegistry.registerItem(ironspearTip, "ironspearTip"); + + ironsharpTip = new Item().setUnlocalizedName("ironsharpTip").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "ironsharpTip").setMaxStackSize(1); + GameRegistry.registerItem(ironsharpTip, "ironsharpTip"); + + ironmaceHead = new Item().setUnlocalizedName("ironmaceHead").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "ironmaceHead").setMaxStackSize(1); + GameRegistry.registerItem(ironmaceHead, "ironmaceHead"); + + ironbattleaxeHead = new Item().setUnlocalizedName("ironbattleaxeHead").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "ironbattleaxeHead").setMaxStackSize(1); + GameRegistry.registerItem(ironbattleaxeHead, "ironbattleaxeHead"); + + ironsquarePlate = new Item().setUnlocalizedName("ironsquarePlate").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "ironsquarePlate").setMaxStackSize(1); + GameRegistry.registerItem(ironsquarePlate, "ironsquarePlate"); + + ironsawBlade = new Item().setUnlocalizedName("ironsawBlade").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "ironsawBlade").setMaxStackSize(1); + GameRegistry.registerItem(ironsawBlade, "ironsawBlade"); + + //-----------------------TOOL ROD PARTS-----------------------// + //FORTUNE WOOD ROD + fortuneWoodRod = new Item().setUnlocalizedName("fortuneWoodRod").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "fortuneWoodRod"); + GameRegistry.registerItem(fortuneWoodRod, "fortuneWoodRod"); + + //UNBREAKING WOOD ROD + unbreakingWoodRod = new Item().setUnlocalizedName("unbreakingWoodRod").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "unbreakingWoodRod"); + GameRegistry.registerItem(unbreakingWoodRod, "unbreakingWoodRod"); + + //FORTUNE IRON ROD + fortuneIronRod = new Item().setUnlocalizedName("fortuneIronRod").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "fortuneIronRod"); + GameRegistry.registerItem(fortuneIronRod, "fortuneIronRod"); + + //EFFIC IRON ROD + efficIronRod = new Item().setUnlocalizedName("efficIronRod").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "efficIronRod"); + GameRegistry.registerItem(efficIronRod, "efficIronRod"); + + + //-----------------------ENCHANTED PICK HEAD PARTS-----------------------// + + silkTouchIronHead = new Item().setUnlocalizedName("silkTouchIronHead").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "silkTouchIronHead").setMaxStackSize(1); + GameRegistry.registerItem(silkTouchIronHead, "silkTouchIronHead"); + + unbreakingOneHead = new Item().setUnlocalizedName("unbreakingOneHead").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "unbreakingOneHead").setMaxStackSize(1); + GameRegistry.registerItem(unbreakingOneHead, "unbreakingOneHead"); + + unbreakingTwoHead = new Item().setUnlocalizedName("unbreakingTwoHead").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "unbreakingTwoHead").setMaxStackSize(1); + GameRegistry.registerItem(unbreakingTwoHead, "unbreakingTwoHead"); + + efficOneHead = new Item().setUnlocalizedName("efficOneHead").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "efficOneHead").setMaxStackSize(1); + GameRegistry.registerItem(efficOneHead, "efficOneHead"); + + efficTwoHead = new Item().setUnlocalizedName("efficTwoHead").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "efficTwoHead").setMaxStackSize(1); + GameRegistry.registerItem(efficTwoHead, "efficTwoHead"); + + fortuneOneHead = new Item().setUnlocalizedName("fortuneOneHead").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "fortuneOneHead").setMaxStackSize(1); + GameRegistry.registerItem(fortuneOneHead, "fortuneOneHead"); + + fortuneTwoHead = new Item().setUnlocalizedName("fortuneTwoHead").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "fortuneTwoHead").setMaxStackSize(1); + GameRegistry.registerItem(fortuneTwoHead, "fortuneTwoHead"); + + unbreakingOneEfficOneHead = new Item().setUnlocalizedName("unbreakingOneEfficOneHead").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "unbreakingOneEfficOneHead").setMaxStackSize(1); + GameRegistry.registerItem(unbreakingOneEfficOneHead, "unbreakingOneEfficOneHead"); + + unbreakingOneFortuneOneHead = new Item().setUnlocalizedName("unbreakingOneFortuneOneHead").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "unbreakingOneFortuneOneHead").setMaxStackSize(1); + GameRegistry.registerItem(unbreakingOneFortuneOneHead, "unbreakingOneFortuneOneHead"); + + efficOneFortuneOneHead = new Item().setUnlocalizedName("efficOneFortuneOneHead").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "efficOneFortuneOneHead").setMaxStackSize(1); + GameRegistry.registerItem(efficOneFortuneOneHead, "efficOneFortuneOneHead"); + + //-----------------------ENCHANTED SPADE PARTS-----------------------// + + silkTouchIronSpade = new Item().setUnlocalizedName("silkTouchIronSpade").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "silkTouchIronSpade").setMaxStackSize(1); + GameRegistry.registerItem(silkTouchIronSpade, "silkTouchIronSpade"); + + unbreakingOneSpade = new Item().setUnlocalizedName("unbreakingOneSpade").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "unbreakingOneSpade").setMaxStackSize(1); + GameRegistry.registerItem(unbreakingOneSpade, "unbreakingOneSpade"); + + unbreakingTwoSpade = new Item().setUnlocalizedName("unbreakingTwoSpade").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "unbreakingTwoSpade").setMaxStackSize(1); + GameRegistry.registerItem(unbreakingTwoSpade, "unbreakingTwoSpade"); + + efficOneSpade = new Item().setUnlocalizedName("efficOneSpade").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "efficOneSpade").setMaxStackSize(1); + GameRegistry.registerItem(efficOneSpade, "efficOneSpade"); + + efficTwoSpade = new Item().setUnlocalizedName("efficTwoSpade").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "efficTwoSpade").setMaxStackSize(1); + GameRegistry.registerItem(efficTwoSpade, "efficTwoSpade"); + + fortuneOneSpade = new Item().setUnlocalizedName("fortuneOneSpade").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "fortuneOneSpade").setMaxStackSize(1); + GameRegistry.registerItem(fortuneOneSpade, "fortuneOneSpade"); + + fortuneTwoSpade = new Item().setUnlocalizedName("fortuneTwoSpade").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "fortuneTwoSpade").setMaxStackSize(1); + GameRegistry.registerItem(fortuneTwoSpade, "fortuneTwoSpade"); + + unbreakingOneEfficOneSpade = new Item().setUnlocalizedName("unbreakingOneEfficOneSpade").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "unbreakingOneEfficOneSpade").setMaxStackSize(1); + GameRegistry.registerItem(unbreakingOneEfficOneSpade, "unbreakingOneEfficOneSpade"); + + unbreakingOneFortuneOneSpade = new Item().setUnlocalizedName("unbreakingOneFortuneOneSpade").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "unbreakingOneFortuneOneSpade").setMaxStackSize(1); + GameRegistry.registerItem(unbreakingOneFortuneOneSpade, "unbreakingOneFortuneOneSpade"); + + efficOneFortuneOneSpade = new Item().setUnlocalizedName("efficOneFortuneOneSpade").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "efficOneFortuneOneSpade").setMaxStackSize(1); + GameRegistry.registerItem(efficOneFortuneOneSpade, "efficOneFortuneOneSpade"); + + //-----------------------ENCHANTED LUMBERAXE PARTS-----------------------// + + silkTouchIronLumberAxe = new Item().setUnlocalizedName("silkTouchIronLumberAxe").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "silkTouchIronLumberAxe").setMaxStackSize(1); + GameRegistry.registerItem(silkTouchIronLumberAxe, "silkTouchIronLumberAxe"); + + unbreakingOneLumberAxe = new Item().setUnlocalizedName("unbreakingOneLumberAxe").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "unbreakingOneLumberAxe").setMaxStackSize(1); + GameRegistry.registerItem(unbreakingOneLumberAxe, "unbreakingOneLumberAxe"); + + unbreakingTwoLumberAxe = new Item().setUnlocalizedName("unbreakingTwoLumberAxe").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "unbreakingTwoLumberAxe").setMaxStackSize(1); + GameRegistry.registerItem(unbreakingTwoLumberAxe, "unbreakingTwoLumberAxe"); + + efficOneLumberAxe = new Item().setUnlocalizedName("efficOneLumberAxe").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "efficOneLumberAxe").setMaxStackSize(1); + GameRegistry.registerItem(efficOneLumberAxe, "efficOneLumberAxe"); + + efficTwoLumberAxe = new Item().setUnlocalizedName("efficTwoLumberAxe").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "efficTwoLumberAxe").setMaxStackSize(1); + GameRegistry.registerItem(efficTwoLumberAxe, "efficTwoLumberAxe"); + + fortuneOneLumberAxe = new Item().setUnlocalizedName("fortuneOneLumberAxe").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "fortuneOneLumberAxe").setMaxStackSize(1); + GameRegistry.registerItem(fortuneOneLumberAxe, "fortuneOneLumberAxe"); + + fortuneTwoLumberAxe = new Item().setUnlocalizedName("fortuneTwoLumberAxe").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "fortuneTwoLumberAxe").setMaxStackSize(1); + GameRegistry.registerItem(fortuneTwoLumberAxe, "fortuneTwoLumberAxe"); + + unbreakingOneEfficOneLumberAxe = new Item().setUnlocalizedName("unbreakingOneEfficOneLumberAxe").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "unbreakingOneEfficOneLumberAxe").setMaxStackSize(1); + GameRegistry.registerItem(unbreakingOneEfficOneLumberAxe, "unbreakingOneEfficOneLumberAxe"); + + unbreakingOneFortuneOneLumberAxe = new Item().setUnlocalizedName("unbreakingOneFortuneOneLumberAxe").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "unbreakingOneFortuneOneLumberAxe").setMaxStackSize(1); + GameRegistry.registerItem(unbreakingOneFortuneOneLumberAxe, "unbreakingOneFortuneOneLumberAxe"); + + efficOneFortuneOneLumberAxe = new Item().setUnlocalizedName("efficOneFortuneOneLumberAxe").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "efficOneFortuneOneLumberAxe").setMaxStackSize(1); + GameRegistry.registerItem(efficOneFortuneOneLumberAxe, "efficOneFortuneOneLumberAxe"); + + //BUCKETS + filteredBucket = new FluidBucket(ModBlocks.blockFilteredWater); + filteredBucket.setUnlocalizedName("filteredBucket").setContainerItem(Items.bucket).setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "filteredBucket"); + GameRegistry.registerItem(filteredBucket, "filteredBucket"); + FluidContainerRegistry.registerFluidContainer(ModBlocks.fluidFiltered, new ItemStack(filteredBucket), new ItemStack(Items.bucket)); + + tanninBucket = new FluidBucket(ModBlocks.blockTannin); + tanninBucket.setUnlocalizedName("tanninBucket").setContainerItem(Items.bucket).setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "tanninBucket"); + GameRegistry.registerItem(tanninBucket, "tanninBucket"); + FluidContainerRegistry.registerFluidContainer(ModBlocks.fluidTan, new ItemStack(tanninBucket), new ItemStack(Items.bucket)); + + slackBucket = new FluidBucket(ModBlocks.blockSlackedLime); + slackBucket.setUnlocalizedName("slackBucket").setContainerItem(Items.bucket).setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":" + "slackBucket"); + GameRegistry.registerItem(slackBucket, "slackBucket"); + FluidContainerRegistry.registerFluidContainer(ModBlocks.fluidSlackedLime, new ItemStack(slackBucket), new ItemStack(Items.bucket)); + + itemShit = new ItemShit(); + itemTester = new ItemTester(); + + itemModelArrow = new ItemModelArrow(); + itemIronTippedModelArrow = new ItemIronTippedModelArrow(); + + itemBark= new ItemBark(); + itemSmallBarrelLid = new ItemSmallBarrelLid(); + + forgeHammer = new ForgeHammer(); + inlayHammer = new InlayHammer(); + workBlade = new WorkBlade(); + + slottedTongs = new SlottedTongs(); + //testLongbow0 = new ItemTestLongbow0(); + //testLongbow1 = new ItemTestLongbow1(); + //testLongbow10 = new ItemTestLongbow10(); + longbow = new ItemLongbow(); + + coarseFilter = new CoarseFilter(); + mediumFilter = new MediumFilter(); + fineFilter = new FineFilter(); + charcoalFilter = new Item().setUnlocalizedName("charcoalFilter").setCreativeTab(CustomTab.MedievalCraftTab).setTextureName(Main.MODID + ":charcoalFilter"); + GameRegistry.registerItem(charcoalFilter, "charcoalFilter"); + + rawCuredLeather = new RawCuredLeather(); + fireBow = new FireBow(); + leatherShears = new LeatherShears(); + ironSaw = new IronSaw(); + flintSaw = new FlintSaw(); + + ironAxeForm = new IronAxeForm("ironAxeForm", ironAxeForm); + ironBattleAxeForm = new IronBattleAxeForm("ironBattleAxeForm", ironBattleAxeForm); + ironDaggerForm = new IronDaggerForm("ironDaggerForm", ironDaggerForm); + ironHandleForm = new IronHandleForm("ironHandleForm", ironHandleForm); + ironHoeForm = new IronHoeForm("ironHoeForm", ironHoeForm); + ironLongswordForm = new IronLongswordForm("ironLongswordForm", ironLongswordForm); + ironMaceHeadForm = new IronMaceHeadForm("ironMaceHeadForm", ironMaceHeadForm); + ironPickaxeForm = new IronPickaxeForm("ironPickaxeForm", ironPickaxeForm); + ironRingForm = new IronRingForm("ironRingForm", ironRingForm); + ironSawBladeForm = new IronSawBladeForm("ironSawBladeForm", ironSawBladeForm); + ironSharpTipForm = new IronSharpTipForm("ironSharpTipForm", ironSharpTipForm); + ironShortSwordForm = new IronShortSwordForm("ironShortSwordForm", ironShortSwordForm); + ironSpadForm = new IronSpadeForm("ironSpadeForm", ironSpadForm); + ironSpearTipForm = new IronSpearTipForm("ironSpearTipForm", ironSpearTipForm); + //clayFormBook = new ItemClayFormBook(); + + //-----------------------MATERIALS REGISTERY-----------------------// + + GameRegistry.registerItem(gladius = new ItemGladius("gladius", longswordmat), "gladius"); + GameRegistry.registerItem(longSword = new ItemLongSword("longSword", longswordmat), "longSword"); + GameRegistry.registerItem(woodenShield = new ItemWoodenShield("woodenShield", woodenshieldmat), "woodenShield"); + GameRegistry.registerItem(ironShield = new ItemIronShield("ironShield", ironshieldmat), "ironShield"); + //GameRegistry.registerItem(ironShield = new ItemIronShield("ironShield", ironshieldmat), "ironShield"); + + GameRegistry.registerItem(heavyMace = new ItemHeavyMace("heavyMace", heavymacemat), "heavyMace"); + GameRegistry.registerItem(battleAxe = new ItemBattleAxe("battleAxe", heavymacemat), "battleAxe"); + //PICKAXES + //Silk Touch + GameRegistry.registerItem(customIronPick1 = new CustomIronPick("customIronPick1", customWoodWeak), "customIronPick1"); + GameRegistry.registerItem(customIronPick2 = new CustomIronPick("customIronPick2", customWoodNormal), "customIronPick2"); + GameRegistry.registerItem(customIronPick3 = new CustomIronPick("customIronPick3", customIronToolRodWeak), "customIronPick3"); + GameRegistry.registerItem(customIronPick4 = new CustomIronPick("customIronPick4", customIronToolRodWeak), "customIronPick4"); + + //Pickaxe Casetypes + GameRegistry.registerItem(customIronPickCase0 = new CustomIronPick("customIronPickCase0", customWoodNormal), "customIronPickCase0"); + GameRegistry.registerItem(customHandleIronPickCase0 = new CustomIronPick("customHandleIronPickCase0", customIronToolRodNormal), "customHandleIronPickCase0"); + GameRegistry.registerItem(customIronPickCase1 = new CustomIronPick("customIronPickCase1", customWoodNormal), "customIronPickCase1"); + GameRegistry.registerItem(customIronPickCase2 = new CustomIronPick("customIronPickCase2", customWoodNormal), "customIronPickCase2"); + GameRegistry.registerItem(customIronPickCase3 = new CustomIronPick("customIronPickCase3", customIronToolRodNormal), "customIronPickCase3"); + GameRegistry.registerItem(customIronPickCase4 = new CustomIronPick("customIronPickCase4", customWoodStrong), "customIronPickCase4"); + GameRegistry.registerItem(customIronPickCase5 = new CustomIronPick("customIronPickCase5", customWoodWeak), "customIronPickCase5"); + GameRegistry.registerItem(customIronPickCase6 = new CustomIronPick("customIronPickCase6", customIronToolRodWeak), "customIronPickCase6"); + GameRegistry.registerItem(customIronPickCase7 = new CustomIronPick("customIronPickCase7", customWoodWeak), "customIronPickCase7"); + GameRegistry.registerItem(customIronPickCase8 = new CustomIronPick("customIronPickCase8", customWoodWeak), "customIronPickCase8"); + GameRegistry.registerItem(customIronPickCase9 = new CustomIronPick("customIronPickCase9", customIronToolRodWeak), "customIronPickCase9"); + GameRegistry.registerItem(customIronPickCase10 = new CustomIronPick("customIronPickCase10", customIronToolRodWeak), "customIronPickCase10"); + GameRegistry.registerItem(customIronPickCase11 = new CustomIronPick("customIronPickCase11", customWoodWeak), "customIronPickCase11"); + GameRegistry.registerItem(customIronPickCase12 = new CustomIronPick("customIronPickCase12", customIronToolRodWeak), "customIronPickCase12"); + GameRegistry.registerItem(customIronPickCase13 = new CustomIronPick("customIronPickCase13", customWoodNormal), "customIronPickCase13"); + GameRegistry.registerItem(customIronPickCase14 = new CustomIronPick("customIronPickCase14", customIronToolRodNormal), "customIronPickCase14"); + GameRegistry.registerItem(customIronPickCase15 = new CustomIronPick("customIronPickCase15", customWoodWeak), "customIronPickCase15"); + GameRegistry.registerItem(customIronPickCase16 = new CustomIronPick("customIronPickCase16", customIronToolRodWeak), "customIronPickCase16"); + GameRegistry.registerItem(customIronPickCase17 = new CustomIronPick("customIronPickCase17", customIronToolRodWeak), "customIronPickCase17"); + GameRegistry.registerItem(customIronPickCase18 = new CustomIronPick("customIronPickCase18", customIronToolRodWeak), "customIronPickCase18"); + GameRegistry.registerItem(customIronPickCase19 = new CustomIronPick("customIronPickCase19", customWoodNormal), "customIronPickCase19"); + GameRegistry.registerItem(customIronPickCase20 = new CustomIronPick("customIronPickCase20", customIronToolRodNormal), "customIronPickCase20"); + GameRegistry.registerItem(customIronPickCase21 = new CustomIronPick("customIronPickCase21", customIronToolRodNormal), "customIronPickCase21"); + GameRegistry.registerItem(customIronPickCase22 = new CustomIronPick("customIronPickCase22", customWoodNormal), "customIronPickCase22"); + GameRegistry.registerItem(customIronPickCase23 = new CustomIronPick("customIronPickCase23", customIronToolRodStrong), "customIronPickCase23"); + GameRegistry.registerItem(customIronPickCase24 = new CustomIronPick("customIronPickCase24", customIronToolRodStrong), "customIronPickCase24"); + GameRegistry.registerItem(customIronPickCase25 = new CustomIronPick("customIronPickCase25", customWoodNormal), "customIronPickCase25"); + GameRegistry.registerItem(customIronPickCase26 = new CustomIronPick("customIronPickCase26", customIronToolRodWeak), "customIronPickCase26"); + GameRegistry.registerItem(customIronPickCase27 = new CustomIronPick("customIronPickCase27", customWoodNormal), "customIronPickCase27"); + GameRegistry.registerItem(customIronPickCase28 = new CustomIronPick("customIronPickCase28", customIronToolRodWeak), "customIronPickCase28"); + GameRegistry.registerItem(customIronPickCase29 = new CustomIronPick("customIronPickCase29", customWoodNormal), "customIronPickCase29"); + GameRegistry.registerItem(customIronPickCase30 = new CustomIronPick("customIronPickCase30", customWoodWeak), "customIronPickCase30"); + GameRegistry.registerItem(customIronPickCase31 = new CustomIronPick("customIronPickCase31", customIronToolRodWeak), "customIronPickCase31"); + GameRegistry.registerItem(customIronPickCase32 = new CustomIronPick("customIronPickCase32", customWoodNormal), "customIronPickCase32"); + GameRegistry.registerItem(customIronPickCase33 = new CustomIronPick("customIronPickCase33", customWoodWeak), "customIronPickCase33"); + GameRegistry.registerItem(customIronPickCase34 = new CustomIronPick("customIronPickCase34", customIronToolRodWeak), "customIronPickCase34"); + GameRegistry.registerItem(customIronPickCase35 = new CustomIronPick("customIronPickCase35", customWoodWeak), "customIronPickCase35"); + GameRegistry.registerItem(customIronPickCase36 = new CustomIronPick("customIronPickCase36", customWoodWeak), "customIronPickCase36"); + GameRegistry.registerItem(customIronPickCase37 = new CustomIronPick("customIronPickCase37", customWoodNormal), "customIronPickCase37"); + GameRegistry.registerItem(customIronPickCase38 = new CustomIronPick("customIronPickCase38", customIronToolRodWeak), "customIronPickCase38"); + GameRegistry.registerItem(customIronPickCase39 = new CustomIronPick("customIronPickCase39", customIronToolRodWeak), "customIronPickCase39"); + GameRegistry.registerItem(customIronPickCase40 = new CustomIronPick("customIronPickCase40", customIronToolRodWeak), "customIronPickCase40"); + GameRegistry.registerItem(customIronPickCase41 = new CustomIronPick("customIronPickCase41", customWoodNormal), "customIronPickCase41"); + GameRegistry.registerItem(customIronPickCase42 = new CustomIronPick("customIronPickCase42", customIronToolRodNormal), "customIronPickCase42"); + GameRegistry.registerItem(customIronPickCase43 = new CustomIronPick("customIronPickCase43", customWoodNormal), "customIronPickCase43"); + GameRegistry.registerItem(customIronPickCase44 = new CustomIronPick("customIronPickCase44", customWoodWeak), "customIronPickCase44"); + GameRegistry.registerItem(customIronPickCase45 = new CustomIronPick("customIronPickCase45", customIronToolRodWeak), "customIronPickCase45"); + GameRegistry.registerItem(customIronPickCase46 = new CustomIronPick("customIronPickCase46", customIronToolRodWeak), "customIronPickCase46"); + GameRegistry.registerItem(customIronPickCase47 = new CustomIronPick("customIronPickCase47", customWoodNormal), "customIronPickCase47"); + GameRegistry.registerItem(customIronPickCase48 = new CustomIronPick("customIronPickCase48", customIronToolRodNormal), "customIronPickCase48"); + GameRegistry.registerItem(customIronPickCase49 = new CustomIronPick("customIronPickCase49", customWoodWeak), "customIronPickCase49"); + GameRegistry.registerItem(customIronPickCase50 = new CustomIronPick("customIronPickCase50", customIronToolRodWeak), "customIronPickCase50"); + GameRegistry.registerItem(customIronPickCase51 = new CustomIronPick("customIronPickCase51", customWoodNormal), "customIronPickCase51"); + GameRegistry.registerItem(customIronPickCase52 = new CustomIronPick("customIronPickCase52", customIronToolRodWeak), "customIronPickCase52"); + + + GameRegistry.registerItem(customIronPick = new CustomIronPick("customIronPick", customWoodNormal), "customIronPick"); + GameRegistry.registerItem(customStrongIronPick = new CustomIronPick("customStrongIronPick", customWoodStrong), "customStrongIronPick"); + GameRegistry.registerItem(customWeakIronPick = new CustomIronPick("customWeakIronPick", customWoodWeak), "customWeakIronPick"); + GameRegistry.registerItem(customHandleIronPick = new CustomIronPick("customHandleIronPick", customIronToolRodNormal), "customHandleIronPick"); + GameRegistry.registerItem(customHandleStrongIronPick = new CustomIronPick("customHandleStrongIronPick", customIronToolRodStrong), "customHandleStrongIronPick"); + + //SHOVELS + //SilkTouch Numbers + GameRegistry.registerItem(customIronShovel0 = new CustomIronShovel("customIronShovel0", customWoodWeak), "customIronShovel0"); + GameRegistry.registerItem(customIronShovel1 = new CustomIronShovel("customIronShovel1", customIronToolRodWeak), "customIronShovel1"); + GameRegistry.registerItem(customIronShovel2 = new CustomIronShovel("customIronShovel2", customWoodNormal), "customIronShovel2"); + GameRegistry.registerItem(customIronShovel3 = new CustomIronShovel("customIronShovel3", customIronToolRodWeak), "customIronShovel3"); + + GameRegistry.registerItem(customIronShovelCase0 = new CustomIronShovel("customIronShovelCase0", customWoodNormal), "customIronShovelCase0"); + GameRegistry.registerItem(customIronShovelCase00 = new CustomIronShovel("customIronShovelCase00", customIronToolRodNormal), "customIronShovelCase00"); + GameRegistry.registerItem(customIronShovelCase1 = new CustomIronShovel("customIronShovelCase1", customWoodNormal), "customIronShovelCase1"); + GameRegistry.registerItem(customIronShovelCase2 = new CustomIronShovel("customIronShovelCase2", customWoodNormal), "customIronShovelCase2"); + GameRegistry.registerItem(customIronShovelCase3 = new CustomIronShovel("customIronShovelCase3", customIronToolRodNormal), "customIronShovelCase3"); + GameRegistry.registerItem(customIronShovelCase4 = new CustomIronShovel("customIronShovelCase4", customWoodStrong), "customIronShovelCase4"); + GameRegistry.registerItem(customIronShovelCase5 = new CustomIronShovel("customIronShovelCase5", customWoodWeak), "customIronShovelCase5"); + GameRegistry.registerItem(customIronShovelCase6 = new CustomIronShovel("customIronShovelCase6", customIronToolRodWeak), "customIronShovelCase6"); + GameRegistry.registerItem(customIronShovelCase7 = new CustomIronShovel("customIronShovelCase7", customWoodWeak), "customIronShovelCase7"); + GameRegistry.registerItem(customIronShovelCase8 = new CustomIronShovel("customIronShovelCase8", customWoodWeak), "customIronShovelCase8"); + GameRegistry.registerItem(customIronShovelCase9 = new CustomIronShovel("customIronShovelCase9", customIronToolRodWeak), "customIronShovelCase9"); + GameRegistry.registerItem(customIronShovelCase10 = new CustomIronShovel("customIronShovelCase10", customIronToolRodWeak), "customIronShovelCase10"); + GameRegistry.registerItem(customIronShovelCase11 = new CustomIronShovel("customIronShovelCase11", customWoodWeak), "customIronShovelCase11"); + GameRegistry.registerItem(customIronShovelCase12 = new CustomIronShovel("customIronShovelCase12", customIronToolRodWeak), "customIronShovelCase12"); + GameRegistry.registerItem(customIronShovelCase13 = new CustomIronShovel("customIronShovelCase13", customWoodNormal), "customIronShovelCase13"); + GameRegistry.registerItem(customIronShovelCase14 = new CustomIronShovel("customIronShovelCase14", customIronToolRodNormal), "customIronShovelCase14"); + GameRegistry.registerItem(customIronShovelCase15 = new CustomIronShovel("customIronShovelCase15", customWoodWeak), "customIronShovelCase15"); + GameRegistry.registerItem(customIronShovelCase16 = new CustomIronShovel("customIronShovelCase16", customIronToolRodWeak), "customIronShovelCase16"); + GameRegistry.registerItem(customIronShovelCase17 = new CustomIronShovel("customIronShovelCase17", customIronToolRodWeak), "customIronShovelCase17"); + GameRegistry.registerItem(customIronShovelCase18 = new CustomIronShovel("customIronShovelCase18", customIronToolRodWeak), "customIronShovelCase18"); + GameRegistry.registerItem(customIronShovelCase19 = new CustomIronShovel("customIronShovelCase19", customWoodNormal), "customIronShovelCase19"); + GameRegistry.registerItem(customIronShovelCase20 = new CustomIronShovel("customIronShovelCase20", customIronToolRodNormal), "customIronShovelCase20"); + GameRegistry.registerItem(customIronShovelCase21 = new CustomIronShovel("customIronShovelCase21", customIronToolRodNormal), "customIronShovelCase21"); + GameRegistry.registerItem(customIronShovelCase22 = new CustomIronShovel("customIronShovelCase22", customWoodNormal), "customIronShovelCase22"); + GameRegistry.registerItem(customIronShovelCase23 = new CustomIronShovel("customIronShovelCase23", customIronToolRodStrong), "customIronShovelCase23"); + GameRegistry.registerItem(customIronShovelCase24 = new CustomIronShovel("customIronShovelCase24", customIronToolRodStrong), "customIronShovelCase24"); + GameRegistry.registerItem(customIronShovelCase25 = new CustomIronShovel("customIronShovelCase25", customWoodNormal), "customIronShovelCase25"); + GameRegistry.registerItem(customIronShovelCase26 = new CustomIronShovel("customIronShovelCase26", customIronToolRodWeak), "customIronShovelCase26"); + GameRegistry.registerItem(customIronShovelCase27 = new CustomIronShovel("customIronShovelCase27", customWoodNormal), "customIronShovelCase27"); + GameRegistry.registerItem(customIronShovelCase28 = new CustomIronShovel("customIronShovelCase28", customIronToolRodWeak), "customIronShovelCase28"); + GameRegistry.registerItem(customIronShovelCase29 = new CustomIronShovel("customIronShovelCase29", customWoodNormal), "customIronShovelCase29"); + GameRegistry.registerItem(customIronShovelCase30 = new CustomIronShovel("customIronShovelCase30", customWoodWeak), "customIronShovelCase30"); + GameRegistry.registerItem(customIronShovelCase31 = new CustomIronShovel("customIronShovelCase31", customIronToolRodWeak), "customIronShovelCase31"); + GameRegistry.registerItem(customIronShovelCase32 = new CustomIronShovel("customIronShovelCase32", customWoodNormal), "customIronShovelCase32"); + GameRegistry.registerItem(customIronShovelCase33 = new CustomIronShovel("customIronShovelCase33", customWoodWeak), "customIronShovelCase33"); + GameRegistry.registerItem(customIronShovelCase34 = new CustomIronShovel("customIronShovelCase34", customIronToolRodWeak), "customIronShovelCase34"); + GameRegistry.registerItem(customIronShovelCase35 = new CustomIronShovel("customIronShovelCase35", customWoodWeak), "customIronShovelCase35"); + GameRegistry.registerItem(customIronShovelCase36 = new CustomIronShovel("customIronShovelCase36", customWoodWeak), "customIronShovelCase36"); + GameRegistry.registerItem(customIronShovelCase37 = new CustomIronShovel("customIronShovelCase37", customWoodNormal), "customIronShovelCase37"); + GameRegistry.registerItem(customIronShovelCase38 = new CustomIronShovel("customIronShovelCase38", customIronToolRodWeak), "customIronShovelCase38"); + GameRegistry.registerItem(customIronShovelCase39 = new CustomIronShovel("customIronShovelCase39", customIronToolRodWeak), "customIronShovelCase39"); + GameRegistry.registerItem(customIronShovelCase40 = new CustomIronShovel("customIronShovelCase40", customIronToolRodWeak), "customIronShovelCase40"); + GameRegistry.registerItem(customIronShovelCase41 = new CustomIronShovel("customIronShovelCase41", customWoodNormal), "customIronShovelCase41"); + GameRegistry.registerItem(customIronShovelCase42 = new CustomIronShovel("customIronShovelCase42", customIronToolRodNormal), "customIronShovelCase42"); + GameRegistry.registerItem(customIronShovelCase43 = new CustomIronShovel("customIronShovelCase43", customWoodNormal), "customIronShovelCase43"); + GameRegistry.registerItem(customIronShovelCase44 = new CustomIronShovel("customIronShovelCase44", customWoodWeak), "customIronShovelCase44"); + GameRegistry.registerItem(customIronShovelCase45 = new CustomIronShovel("customIronShovelCase45", customIronToolRodWeak), "customIronShovelCase45"); + GameRegistry.registerItem(customIronShovelCase46 = new CustomIronShovel("customIronShovelCase46", customIronToolRodWeak), "customIronShovelCase46"); + GameRegistry.registerItem(customIronShovelCase47 = new CustomIronShovel("customIronShovelCase47", customWoodNormal), "customIronShovelCase47"); + GameRegistry.registerItem(customIronShovelCase48 = new CustomIronShovel("customIronShovelCase48", customIronToolRodNormal), "customIronShovelCase48"); + GameRegistry.registerItem(customIronShovelCase49 = new CustomIronShovel("customIronShovelCase49", customWoodWeak), "customIronShovelCase49"); + GameRegistry.registerItem(customIronShovelCase50 = new CustomIronShovel("customIronShovelCase50", customIronToolRodWeak), "customIronShovelCase50"); + GameRegistry.registerItem(customIronShovelCase51 = new CustomIronShovel("customIronShovelCase51", customWoodNormal), "customIronShovelCase51"); + GameRegistry.registerItem(customIronShovelCase52 = new CustomIronShovel("customIronShovelCase52", customIronToolRodWeak), "customIronShovelCase52"); + + + + GameRegistry.registerItem(customIronShovel = new CustomIronShovel("customIronShovel", customWoodNormal), "customIronShovel"); + GameRegistry.registerItem(customStrongIronShovel = new CustomIronShovel("customStrongIronShovel", customWoodStrong), "customStrongIronShovel"); + GameRegistry.registerItem(customWeakIronShovel = new CustomIronShovel("customWeakIronShovel", customWoodWeak), "customWeakIronShovel"); + GameRegistry.registerItem(customHandleIronShovel = new CustomIronShovel("customHandleIronShovel", customIronToolRodNormal), "customHandleIronShovel"); + GameRegistry.registerItem(customHandleStrongIronShovel = new CustomIronShovel("customHandleStrongIronShovel", customIronToolRodStrong), "customHandleStrongIronShovel"); + + //LUMBERAXE + //Silk Touch + GameRegistry.registerItem(customIronLumberAxe0 = new CustomIronLumberAxe("customIronLumberAxe0", customWoodWeak), "customIronLumberAxe0"); + GameRegistry.registerItem(customIronLumberAxe1 = new CustomIronLumberAxe("customIronLumberAxe1", customWoodNormal), "customIronLumberAxe1"); + GameRegistry.registerItem(customIronLumberAxe2 = new CustomIronLumberAxe("customIronLumberAxe2", customIronToolRodWeak), "customIronLumberAxe2"); + GameRegistry.registerItem(customIronLumberAxe3 = new CustomIronLumberAxe("customIronLumberAxe3", customIronToolRodWeak), "customIronLumberAxe3"); + + GameRegistry.registerItem(customIronLumberAxe = new CustomIronLumberAxe("customIronLumberAxe", customWoodNormal), "customIronLumberAxe"); + GameRegistry.registerItem(customStrongIronLumberAxe = new CustomIronLumberAxe("customStrongIronLumberAxe", customWoodStrong), "customStrongIronLumberAxe"); + GameRegistry.registerItem(customWeakIronLumberAxe = new CustomIronLumberAxe("customWeakIronLumberAxe", customWoodWeak), "customWeakIronLumberAxe"); + GameRegistry.registerItem(customHandleIronLumberAxe = new CustomIronLumberAxe("customHandleIronLumberAxe", customIronToolRodNormal), "customHandleIronLumberAxe"); + GameRegistry.registerItem(customHandleStrongIronLumberAxe = new CustomIronLumberAxe("customHandleStrongIronLumberAxe", customIronToolRodStrong), "customHandleStrongIronLumberAxe"); + + GameRegistry.registerItem(customIronHoe = new CustomIronHoe("customIronHoe", customWoodNormal), "customIronHoe"); + + } +} diff --git a/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/.org.eclipse.jdt.core.external.folders/.markers.snap b/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/.org.eclipse.jdt.core.external.folders/.markers.snap index 3873adee..bf5878df 100644 Binary files a/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/.org.eclipse.jdt.core.external.folders/.markers.snap and b/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/.org.eclipse.jdt.core.external.folders/.markers.snap differ diff --git a/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/.org.eclipse.jdt.core.external.folders/.syncinfo.snap b/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/.org.eclipse.jdt.core.external.folders/.syncinfo.snap index 3873adee..bf5878df 100644 Binary files a/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/.org.eclipse.jdt.core.external.folders/.syncinfo.snap and b/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/.org.eclipse.jdt.core.external.folders/.syncinfo.snap differ diff --git a/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/Minecraft/.markers.snap b/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/Minecraft/.markers.snap index 3873adee..bf5878df 100644 Binary files a/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/Minecraft/.markers.snap and b/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/Minecraft/.markers.snap differ diff --git a/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/Minecraft/.syncinfo.snap b/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/Minecraft/.syncinfo.snap index 3873adee..bf5878df 100644 Binary files a/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/Minecraft/.syncinfo.snap and b/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/Minecraft/.syncinfo.snap differ diff --git a/eclipse/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap b/eclipse/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap index 3873adee..de4c428d 100644 Binary files a/eclipse/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap and b/eclipse/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap differ diff --git a/eclipse/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources b/eclipse/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources index 9b34009f..a853582a 100644 Binary files a/eclipse/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources and b/eclipse/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources differ diff --git a/eclipse/.metadata/.plugins/org.eclipse.core.resources/5.snap b/eclipse/.metadata/.plugins/org.eclipse.core.resources/5.snap index 81167980..548eb914 100644 Binary files a/eclipse/.metadata/.plugins/org.eclipse.core.resources/5.snap and b/eclipse/.metadata/.plugins/org.eclipse.core.resources/5.snap differ diff --git a/eclipse/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi b/eclipse/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi index 50295a2c..8c1c644b 100644 --- a/eclipse/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi +++ b/eclipse/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi @@ -1,18 +1,18 @@ - + activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration ModelMigrationProcessor.001 - + topLevel shellMaximized - - - + + + persp.actionSet:org.eclipse.mylyn.doc.actionSet persp.actionSet:org.eclipse.mylyn.tasks.ui.navigation @@ -71,2125 +71,2125 @@ persp.newWizSC:org.eclipse.mylyn.tasks.ui.wizards.new.repository.task persp.viewSC:org.eclipse.wb.core.StructureView persp.viewSC:org.eclipse.wb.core.PaletteView - - - + + + newtablook org.eclipse.e4.primaryNavigationStack - active - noFocus - - - - - - - + + + + + + + - + newtablook - + - - - - - + + + + + newtablook - + - + newtablook org.eclipse.e4.secondaryNavigationStack - - - + + + - + newtablook org.eclipse.e4.secondaryDataStack - - - - - - - + + + + + + + - - - - + + + + - + View categoryTag:Help - + View categoryTag:General - + View categoryTag:Help - - + + newtablook org.eclipse.e4.primaryDataStack EditorStack - - + active + noFocus + + Editor org.eclipse.ui.DefaultTextEditor removeOnHide - + menuContribution:popup popup:#TextEditorContext popup:org.eclipse.ui.DefaultTextEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#TextRulerContext popup:org.eclipse.ui.DefaultTextEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - - + + Editor org.eclipse.jdt.ui.CompilationUnitEditor removeOnHide - + active + menuContribution:popup popup:#CompilationUnitEditorContext popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CompilationUnitRulerContext popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - - + + Editor org.eclipse.jdt.ui.CompilationUnitEditor removeOnHide - + menuContribution:popup popup:#CompilationUnitEditorContext popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CompilationUnitRulerContext popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + View categoryTag:Java - active - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.jdt.ui.PackageExplorer - + - + View categoryTag:Java - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + - + View categoryTag:Java - + View categoryTag:Java - + View categoryTag:General - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.ProcessConsoleType.#ContextMenu - + - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + ViewMenu menuContribution:menu - + - + View categoryTag:General - + View categoryTag:Ant - + View categoryTag:Git - + View categoryTag:Java - + View categoryTag:Mylyn - + ViewMenu menuContribution:menu - + - + View categoryTag:WindowBuilder - + View categoryTag:WindowBuilder - - + + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - - + + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + Opaque - + Opaque - + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - - + + Opaque - + Opaque - + Opaque - + Draggable - + Draggable - + toolbarSeparator - + - + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + stretch SHOW_RESTORE_MENU - + Draggable HIDEABLE SHOW_RESTORE_MENU - - + + stretch - + Draggable - + Draggable - - + + - - - - - - - - - - + + + + + + + + + + platform:gtk - - - - - - - - + + + + + + + + platform:gtk - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - + + + + + + + - - + + - - + + - - - + + + - - + + - - + + - - - + + + - - + + - - - + + + - - + + - - + + - - - + + + - - + + - - + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - + + - - - - - - - - - - - - - + + + + + + + + + + + + + - - - + + + - - - + + + - - - - - - - - + + + + + + + + - - - - - - + + + + + + - - - - + + + + - - + + - - - + + + - - + + - - - - - - - - + + + + + + + + - - - - - - + + + + + + - - + + - - + + - - + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - + + - - - - - - - + + + + + + + - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Editor - + View categoryTag:Ant - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:General - + View categoryTag:Help - + View categoryTag:Debug - + View categoryTag:Java - + View categoryTag:Java - + View categoryTag:Java - + View categoryTag:Java Browsing - + View categoryTag:Java Browsing - + View categoryTag:Java Browsing - + View categoryTag:Java Browsing - + View categoryTag:Java - + View categoryTag:General - + View categoryTag:Java - + View categoryTag:Java - + View categoryTag:Maven - + View categoryTag:Maven - + View categoryTag:Mylyn - + View categoryTag:Mylyn - + View categoryTag:Mylyn - + View categoryTag:Mylyn - + View categoryTag:Code Recommenders - + View categoryTag:Code Recommenders - + View categoryTag:Code Recommenders - + View categoryTag:Code Recommenders - + View categoryTag:General - + View categoryTag:General - + View categoryTag:CVS - + View categoryTag:CVS - + View categoryTag:Team - + View categoryTag:Team - + View categoryTag:General - + View categoryTag:General - + View categoryTag:Help - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:WindowBuilder - + View categoryTag:WindowBuilder - + View categoryTag:General - + View categoryTag:XML - + View categoryTag:XML - - - - + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - - - - + + + + + + - - - - - - - - - + + + + + + + + + - - - - - - - + + + + + + + - - - - + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + + + + + + - - + + - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - + + + - - - - - + + + + + - - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eclipse/.metadata/.plugins/org.eclipse.jdt.core/savedIndexNames.txt b/eclipse/.metadata/.plugins/org.eclipse.jdt.core/savedIndexNames.txt index 346e508c..5a7c6294 100644 --- a/eclipse/.metadata/.plugins/org.eclipse.jdt.core/savedIndexNames.txt +++ b/eclipse/.metadata/.plugins/org.eclipse.jdt.core/savedIndexNames.txt @@ -38,7 +38,6 @@ INDEX VERSION 1.127+/home/kitsudesktop/Development/ForgeCraft/eclipse/.metadata/ 3591913134.index 135292806.index 1155683227.index -208370467.index 944496423.index 742522455.index 62093115.index diff --git a/eclipse/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/0.png b/eclipse/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/0.png new file mode 100644 index 00000000..834bd74e Binary files /dev/null and b/eclipse/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/0.png differ diff --git a/eclipse/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/1.png b/eclipse/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/1.png new file mode 100644 index 00000000..31311ab6 Binary files /dev/null and b/eclipse/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/1.png differ diff --git a/eclipse/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/2.png b/eclipse/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/2.png new file mode 100644 index 00000000..a6abcd86 Binary files /dev/null and b/eclipse/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/2.png differ diff --git a/eclipse/config/splash.properties b/eclipse/config/splash.properties index 7ce82ba4..a7664119 100644 --- a/eclipse/config/splash.properties +++ b/eclipse/config/splash.properties @@ -1,5 +1,5 @@ #Splash screen properties -#Sat Jul 25 13:29:59 EDT 2015 +#Sat Jul 25 18:56:10 EDT 2015 logoTexture=textures/gui/title/mojang.png background=0xFFFFFF font=0x0 diff --git a/eclipse/logs/2015-07-25-1.log.gz b/eclipse/logs/2015-07-25-1.log.gz new file mode 100644 index 00000000..95bbfbe1 Binary files /dev/null and b/eclipse/logs/2015-07-25-1.log.gz differ diff --git a/eclipse/logs/fml-client-1.log b/eclipse/logs/fml-client-1.log index e838b20c..7ebf29c4 100644 --- a/eclipse/logs/fml-client-1.log +++ b/eclipse/logs/fml-client-1.log @@ -1,58 +1,58 @@ -[23:21:12] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR. -[23:21:12] [main/INFO] [FML/]: Forge Mod Loader version 7.99.16.1448 for Minecraft 1.7.10 loading -[23:21:12] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_45, running on Linux:amd64:3.13.0-37-generic, installed at /usr/lib/jvm/java-8-oracle/jre -[23:21:12] [main/DEBUG] [FML/]: Java classpath at launch is /usr/lib/jvm/java-8-oracle/jre/lib/charsets.jar:/usr/lib/jvm/java-8-oracle/jre/lib/plugin.jar:/usr/lib/jvm/java-8-oracle/jre/lib/resources.jar:/usr/lib/jvm/java-8-oracle/jre/lib/rt.jar:/usr/lib/jvm/java-8-oracle/jre/lib/deploy.jar:/usr/lib/jvm/java-8-oracle/jre/lib/jce.jar:/usr/lib/jvm/java-8-oracle/jre/lib/jsse.jar:/usr/lib/jvm/java-8-oracle/jre/lib/jfr.jar:/usr/lib/jvm/java-8-oracle/jre/lib/javaws.jar:/usr/lib/jvm/java-8-oracle/jre/lib/jfxswt.jar:/usr/lib/jvm/java-8-oracle/jre/lib/management-agent.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/nashorn.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/jfxrt.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/sunec.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/localedata.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/sunpkcs11.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/dnsns.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/zipfs.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/cldrdata.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/sunjce_provider.jar:/home/kitsudesktop/Development/ForgeCraft/build/classes/main:/home/kitsudesktop/Development/ForgeCraft/build/resources/main:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.11/9c0592c6e1e9ea296a70948081bd4cc84dda1289/launchwrapper-1.11.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/1.3.9/40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf/jsr305-1.3.9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.0.3/f9e364ae2a66ce2a543012a4668856e84e5dab74/asm-debug-all-5.0.3.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-xml_2.11/1.0.2/7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0/scala-xml_2.11-1.0.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.5/6065cc95c661255349c1d0756657be17c29a4fd3/jopt-simple-4.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.3.5/807ae355ee63583becd7ea60e76aab1532bb42e/realms-1.3.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.3.1/a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d/vecmath-1.3.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.10.Final/9e50bd52ffe257a0e2cd8d971688d6ce7d174325/netty-all-4.0.10.Final.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.16/ef1582b11fd0943d069cdcb72e99008ac209a283/authlib-1.5.16.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.1/f58c5aabcef0e41718a564be9f8e412fff8db847/lwjgl-2.9.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.1/290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e/lwjgl_util-2.9.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/5.16/1f55f009c61637c10c0acfb8b5ffc600f30044b4/twitch-5.16.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/7c6affe439099806a4f552da14c42f9d643d8b23/twitch-platform-5.16-natives-windows-32.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/39d0c3d363735b4785598e0e7fbf8297c706a9f9/twitch-platform-5.16-natives-windows-64.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/62503ee712766cf77f97252e5902786fd834b8c5/twitch-platform-5.16-natives-osx.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/4c517eca808522457dd95ee8fc1fbcdbb602efbe/lwjgl-platform-2.9.1-natives-windows.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/aa9aae879af8eb378e22cfc64db56ec2ca9a44d1/lwjgl-platform-2.9.1-natives-linux.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac/lwjgl-platform-2.9.1-natives-osx.jar:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/start:/home/kitsudesktop/Downloads/idea-IC-141.1532.4/lib/idea_rt.jar -[23:21:12] [main/DEBUG] [FML/]: Java library path at launch is /home/kitsudesktop/Downloads/idea-IC-141.1532.4/bin::/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraft/minecraft_natives/1.7.10 -[23:21:12] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation -[23:21:12] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin -[23:21:12] [main/DEBUG] [FML/]: Added access transformer class cpw.mods.fml.common.asm.transformers.AccessTransformer to enqueued access transformers -[23:21:12] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin -[23:21:12] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin -[23:21:12] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.transformers.ForgeAccessTransformer to enqueued access transformers -[23:21:12] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin -[23:21:12] [main/DEBUG] [FML/]: All fundamental core mods are successfully located -[23:21:12] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to /home/kitsudesktop/Development/ForgeCraft/eclipse/. -[23:21:12] [main/DEBUG] [FML/]: Discovering coremods -[23:21:12] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker -[23:21:12] [main/INFO] [GradleStart/]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin -[23:21:12] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin -[23:21:12] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker -[23:21:12] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker -[23:21:12] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker -[23:21:12] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker -[23:21:12] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker -[23:21:12] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper -[23:21:12] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} class transformers -[23:21:12] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.MarkerTransformer -[23:21:12] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.SideTransformer -[23:21:12] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.EventSubscriptionTransformer -[23:21:12] [main/DEBUG] [FML/]: Injection complete -[23:21:12] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} -[23:21:12] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin -[23:21:12] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! -[23:21:13] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing -[23:21:13] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully -[23:21:13] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper -[23:21:13] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers -[23:21:13] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.classloading.FluidIdTransformer -[23:21:13] [main/DEBUG] [FML/]: Injection complete -[23:21:13] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} -[23:21:13] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin -[23:21:13] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully -[23:21:13] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker -[23:21:13] [main/DEBUG] [FML/]: Loaded 57 rules from AccessTransformer config file fml_at.cfg -[23:21:13] [main/DEBUG] [FML/]: Loaded 89 rules from AccessTransformer config file forge_at.cfg -[23:21:13] [main/DEBUG] [FML/]: Validating minecraft -[23:21:13] [main/DEBUG] [FML/]: Minecraft validated, launching... -[23:21:13] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker -[23:21:13] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker -[23:21:13] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker -[23:21:13] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main} -[23:21:15] [Client thread/INFO] [STDOUT/]: [tv.twitch.StandardCoreAPI::16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's. -[23:21:15] [Client thread/INFO] [STDOUT/]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ---- -// This is a token for 1 free hug. Redeem at your nearest Mojangsta: [~~HUG~~] +[23:23:00] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR. +[23:23:00] [main/INFO] [FML/]: Forge Mod Loader version 7.99.16.1448 for Minecraft 1.7.10 loading +[23:23:00] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_45, running on Linux:amd64:3.13.0-37-generic, installed at /usr/lib/jvm/java-8-oracle/jre +[23:23:00] [main/DEBUG] [FML/]: Java classpath at launch is /usr/lib/jvm/java-8-oracle/jre/lib/charsets.jar:/usr/lib/jvm/java-8-oracle/jre/lib/plugin.jar:/usr/lib/jvm/java-8-oracle/jre/lib/resources.jar:/usr/lib/jvm/java-8-oracle/jre/lib/rt.jar:/usr/lib/jvm/java-8-oracle/jre/lib/deploy.jar:/usr/lib/jvm/java-8-oracle/jre/lib/jce.jar:/usr/lib/jvm/java-8-oracle/jre/lib/jsse.jar:/usr/lib/jvm/java-8-oracle/jre/lib/jfr.jar:/usr/lib/jvm/java-8-oracle/jre/lib/javaws.jar:/usr/lib/jvm/java-8-oracle/jre/lib/jfxswt.jar:/usr/lib/jvm/java-8-oracle/jre/lib/management-agent.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/nashorn.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/jfxrt.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/sunec.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/localedata.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/sunpkcs11.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/dnsns.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/zipfs.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/cldrdata.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/sunjce_provider.jar:/home/kitsudesktop/Development/ForgeCraft/build/classes/main:/home/kitsudesktop/Development/ForgeCraft/build/resources/main:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.11/9c0592c6e1e9ea296a70948081bd4cc84dda1289/launchwrapper-1.11.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/1.3.9/40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf/jsr305-1.3.9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.0.3/f9e364ae2a66ce2a543012a4668856e84e5dab74/asm-debug-all-5.0.3.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-xml_2.11/1.0.2/7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0/scala-xml_2.11-1.0.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.5/6065cc95c661255349c1d0756657be17c29a4fd3/jopt-simple-4.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.3.5/807ae355ee63583becd7ea60e76aab1532bb42e/realms-1.3.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.3.1/a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d/vecmath-1.3.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.10.Final/9e50bd52ffe257a0e2cd8d971688d6ce7d174325/netty-all-4.0.10.Final.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.16/ef1582b11fd0943d069cdcb72e99008ac209a283/authlib-1.5.16.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.1/f58c5aabcef0e41718a564be9f8e412fff8db847/lwjgl-2.9.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.1/290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e/lwjgl_util-2.9.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/5.16/1f55f009c61637c10c0acfb8b5ffc600f30044b4/twitch-5.16.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/7c6affe439099806a4f552da14c42f9d643d8b23/twitch-platform-5.16-natives-windows-32.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/39d0c3d363735b4785598e0e7fbf8297c706a9f9/twitch-platform-5.16-natives-windows-64.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/62503ee712766cf77f97252e5902786fd834b8c5/twitch-platform-5.16-natives-osx.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/4c517eca808522457dd95ee8fc1fbcdbb602efbe/lwjgl-platform-2.9.1-natives-windows.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/aa9aae879af8eb378e22cfc64db56ec2ca9a44d1/lwjgl-platform-2.9.1-natives-linux.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac/lwjgl-platform-2.9.1-natives-osx.jar:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/start:/home/kitsudesktop/Downloads/idea-IC-141.1532.4/lib/idea_rt.jar +[23:23:00] [main/DEBUG] [FML/]: Java library path at launch is /home/kitsudesktop/Downloads/idea-IC-141.1532.4/bin::/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraft/minecraft_natives/1.7.10 +[23:23:00] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation +[23:23:00] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin +[23:23:00] [main/DEBUG] [FML/]: Added access transformer class cpw.mods.fml.common.asm.transformers.AccessTransformer to enqueued access transformers +[23:23:00] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin +[23:23:00] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin +[23:23:00] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.transformers.ForgeAccessTransformer to enqueued access transformers +[23:23:00] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin +[23:23:00] [main/DEBUG] [FML/]: All fundamental core mods are successfully located +[23:23:00] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to /home/kitsudesktop/Development/ForgeCraft/eclipse/. +[23:23:00] [main/DEBUG] [FML/]: Discovering coremods +[23:23:00] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker +[23:23:00] [main/INFO] [GradleStart/]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin +[23:23:00] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin +[23:23:00] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker +[23:23:00] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker +[23:23:00] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker +[23:23:00] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker +[23:23:00] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker +[23:23:00] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper +[23:23:00] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} class transformers +[23:23:00] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.MarkerTransformer +[23:23:00] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.SideTransformer +[23:23:00] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.EventSubscriptionTransformer +[23:23:00] [main/DEBUG] [FML/]: Injection complete +[23:23:00] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} +[23:23:00] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin +[23:23:01] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! +[23:23:01] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing +[23:23:01] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully +[23:23:01] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper +[23:23:01] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers +[23:23:01] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.classloading.FluidIdTransformer +[23:23:01] [main/DEBUG] [FML/]: Injection complete +[23:23:01] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} +[23:23:01] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin +[23:23:01] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully +[23:23:01] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker +[23:23:01] [main/DEBUG] [FML/]: Loaded 57 rules from AccessTransformer config file fml_at.cfg +[23:23:01] [main/DEBUG] [FML/]: Loaded 89 rules from AccessTransformer config file forge_at.cfg +[23:23:01] [main/DEBUG] [FML/]: Validating minecraft +[23:23:01] [main/DEBUG] [FML/]: Minecraft validated, launching... +[23:23:01] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker +[23:23:01] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker +[23:23:01] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker +[23:23:01] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main} +[23:23:03] [Client thread/INFO] [STDOUT/]: [tv.twitch.StandardCoreAPI::16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's. +[23:23:03] [Client thread/INFO] [STDOUT/]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ---- +// Everything's going to plan. No, really, that was supposed to happen. -Time: 7/22/15 11:21 PM +Time: 7/22/15 11:23 PM Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR @@ -67,453 +67,454 @@ Details: Operating System: Linux (amd64) version 3.13.0-37-generic Java Version: 1.8.0_45, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation - Memory: 781986696 bytes (745 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB) + Memory: 787296672 bytes (750 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.4.0 NVIDIA 331.113' Renderer: 'GeForce GTX 680/PCIe/SSE2' -[23:21:15] [Client thread/INFO] [MinecraftForge/]: Attempting early MinecraftForge initialization -[23:21:15] [Client thread/INFO] [FML/]: MinecraftForge v10.13.4.1448 Initialized -[23:21:15] [Client thread/INFO] [FML/]: Replaced 183 ore recipies -[23:21:15] [Client thread/INFO] [MinecraftForge/]: Completed early MinecraftForge initialization -[23:21:15] [Client thread/DEBUG] [FML/]: File /home/kitsudesktop/Development/ForgeCraft/eclipse/config/injectedDependencies.json not found. No dependencies injected -[23:21:15] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [cpw.mods.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer] -[23:21:15] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/charsets.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/plugin.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/resources.jar, examining for mod candidates -[23:21:15] [Client thread/TRACE] [FML/]: Skipping known library file /usr/lib/jvm/java-8-oracle/jre/lib/rt.jar -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/deploy.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/jce.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/jsse.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/jfr.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/javaws.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/jfxswt.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/management-agent.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/nashorn.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/jfxrt.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/sunec.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/localedata.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/sunpkcs11.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/dnsns.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/zipfs.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/cldrdata.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/sunjce_provider.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/kitsudesktop/Development/ForgeCraft/build/classes/main, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/kitsudesktop/Development/ForgeCraft/build/resources/main, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.11/9c0592c6e1e9ea296a70948081bd4cc84dda1289/launchwrapper-1.11.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/1.3.9/40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf/jsr305-1.3.9.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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 -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-xml_2.11/1.0.2/7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0/scala-xml_2.11-1.0.2.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.5/6065cc95c661255349c1d0756657be17c29a4fd3/jopt-simple-4.5.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.3.5/807ae355ee63583becd7ea60e76aab1532bb42e/realms-1.3.5.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.3.1/a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d/vecmath-1.3.1.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.10.Final/9e50bd52ffe257a0e2cd8d971688d6ce7d174325/netty-all-4.0.10.Final.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.16/ef1582b11fd0943d069cdcb72e99008ac209a283/authlib-1.5.16.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.1/f58c5aabcef0e41718a564be9f8e412fff8db847/lwjgl-2.9.1.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.1/290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e/lwjgl_util-2.9.1.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/5.16/1f55f009c61637c10c0acfb8b5ffc600f30044b4/twitch-5.16.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/7c6affe439099806a4f552da14c42f9d643d8b23/twitch-platform-5.16-natives-windows-32.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/39d0c3d363735b4785598e0e7fbf8297c706a9f9/twitch-platform-5.16-natives-windows-64.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/62503ee712766cf77f97252e5902786fd834b8c5/twitch-platform-5.16-natives-osx.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/4c517eca808522457dd95ee8fc1fbcdbb602efbe/lwjgl-platform-2.9.1-natives-windows.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/aa9aae879af8eb378e22cfc64db56ec2ca9a44d1/lwjgl-platform-2.9.1-natives-linux.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac/lwjgl-platform-2.9.1-natives-osx.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/start, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/Downloads/idea-IC-141.1532.4/lib/idea_rt.jar, examining for mod candidates -[23:21:15] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully -[23:21:15] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer -[23:21:15] [Client thread/INFO] [FML/]: Searching /home/kitsudesktop/Development/ForgeCraft/eclipse/mods for mods -[23:21:15] [Client thread/DEBUG] [FML/]: Examining file charsets.jar for potential mods -[23:21:15] [Client thread/DEBUG] [FML/]: The mod container charsets.jar appears to be missing an mcmod.info file -[23:21:15] [Client thread/DEBUG] [FML/]: Examining file plugin.jar for potential mods -[23:21:15] [Client thread/DEBUG] [FML/]: The mod container plugin.jar appears to be missing an mcmod.info file -[23:21:15] [Client thread/DEBUG] [FML/]: Examining file resources.jar for potential mods -[23:21:15] [Client thread/DEBUG] [FML/]: The mod container resources.jar appears to be missing an mcmod.info file -[23:21:15] [Client thread/DEBUG] [FML/]: Examining file deploy.jar for potential mods -[23:21:15] [Client thread/DEBUG] [FML/]: The mod container deploy.jar appears to be missing an mcmod.info file -[23:21:15] [Client thread/DEBUG] [FML/]: Examining file jce.jar for potential mods -[23:21:15] [Client thread/DEBUG] [FML/]: The mod container jce.jar appears to be missing an mcmod.info file -[23:21:15] [Client thread/DEBUG] [FML/]: Examining file jsse.jar for potential mods -[23:21:15] [Client thread/DEBUG] [FML/]: The mod container jsse.jar appears to be missing an mcmod.info file -[23:21:15] [Client thread/DEBUG] [FML/]: Examining file jfr.jar for potential mods -[23:21:15] [Client thread/DEBUG] [FML/]: The mod container jfr.jar appears to be missing an mcmod.info file -[23:21:15] [Client thread/DEBUG] [FML/]: Examining file javaws.jar for potential mods -[23:21:15] [Client thread/DEBUG] [FML/]: The mod container javaws.jar appears to be missing an mcmod.info file -[23:21:15] [Client thread/DEBUG] [FML/]: Examining file jfxswt.jar for potential mods -[23:21:15] [Client thread/DEBUG] [FML/]: The mod container jfxswt.jar appears to be missing an mcmod.info file -[23:21:15] [Client thread/DEBUG] [FML/]: Examining file management-agent.jar for potential mods -[23:21:15] [Client thread/DEBUG] [FML/]: The mod container management-agent.jar appears to be missing an mcmod.info file -[23:21:15] [Client thread/DEBUG] [FML/]: Examining file nashorn.jar for potential mods -[23:21:15] [Client thread/DEBUG] [FML/]: The mod container nashorn.jar appears to be missing an mcmod.info file -[23:21:16] [Client thread/DEBUG] [FML/]: Examining file jfxrt.jar for potential mods -[23:21:16] [Client thread/DEBUG] [FML/]: The mod container jfxrt.jar appears to be missing an mcmod.info file -[23:21:16] [Client thread/DEBUG] [FML/]: Examining file sunec.jar for potential mods -[23:21:16] [Client thread/DEBUG] [FML/]: The mod container sunec.jar appears to be missing an mcmod.info file -[23:21:16] [Client thread/DEBUG] [FML/]: Examining file localedata.jar for potential mods -[23:21:16] [Client thread/DEBUG] [FML/]: The mod container localedata.jar appears to be missing an mcmod.info file -[23:21:16] [Client thread/DEBUG] [FML/]: Examining file sunpkcs11.jar for potential mods -[23:21:16] [Client thread/DEBUG] [FML/]: The mod container sunpkcs11.jar appears to be missing an mcmod.info file -[23:21:16] [Client thread/DEBUG] [FML/]: Examining file dnsns.jar for potential mods -[23:21:16] [Client thread/DEBUG] [FML/]: The mod container dnsns.jar appears to be missing an mcmod.info file -[23:21:16] [Client thread/DEBUG] [FML/]: Examining file zipfs.jar for potential mods -[23:21:16] [Client thread/DEBUG] [FML/]: The mod container zipfs.jar appears to be missing an mcmod.info file -[23:21:16] [Client thread/DEBUG] [FML/]: Examining file cldrdata.jar for potential mods -[23:21:16] [Client thread/DEBUG] [FML/]: The mod container cldrdata.jar appears to be missing an mcmod.info file -[23:21:16] [Client thread/DEBUG] [FML/]: Examining file sunjce_provider.jar for potential mods -[23:21:16] [Client thread/DEBUG] [FML/]: The mod container sunjce_provider.jar appears to be missing an mcmod.info file -[23:21:16] [Client thread/DEBUG] [FML/]: Examining directory main for potential mods -[23:21:16] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory main -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft -[23:21:16] [Client thread/DEBUG] [FML/]: Identified a mod of type Lcpw/mods/fml/common/Mod; (com.kitsu.medievalcraft.Main) - loading -[23:21:16] [Client thread/TRACE] [kitsumedievalcraft/]: Parsed dependency info : [] [] [] -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.crucible -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.crucible.empty -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.decorative -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.fluid -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.ingots -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.machines -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood.clean -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood.quartersplit -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.compat -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.contain -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.crafting -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.entity -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.entityAI -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.events -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.gui -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.craftingtools -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.craftingtools.filters -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms.clay -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms.iron -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.misc -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.throwable -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.tools -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.weapon -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.curedLeather -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.forge -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.forgeHammerParticles -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.sandFilterRender -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.shelf -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.crucibles -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.emptycrucibles -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.ingot -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.machine -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.crucibles -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.crucibles.empty -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.ingotsplates -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.longbow -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.machines -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.tongs -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.tools -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.weapons -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.crucible -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.crucible.empty -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.ingots -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.machine -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.util -[23:21:16] [Client thread/DEBUG] [FML/]: Examining directory main for potential mods -[23:21:16] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory main -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package assets -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.lang -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.models -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.sounds -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.blocks -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.gui -[23:21:16] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.items -[23:21:16] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar for potential mods -[23:21:16] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file launchwrapper-1.11.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container launchwrapper-1.11.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file jsr305-1.3.9.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container jsr305-1.3.9.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file akka-actor_2.11-2.3.3.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container akka-actor_2.11-2.3.3.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file config-1.2.1.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container config-1.2.1.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file scala-actors-migration_2.11-1.1.0.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container scala-actors-migration_2.11-1.1.0.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file scala-compiler-2.11.1.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container scala-compiler-2.11.1.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-library_2.11-1.0.2.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-library_2.11-1.0.2.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-plugin_2.11.1-1.0.2.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-plugin_2.11.1-1.0.2.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file scala-library-2.11.1.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container scala-library-2.11.1.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file scala-reflect-2.11.1.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container scala-reflect-2.11.1.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file scala-swing_2.11-1.0.1.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container scala-swing_2.11-1.0.1.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file jopt-simple-4.5.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container jopt-simple-4.5.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file lzma-0.0.1.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container lzma-0.0.1.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file realms-1.3.5.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container realms-1.3.5.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file commons-compress-1.8.1.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container commons-compress-1.8.1.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file httpclient-4.3.3.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container httpclient-4.3.3.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file commons-logging-1.1.3.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container commons-logging-1.1.3.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file httpcore-4.3.2.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container httpcore-4.3.2.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file vecmath-1.3.1.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container vecmath-1.3.1.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file trove4j-3.0.3.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container trove4j-3.0.3.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file icu4j-core-mojang-51.2.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container icu4j-core-mojang-51.2.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file codecjorbis-20101023.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container codecjorbis-20101023.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file codecwav-20101023.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container codecwav-20101023.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file librarylwjglopenal-20100824.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container librarylwjglopenal-20100824.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file soundsystem-20120107.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container soundsystem-20120107.jar appears to be missing an mcmod.info file -[23:21:17] [Client thread/DEBUG] [FML/]: Examining file netty-all-4.0.10.Final.jar for potential mods -[23:21:17] [Client thread/DEBUG] [FML/]: The mod container netty-all-4.0.10.Final.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file guava-17.0.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container guava-17.0.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file commons-lang3-3.3.2.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container commons-lang3-3.3.2.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file commons-io-2.4.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container commons-io-2.4.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file commons-codec-1.9.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container commons-codec-1.9.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file jinput-2.0.5.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container jinput-2.0.5.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file jutils-1.0.0.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container jutils-1.0.0.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file gson-2.2.4.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container gson-2.2.4.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file authlib-1.5.16.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container authlib-1.5.16.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file log4j-api-2.0-beta9.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container log4j-api-2.0-beta9.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file log4j-core-2.0-beta9.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container log4j-core-2.0-beta9.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file lwjgl-2.9.1.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container lwjgl-2.9.1.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file lwjgl_util-2.9.1.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container lwjgl_util-2.9.1.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file twitch-5.16.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container twitch-5.16.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file scala-actors-2.11.0.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container scala-actors-2.11.0.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-linux.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-linux.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-windows.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-windows.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-osx.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-osx.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-32.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-32.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-64.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-64.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-osx.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-osx.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-32.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-32.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-64.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-64.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-windows.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-windows.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-linux.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-linux.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-osx.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-osx.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start -[23:21:18] [Client thread/TRACE] [FML/]: Recursing into package net -[23:21:18] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge -[23:21:18] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle -[23:21:18] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers -[23:21:18] [Client thread/DEBUG] [FML/]: Examining file idea_rt.jar for potential mods -[23:21:18] [Client thread/DEBUG] [FML/]: The mod container idea_rt.jar appears to be missing an mcmod.info file -[23:21:18] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load -[23:21:18] [Client thread/TRACE] [FML/]: Received a system property request '' -[23:21:18] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods -[23:21:18] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods -[23:21:18] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar [cs_CZ, uk_UA, pt_BR, nl_NL, pt_PT, fi_FI, nn_NO, br_FR, es_ES, zh_TW, sl_SI, it_IT, hu_HU, el_GR, en_US, ro_RO, de_DE, fr_FR, ko_KR, tr_TR, nb_NO, ja_JP, fa_IR, sr_SP, zh_CN, sv_SE, ca_ES, he_IL, lt_LT, da_DK, ar_SA, pl_PL, ru_RU, no_NO, af_ZA, vi_VN, en_US, en_US] -[23:21:18] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar [cs_CZ, uk_UA, pt_BR, nl_NL, pt_PT, fi_FI, nn_NO, br_FR, es_ES, zh_TW, sl_SI, it_IT, hu_HU, el_GR, en_US, ro_RO, de_DE, fr_FR, ko_KR, tr_TR, nb_NO, ja_JP, fa_IR, sr_SP, zh_CN, sv_SE, ca_ES, he_IL, lt_LT, da_DK, ar_SA, pl_PL, ru_RU, no_NO, af_ZA, vi_VN, en_US, en_US] -[23:21:18] [Client thread/DEBUG] [kitsumedievalcraft/]: Enabling mod kitsumedievalcraft -[23:21:18] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied -[23:21:18] [Client thread/TRACE] [FML/]: All mod requirements are satisfied -[23:21:18] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list -[23:21:18] [Client thread/TRACE] [FML/]: Mod sorting completed successfully -[23:21:18] [Client thread/DEBUG] [FML/]: Mod sorting data -[23:21:18] [Client thread/DEBUG] [FML/]: kitsumedievalcraft(ForgeCraft:2.2.5): main () -[23:21:18] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp -[23:21:18] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp -[23:21:18] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML -[23:21:18] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists -[23:21:18] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection -[23:21:18] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (7.10.99.99) -[23:21:18] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, kitsumedievalcraft] at CLIENT -[23:21:18] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, kitsumedievalcraft] at SERVER -[23:21:18] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML -[23:21:18] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge -[23:21:18] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed -[23:21:18] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection -[23:21:18] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (10.13.4.1448) -[23:21:18] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge -[23:21:18] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLConstructionEvent to mod kitsumedievalcraft -[23:21:18] [Client thread/TRACE] [FML/kitsumedievalcraft]: Mod kitsumedievalcraft is using network checker : Accepting version 2.2.5 -[23:21:18] [Client thread/TRACE] [FML/kitsumedievalcraft]: Testing mod kitsumedievalcraft to verify it accepts its own version in a remote connection -[23:21:18] [Client thread/TRACE] [FML/kitsumedievalcraft]: The mod kitsumedievalcraft accepts its own version (2.2.5) -[23:21:18] [Client thread/DEBUG] [FML/kitsumedievalcraft]: Attempting to inject @SidedProxy classes into kitsumedievalcraft -[23:21:18] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLConstructionEvent to mod kitsumedievalcraft -[23:21:18] [Client thread/DEBUG] [FML/]: Mod signature data -[23:21:18] [Client thread/DEBUG] [FML/]: Valid Signatures: -[23:21:18] [Client thread/DEBUG] [FML/]: Missing Signatures: -[23:21:18] [Client thread/DEBUG] [FML/]: mcp (Minecraft Coder Pack 9.05) minecraft.jar -[23:21:18] [Client thread/DEBUG] [FML/]: FML (Forge Mod Loader 7.10.99.99) forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar -[23:21:18] [Client thread/DEBUG] [FML/]: Forge (Minecraft Forge 10.13.4.1448) forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar -[23:21:18] [Client thread/DEBUG] [FML/]: kitsumedievalcraft (ForgeCraft 2.2.5) main -[23:21:18] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one -[23:21:18] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one -[23:21:18] [Client thread/DEBUG] [ForgeCraft/]: Mod ForgeCraft is missing a pack.mcmeta file, substituting a dummy one -[23:21:18] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations -[23:21:18] [Client thread/INFO] [FML/]: Found 341 ObjectHolder annotations -[23:21:18] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations -[23:21:18] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations -[23:21:18] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp -[23:21:18] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp -[23:21:18] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML -[23:21:18] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML -[23:21:18] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge -[23:21:18] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0 -[23:21:18] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge -[23:21:18] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLPreInitializationEvent to mod kitsumedievalcraft -[23:21:18] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLPreInitializationEvent to mod kitsumedievalcraft -[23:21:18] [Client thread/INFO] [FML/]: Applying holder lookups -[23:21:18] [Client thread/INFO] [FML/]: Holder lookups applied -[23:21:18] [Client thread/INFO] [FML/]: Injecting itemstacks -[23:21:18] [Client thread/INFO] [FML/]: Itemstack injection complete -[23:21:18] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: -[23:21:18] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... -[23:21:19] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL -[23:21:19] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) -[23:21:19] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. -[23:21:19] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: -[23:21:19] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp -[23:21:19] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp -[23:21:19] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML -[23:21:19] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML -[23:21:19] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge -[23:21:19] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge -[23:21:19] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLInitializationEvent to mod kitsumedievalcraft -[23:21:19] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemShit as kitsumedievalcraft.itemShit -[23:21:19] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemModelArrow as kitsumedievalcraft.itemModelArrow -[23:21:19] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemTester as kitsumedievalcraft.itemTester -[23:21:19] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLInitializationEvent to mod kitsumedievalcraft -[23:21:19] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp -[23:21:19] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp -[23:21:19] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp -[23:21:19] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML -[23:21:19] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML -[23:21:19] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML -[23:21:19] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge -[23:21:19] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge -[23:21:19] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge -[23:21:19] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod kitsumedievalcraft -[23:21:19] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event IMCEvent to mod kitsumedievalcraft -[23:21:19] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event IMCEvent to mod kitsumedievalcraft -[23:21:19] [Client thread/INFO] [FML/]: Injecting itemstacks -[23:21:19] [Client thread/INFO] [FML/]: Itemstack injection complete -[23:21:19] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp -[23:21:19] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp -[23:21:19] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML -[23:21:19] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML -[23:21:19] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge -[23:21:19] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge -[23:21:19] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLPostInitializationEvent to mod kitsumedievalcraft -[23:21:19] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLPostInitializationEvent to mod kitsumedievalcraft -[23:21:19] [Client thread/ERROR] [FML/]: Fatal errors were detected during the transition from POSTINITIALIZATION to AVAILABLE. Loading cannot continue -[23:21:19] [Client thread/ERROR] [FML/]: +[23:23:03] [Client thread/INFO] [MinecraftForge/]: Attempting early MinecraftForge initialization +[23:23:03] [Client thread/INFO] [FML/]: MinecraftForge v10.13.4.1448 Initialized +[23:23:03] [Client thread/INFO] [FML/]: Replaced 183 ore recipies +[23:23:03] [Client thread/INFO] [MinecraftForge/]: Completed early MinecraftForge initialization +[23:23:03] [Client thread/DEBUG] [FML/]: File /home/kitsudesktop/Development/ForgeCraft/eclipse/config/injectedDependencies.json not found. No dependencies injected +[23:23:03] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [cpw.mods.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer] +[23:23:03] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/charsets.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/plugin.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/resources.jar, examining for mod candidates +[23:23:03] [Client thread/TRACE] [FML/]: Skipping known library file /usr/lib/jvm/java-8-oracle/jre/lib/rt.jar +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/deploy.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/jce.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/jsse.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/jfr.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/javaws.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/jfxswt.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/management-agent.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/nashorn.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/jfxrt.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/sunec.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/localedata.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/sunpkcs11.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/dnsns.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/zipfs.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/cldrdata.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/sunjce_provider.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/kitsudesktop/Development/ForgeCraft/build/classes/main, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/kitsudesktop/Development/ForgeCraft/build/resources/main, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.11/9c0592c6e1e9ea296a70948081bd4cc84dda1289/launchwrapper-1.11.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/1.3.9/40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf/jsr305-1.3.9.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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 +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-xml_2.11/1.0.2/7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0/scala-xml_2.11-1.0.2.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.5/6065cc95c661255349c1d0756657be17c29a4fd3/jopt-simple-4.5.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.3.5/807ae355ee63583becd7ea60e76aab1532bb42e/realms-1.3.5.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.3.1/a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d/vecmath-1.3.1.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.10.Final/9e50bd52ffe257a0e2cd8d971688d6ce7d174325/netty-all-4.0.10.Final.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.16/ef1582b11fd0943d069cdcb72e99008ac209a283/authlib-1.5.16.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.1/f58c5aabcef0e41718a564be9f8e412fff8db847/lwjgl-2.9.1.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.1/290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e/lwjgl_util-2.9.1.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/5.16/1f55f009c61637c10c0acfb8b5ffc600f30044b4/twitch-5.16.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/7c6affe439099806a4f552da14c42f9d643d8b23/twitch-platform-5.16-natives-windows-32.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/39d0c3d363735b4785598e0e7fbf8297c706a9f9/twitch-platform-5.16-natives-windows-64.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/62503ee712766cf77f97252e5902786fd834b8c5/twitch-platform-5.16-natives-osx.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/4c517eca808522457dd95ee8fc1fbcdbb602efbe/lwjgl-platform-2.9.1-natives-windows.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/aa9aae879af8eb378e22cfc64db56ec2ca9a44d1/lwjgl-platform-2.9.1-natives-linux.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac/lwjgl-platform-2.9.1-natives-osx.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/start, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/Downloads/idea-IC-141.1532.4/lib/idea_rt.jar, examining for mod candidates +[23:23:03] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully +[23:23:03] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer +[23:23:03] [Client thread/INFO] [FML/]: Searching /home/kitsudesktop/Development/ForgeCraft/eclipse/mods for mods +[23:23:03] [Client thread/DEBUG] [FML/]: Examining file charsets.jar for potential mods +[23:23:03] [Client thread/DEBUG] [FML/]: The mod container charsets.jar appears to be missing an mcmod.info file +[23:23:03] [Client thread/DEBUG] [FML/]: Examining file plugin.jar for potential mods +[23:23:03] [Client thread/DEBUG] [FML/]: The mod container plugin.jar appears to be missing an mcmod.info file +[23:23:04] [Client thread/DEBUG] [FML/]: Examining file resources.jar for potential mods +[23:23:04] [Client thread/DEBUG] [FML/]: The mod container resources.jar appears to be missing an mcmod.info file +[23:23:04] [Client thread/DEBUG] [FML/]: Examining file deploy.jar for potential mods +[23:23:04] [Client thread/DEBUG] [FML/]: The mod container deploy.jar appears to be missing an mcmod.info file +[23:23:04] [Client thread/DEBUG] [FML/]: Examining file jce.jar for potential mods +[23:23:04] [Client thread/DEBUG] [FML/]: The mod container jce.jar appears to be missing an mcmod.info file +[23:23:04] [Client thread/DEBUG] [FML/]: Examining file jsse.jar for potential mods +[23:23:04] [Client thread/DEBUG] [FML/]: The mod container jsse.jar appears to be missing an mcmod.info file +[23:23:04] [Client thread/DEBUG] [FML/]: Examining file jfr.jar for potential mods +[23:23:04] [Client thread/DEBUG] [FML/]: The mod container jfr.jar appears to be missing an mcmod.info file +[23:23:04] [Client thread/DEBUG] [FML/]: Examining file javaws.jar for potential mods +[23:23:04] [Client thread/DEBUG] [FML/]: The mod container javaws.jar appears to be missing an mcmod.info file +[23:23:04] [Client thread/DEBUG] [FML/]: Examining file jfxswt.jar for potential mods +[23:23:04] [Client thread/DEBUG] [FML/]: The mod container jfxswt.jar appears to be missing an mcmod.info file +[23:23:04] [Client thread/DEBUG] [FML/]: Examining file management-agent.jar for potential mods +[23:23:04] [Client thread/DEBUG] [FML/]: The mod container management-agent.jar appears to be missing an mcmod.info file +[23:23:04] [Client thread/DEBUG] [FML/]: Examining file nashorn.jar for potential mods +[23:23:04] [Client thread/DEBUG] [FML/]: The mod container nashorn.jar appears to be missing an mcmod.info file +[23:23:04] [Client thread/DEBUG] [FML/]: Examining file jfxrt.jar for potential mods +[23:23:04] [Client thread/DEBUG] [FML/]: The mod container jfxrt.jar appears to be missing an mcmod.info file +[23:23:04] [Client thread/DEBUG] [FML/]: Examining file sunec.jar for potential mods +[23:23:04] [Client thread/DEBUG] [FML/]: The mod container sunec.jar appears to be missing an mcmod.info file +[23:23:04] [Client thread/DEBUG] [FML/]: Examining file localedata.jar for potential mods +[23:23:04] [Client thread/DEBUG] [FML/]: The mod container localedata.jar appears to be missing an mcmod.info file +[23:23:05] [Client thread/DEBUG] [FML/]: Examining file sunpkcs11.jar for potential mods +[23:23:05] [Client thread/DEBUG] [FML/]: The mod container sunpkcs11.jar appears to be missing an mcmod.info file +[23:23:05] [Client thread/DEBUG] [FML/]: Examining file dnsns.jar for potential mods +[23:23:05] [Client thread/DEBUG] [FML/]: The mod container dnsns.jar appears to be missing an mcmod.info file +[23:23:05] [Client thread/DEBUG] [FML/]: Examining file zipfs.jar for potential mods +[23:23:05] [Client thread/DEBUG] [FML/]: The mod container zipfs.jar appears to be missing an mcmod.info file +[23:23:05] [Client thread/DEBUG] [FML/]: Examining file cldrdata.jar for potential mods +[23:23:05] [Client thread/DEBUG] [FML/]: The mod container cldrdata.jar appears to be missing an mcmod.info file +[23:23:05] [Client thread/DEBUG] [FML/]: Examining file sunjce_provider.jar for potential mods +[23:23:05] [Client thread/DEBUG] [FML/]: The mod container sunjce_provider.jar appears to be missing an mcmod.info file +[23:23:05] [Client thread/DEBUG] [FML/]: Examining directory main for potential mods +[23:23:05] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory main +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft +[23:23:05] [Client thread/DEBUG] [FML/]: Identified a mod of type Lcpw/mods/fml/common/Mod; (com.kitsu.medievalcraft.Main) - loading +[23:23:05] [Client thread/TRACE] [kitsumedievalcraft/]: Parsed dependency info : [] [] [] +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.crucible +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.crucible.empty +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.decorative +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.fluid +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.ingots +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.machines +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood.clean +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood.quartersplit +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.compat +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.contain +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.crafting +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.entity +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.entityAI +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.events +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.gui +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.craftingtools +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.craftingtools.filters +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms.clay +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms.iron +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.misc +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.throwable +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.tools +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.weapon +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.curedLeather +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.forge +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.forgeHammerParticles +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.sandFilterRender +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.shelf +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.crucibles +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.emptycrucibles +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.ingot +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.machine +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.crucibles +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.crucibles.empty +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.ingotsplates +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.longbow +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.machines +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.tongs +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.tools +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.weapons +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.crucible +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.crucible.empty +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.ingots +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.machine +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.util +[23:23:05] [Client thread/DEBUG] [FML/]: Examining directory main for potential mods +[23:23:05] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory main +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package assets +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.lang +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.models +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.sounds +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.blocks +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.gui +[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.items +[23:23:05] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar for potential mods +[23:23:05] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar appears to be missing an mcmod.info file +[23:23:05] [Client thread/DEBUG] [FML/]: Examining file launchwrapper-1.11.jar for potential mods +[23:23:05] [Client thread/DEBUG] [FML/]: The mod container launchwrapper-1.11.jar appears to be missing an mcmod.info file +[23:23:05] [Client thread/DEBUG] [FML/]: Examining file jsr305-1.3.9.jar for potential mods +[23:23:05] [Client thread/DEBUG] [FML/]: The mod container jsr305-1.3.9.jar appears to be missing an mcmod.info file +[23:23:05] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods +[23:23:05] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file +[23:23:05] [Client thread/DEBUG] [FML/]: Examining file akka-actor_2.11-2.3.3.jar for potential mods +[23:23:05] [Client thread/DEBUG] [FML/]: The mod container akka-actor_2.11-2.3.3.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file config-1.2.1.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container config-1.2.1.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-actors-migration_2.11-1.1.0.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-actors-migration_2.11-1.1.0.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-compiler-2.11.1.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-compiler-2.11.1.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-library_2.11-1.0.2.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-library_2.11-1.0.2.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-plugin_2.11.1-1.0.2.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-plugin_2.11.1-1.0.2.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-library-2.11.1.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-library-2.11.1.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-reflect-2.11.1.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-reflect-2.11.1.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-swing_2.11-1.0.1.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-swing_2.11-1.0.1.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file jopt-simple-4.5.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container jopt-simple-4.5.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file lzma-0.0.1.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container lzma-0.0.1.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file realms-1.3.5.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container realms-1.3.5.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file commons-compress-1.8.1.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container commons-compress-1.8.1.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file httpclient-4.3.3.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container httpclient-4.3.3.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file commons-logging-1.1.3.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container commons-logging-1.1.3.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file httpcore-4.3.2.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container httpcore-4.3.2.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file vecmath-1.3.1.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container vecmath-1.3.1.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file trove4j-3.0.3.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container trove4j-3.0.3.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file icu4j-core-mojang-51.2.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container icu4j-core-mojang-51.2.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file codecjorbis-20101023.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container codecjorbis-20101023.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file codecwav-20101023.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container codecwav-20101023.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file librarylwjglopenal-20100824.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container librarylwjglopenal-20100824.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file soundsystem-20120107.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container soundsystem-20120107.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file netty-all-4.0.10.Final.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container netty-all-4.0.10.Final.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file guava-17.0.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container guava-17.0.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file commons-lang3-3.3.2.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container commons-lang3-3.3.2.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file commons-io-2.4.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container commons-io-2.4.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file commons-codec-1.9.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container commons-codec-1.9.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file jinput-2.0.5.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container jinput-2.0.5.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file jutils-1.0.0.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container jutils-1.0.0.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file gson-2.2.4.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container gson-2.2.4.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file authlib-1.5.16.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container authlib-1.5.16.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file log4j-api-2.0-beta9.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container log4j-api-2.0-beta9.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file log4j-core-2.0-beta9.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container log4j-core-2.0-beta9.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file lwjgl-2.9.1.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container lwjgl-2.9.1.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file lwjgl_util-2.9.1.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container lwjgl_util-2.9.1.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file twitch-5.16.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container twitch-5.16.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-actors-2.11.0.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-actors-2.11.0.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-linux.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-linux.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-windows.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-windows.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-osx.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-osx.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-32.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-32.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-64.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-64.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-osx.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-osx.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-32.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-32.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-64.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-64.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-windows.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-windows.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-linux.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-linux.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-osx.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-osx.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start +[23:23:06] [Client thread/TRACE] [FML/]: Recursing into package net +[23:23:06] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge +[23:23:06] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle +[23:23:06] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers +[23:23:06] [Client thread/DEBUG] [FML/]: Examining file idea_rt.jar for potential mods +[23:23:06] [Client thread/DEBUG] [FML/]: The mod container idea_rt.jar appears to be missing an mcmod.info file +[23:23:06] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load +[23:23:06] [Client thread/TRACE] [FML/]: Received a system property request '' +[23:23:06] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods +[23:23:06] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods +[23:23:06] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar [cs_CZ, uk_UA, pt_BR, nl_NL, pt_PT, fi_FI, nn_NO, br_FR, es_ES, zh_TW, sl_SI, it_IT, hu_HU, el_GR, en_US, ro_RO, de_DE, fr_FR, ko_KR, tr_TR, nb_NO, ja_JP, fa_IR, sr_SP, zh_CN, sv_SE, ca_ES, he_IL, lt_LT, da_DK, ar_SA, pl_PL, ru_RU, no_NO, af_ZA, vi_VN, en_US, en_US] +[23:23:06] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar [cs_CZ, uk_UA, pt_BR, nl_NL, pt_PT, fi_FI, nn_NO, br_FR, es_ES, zh_TW, sl_SI, it_IT, hu_HU, el_GR, en_US, ro_RO, de_DE, fr_FR, ko_KR, tr_TR, nb_NO, ja_JP, fa_IR, sr_SP, zh_CN, sv_SE, ca_ES, he_IL, lt_LT, da_DK, ar_SA, pl_PL, ru_RU, no_NO, af_ZA, vi_VN, en_US, en_US] +[23:23:06] [Client thread/DEBUG] [kitsumedievalcraft/]: Enabling mod kitsumedievalcraft +[23:23:06] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied +[23:23:06] [Client thread/TRACE] [FML/]: All mod requirements are satisfied +[23:23:06] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list +[23:23:06] [Client thread/TRACE] [FML/]: Mod sorting completed successfully +[23:23:06] [Client thread/DEBUG] [FML/]: Mod sorting data +[23:23:06] [Client thread/DEBUG] [FML/]: kitsumedievalcraft(ForgeCraft:2.2.5): main () +[23:23:06] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp +[23:23:06] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp +[23:23:06] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML +[23:23:06] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists +[23:23:06] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection +[23:23:06] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (7.10.99.99) +[23:23:06] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, kitsumedievalcraft] at CLIENT +[23:23:06] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, kitsumedievalcraft] at SERVER +[23:23:07] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML +[23:23:07] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge +[23:23:07] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed +[23:23:07] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection +[23:23:07] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (10.13.4.1448) +[23:23:07] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge +[23:23:07] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLConstructionEvent to mod kitsumedievalcraft +[23:23:07] [Client thread/TRACE] [FML/kitsumedievalcraft]: Mod kitsumedievalcraft is using network checker : Accepting version 2.2.5 +[23:23:07] [Client thread/TRACE] [FML/kitsumedievalcraft]: Testing mod kitsumedievalcraft to verify it accepts its own version in a remote connection +[23:23:07] [Client thread/TRACE] [FML/kitsumedievalcraft]: The mod kitsumedievalcraft accepts its own version (2.2.5) +[23:23:07] [Client thread/DEBUG] [FML/kitsumedievalcraft]: Attempting to inject @SidedProxy classes into kitsumedievalcraft +[23:23:07] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLConstructionEvent to mod kitsumedievalcraft +[23:23:07] [Client thread/DEBUG] [FML/]: Mod signature data +[23:23:07] [Client thread/DEBUG] [FML/]: Valid Signatures: +[23:23:07] [Client thread/DEBUG] [FML/]: Missing Signatures: +[23:23:07] [Client thread/DEBUG] [FML/]: mcp (Minecraft Coder Pack 9.05) minecraft.jar +[23:23:07] [Client thread/DEBUG] [FML/]: FML (Forge Mod Loader 7.10.99.99) forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar +[23:23:07] [Client thread/DEBUG] [FML/]: Forge (Minecraft Forge 10.13.4.1448) forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar +[23:23:07] [Client thread/DEBUG] [FML/]: kitsumedievalcraft (ForgeCraft 2.2.5) main +[23:23:07] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one +[23:23:07] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one +[23:23:07] [Client thread/DEBUG] [ForgeCraft/]: Mod ForgeCraft is missing a pack.mcmeta file, substituting a dummy one +[23:23:07] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations +[23:23:07] [Client thread/INFO] [FML/]: Found 341 ObjectHolder annotations +[23:23:07] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations +[23:23:07] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations +[23:23:07] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp +[23:23:07] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp +[23:23:07] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML +[23:23:07] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML +[23:23:07] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge +[23:23:07] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0 +[23:23:07] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge +[23:23:07] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLPreInitializationEvent to mod kitsumedievalcraft +[23:23:07] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLPreInitializationEvent to mod kitsumedievalcraft +[23:23:07] [Client thread/INFO] [FML/]: Applying holder lookups +[23:23:07] [Client thread/INFO] [FML/]: Holder lookups applied +[23:23:07] [Client thread/INFO] [FML/]: Injecting itemstacks +[23:23:07] [Client thread/INFO] [FML/]: Itemstack injection complete +[23:23:07] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[23:23:07] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... +[23:23:07] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL +[23:23:07] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) +[23:23:07] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. +[23:23:07] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[23:23:08] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp +[23:23:08] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp +[23:23:08] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML +[23:23:08] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML +[23:23:08] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge +[23:23:08] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge +[23:23:08] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLInitializationEvent to mod kitsumedievalcraft +[23:23:08] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemShit as kitsumedievalcraft.itemShit +[23:23:08] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemModelArrow as kitsumedievalcraft.itemModelArrow +[23:23:08] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemTester as kitsumedievalcraft.itemTester +[23:23:08] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLInitializationEvent to mod kitsumedievalcraft +[23:23:08] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp +[23:23:08] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp +[23:23:08] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp +[23:23:08] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML +[23:23:08] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML +[23:23:08] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML +[23:23:08] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge +[23:23:08] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge +[23:23:08] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge +[23:23:08] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod kitsumedievalcraft +[23:23:08] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event IMCEvent to mod kitsumedievalcraft +[23:23:08] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event IMCEvent to mod kitsumedievalcraft +[23:23:08] [Client thread/INFO] [FML/]: Injecting itemstacks +[23:23:08] [Client thread/INFO] [FML/]: Itemstack injection complete +[23:23:08] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp +[23:23:08] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp +[23:23:08] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML +[23:23:08] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML +[23:23:08] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge +[23:23:08] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge +[23:23:08] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLPostInitializationEvent to mod kitsumedievalcraft +[23:23:08] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLPostInitializationEvent to mod kitsumedievalcraft +[23:23:08] [Client thread/ERROR] [FML/]: Fatal errors were detected during the transition from POSTINITIALIZATION to AVAILABLE. Loading cannot continue +[23:23:08] [Client thread/ERROR] [FML/]: States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored UCHIJ mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) UCHIJ FML{7.10.99.99} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar) UCHIJ Forge{10.13.4.1448} [Minecraft Forge] (forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar) UCHIE kitsumedievalcraft{2.2.5} [ForgeCraft] (main) -[23:21:19] [Client thread/ERROR] [FML/]: The following problems were captured during this phase -[23:21:19] [Client thread/ERROR] [FML/]: Caught exception from kitsumedievalcraft +[23:23:08] [Client thread/ERROR] [FML/]: The following problems were captured during this phase +[23:23:08] [Client thread/ERROR] [FML/]: Caught exception from kitsumedievalcraft net.minecraftforge.client.model.ModelFormatException: IO Exception reading model format at net.minecraftforge.client.model.obj.WavefrontObject.(WavefrontObject.java:60) ~[forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:?] at net.minecraftforge.client.model.obj.ObjModelLoader.loadInstance(ObjModelLoader.java:27) ~[forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:?] at net.minecraftforge.client.model.AdvancedModelLoader.loadModel(AdvancedModelLoader.java:65) ~[forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:?] - at com.kitsu.medievalcraft.renderer.blocks.RenderModelArrow.(RenderModelArrow.java:23) ~[main/:?] - at com.kitsu.medievalcraft.ClientProxy.registerRenderer(ClientProxy.java:23) ~[main/:?] - at com.kitsu.medievalcraft.Main.postInit(Main.java:128) ~[main/:?] + at com.kitsu.medievalcraft.renderer.itemrenderer.weapons.ItemRenderWoodenShield.(ItemRenderWoodenShield.java:22) ~[main/:?] + at com.kitsu.medievalcraft.renderer.RendererRegistry.init(RendererRegistry.java:98) ~[main/:?] + at com.kitsu.medievalcraft.ClientProxy.registerItemRenderers(ClientProxy.java:30) ~[main/:?] + at com.kitsu.medievalcraft.Main.postInit(Main.java:129) ~[main/:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_45] @@ -558,23 +559,24 @@ net.minecraftforge.client.model.ModelFormatException: IO Exception reading model at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_45] at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140) [idea_rt.jar:?] -Caused by: java.io.FileNotFoundException: kitsumedievalcraft:models/ModelArrow.obj +Caused by: java.io.FileNotFoundException: kitsumedievalcraft:models/woodenShieldObjectTriangle.obj at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:71) ~[forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:?] at net.minecraftforge.client.model.obj.WavefrontObject.(WavefrontObject.java:55) ~[forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:?] - ... 49 more -[23:21:19] [Client thread/INFO] [STDOUT/]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ---- -// Shall we play a game? + ... 50 more +[23:23:08] [Client thread/INFO] [STDOUT/]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ---- +// There are four lights! -Time: 7/22/15 11:21 PM +Time: 7/22/15 11:23 PM Description: Initializing game net.minecraftforge.client.model.ModelFormatException: IO Exception reading model format at net.minecraftforge.client.model.obj.WavefrontObject.(WavefrontObject.java:60) at net.minecraftforge.client.model.obj.ObjModelLoader.loadInstance(ObjModelLoader.java:27) at net.minecraftforge.client.model.AdvancedModelLoader.loadModel(AdvancedModelLoader.java:65) - at com.kitsu.medievalcraft.renderer.blocks.RenderModelArrow.(RenderModelArrow.java:23) - at com.kitsu.medievalcraft.ClientProxy.registerRenderer(ClientProxy.java:23) - at com.kitsu.medievalcraft.Main.postInit(Main.java:128) + at com.kitsu.medievalcraft.renderer.itemrenderer.weapons.ItemRenderWoodenShield.(ItemRenderWoodenShield.java:22) + at com.kitsu.medievalcraft.renderer.RendererRegistry.init(RendererRegistry.java:98) + at com.kitsu.medievalcraft.ClientProxy.registerItemRenderers(ClientProxy.java:30) + at com.kitsu.medievalcraft.Main.postInit(Main.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) @@ -619,10 +621,10 @@ net.minecraftforge.client.model.ModelFormatException: IO Exception reading model at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140) -Caused by: java.io.FileNotFoundException: kitsumedievalcraft:models/ModelArrow.obj +Caused by: java.io.FileNotFoundException: kitsumedievalcraft:models/woodenShieldObjectTriangle.obj at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:71) at net.minecraftforge.client.model.obj.WavefrontObject.(WavefrontObject.java:55) - ... 49 more + ... 50 more A detailed walkthrough of the error, its code path and all known details is as follows: @@ -633,9 +635,10 @@ Stacktrace: at net.minecraftforge.client.model.obj.WavefrontObject.(WavefrontObject.java:60) at net.minecraftforge.client.model.obj.ObjModelLoader.loadInstance(ObjModelLoader.java:27) at net.minecraftforge.client.model.AdvancedModelLoader.loadModel(AdvancedModelLoader.java:65) - at com.kitsu.medievalcraft.renderer.blocks.RenderModelArrow.(RenderModelArrow.java:23) - at com.kitsu.medievalcraft.ClientProxy.registerRenderer(ClientProxy.java:23) - at com.kitsu.medievalcraft.Main.postInit(Main.java:128) + at com.kitsu.medievalcraft.renderer.itemrenderer.weapons.ItemRenderWoodenShield.(ItemRenderWoodenShield.java:22) + at com.kitsu.medievalcraft.renderer.RendererRegistry.init(RendererRegistry.java:98) + at com.kitsu.medievalcraft.ClientProxy.registerItemRenderers(ClientProxy.java:30) + at com.kitsu.medievalcraft.Main.postInit(Main.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) @@ -691,7 +694,7 @@ Details: Operating System: Linux (amd64) version 3.13.0-37-generic Java Version: 1.8.0_45, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation - Memory: 678269256 bytes (646 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB) + Memory: 671676400 bytes (640 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 @@ -717,4 +720,4 @@ Shaders are available because OpenGL 2.1 is supported. Profiler Position: N/A (disabled) Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used Anisotropic Filtering: Off (1) -[23:21:19] [Client thread/INFO] [STDOUT/]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# /home/kitsudesktop/Development/ForgeCraft/eclipse/./crash-reports/crash-2015-07-22_23.21.19-client.txt +[23:23:08] [Client thread/INFO] [STDOUT/]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# /home/kitsudesktop/Development/ForgeCraft/eclipse/./crash-reports/crash-2015-07-22_23.23.08-client.txt diff --git a/eclipse/logs/fml-client-2.log b/eclipse/logs/fml-client-2.log index 7ebf29c4..e620475e 100644 --- a/eclipse/logs/fml-client-2.log +++ b/eclipse/logs/fml-client-2.log @@ -1,58 +1,58 @@ -[23:23:00] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR. -[23:23:00] [main/INFO] [FML/]: Forge Mod Loader version 7.99.16.1448 for Minecraft 1.7.10 loading -[23:23:00] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_45, running on Linux:amd64:3.13.0-37-generic, installed at /usr/lib/jvm/java-8-oracle/jre -[23:23:00] [main/DEBUG] [FML/]: Java classpath at launch is /usr/lib/jvm/java-8-oracle/jre/lib/charsets.jar:/usr/lib/jvm/java-8-oracle/jre/lib/plugin.jar:/usr/lib/jvm/java-8-oracle/jre/lib/resources.jar:/usr/lib/jvm/java-8-oracle/jre/lib/rt.jar:/usr/lib/jvm/java-8-oracle/jre/lib/deploy.jar:/usr/lib/jvm/java-8-oracle/jre/lib/jce.jar:/usr/lib/jvm/java-8-oracle/jre/lib/jsse.jar:/usr/lib/jvm/java-8-oracle/jre/lib/jfr.jar:/usr/lib/jvm/java-8-oracle/jre/lib/javaws.jar:/usr/lib/jvm/java-8-oracle/jre/lib/jfxswt.jar:/usr/lib/jvm/java-8-oracle/jre/lib/management-agent.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/nashorn.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/jfxrt.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/sunec.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/localedata.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/sunpkcs11.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/dnsns.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/zipfs.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/cldrdata.jar:/usr/lib/jvm/java-8-oracle/jre/lib/ext/sunjce_provider.jar:/home/kitsudesktop/Development/ForgeCraft/build/classes/main:/home/kitsudesktop/Development/ForgeCraft/build/resources/main:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.11/9c0592c6e1e9ea296a70948081bd4cc84dda1289/launchwrapper-1.11.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/1.3.9/40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf/jsr305-1.3.9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.0.3/f9e364ae2a66ce2a543012a4668856e84e5dab74/asm-debug-all-5.0.3.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-xml_2.11/1.0.2/7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0/scala-xml_2.11-1.0.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.5/6065cc95c661255349c1d0756657be17c29a4fd3/jopt-simple-4.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.3.5/807ae355ee63583becd7ea60e76aab1532bb42e/realms-1.3.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.3.1/a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d/vecmath-1.3.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.10.Final/9e50bd52ffe257a0e2cd8d971688d6ce7d174325/netty-all-4.0.10.Final.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.16/ef1582b11fd0943d069cdcb72e99008ac209a283/authlib-1.5.16.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.1/f58c5aabcef0e41718a564be9f8e412fff8db847/lwjgl-2.9.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.1/290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e/lwjgl_util-2.9.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/5.16/1f55f009c61637c10c0acfb8b5ffc600f30044b4/twitch-5.16.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/7c6affe439099806a4f552da14c42f9d643d8b23/twitch-platform-5.16-natives-windows-32.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/39d0c3d363735b4785598e0e7fbf8297c706a9f9/twitch-platform-5.16-natives-windows-64.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/62503ee712766cf77f97252e5902786fd834b8c5/twitch-platform-5.16-natives-osx.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/4c517eca808522457dd95ee8fc1fbcdbb602efbe/lwjgl-platform-2.9.1-natives-windows.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/aa9aae879af8eb378e22cfc64db56ec2ca9a44d1/lwjgl-platform-2.9.1-natives-linux.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac/lwjgl-platform-2.9.1-natives-osx.jar:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/start:/home/kitsudesktop/Downloads/idea-IC-141.1532.4/lib/idea_rt.jar -[23:23:00] [main/DEBUG] [FML/]: Java library path at launch is /home/kitsudesktop/Downloads/idea-IC-141.1532.4/bin::/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraft/minecraft_natives/1.7.10 -[23:23:00] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation -[23:23:00] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin -[23:23:00] [main/DEBUG] [FML/]: Added access transformer class cpw.mods.fml.common.asm.transformers.AccessTransformer to enqueued access transformers -[23:23:00] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin -[23:23:00] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin -[23:23:00] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.transformers.ForgeAccessTransformer to enqueued access transformers -[23:23:00] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin -[23:23:00] [main/DEBUG] [FML/]: All fundamental core mods are successfully located -[23:23:00] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to /home/kitsudesktop/Development/ForgeCraft/eclipse/. -[23:23:00] [main/DEBUG] [FML/]: Discovering coremods -[23:23:00] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker -[23:23:00] [main/INFO] [GradleStart/]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin -[23:23:00] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin -[23:23:00] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker -[23:23:00] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker -[23:23:00] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker -[23:23:00] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker -[23:23:00] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker -[23:23:00] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper -[23:23:00] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} class transformers -[23:23:00] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.MarkerTransformer -[23:23:00] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.SideTransformer -[23:23:00] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.EventSubscriptionTransformer -[23:23:00] [main/DEBUG] [FML/]: Injection complete -[23:23:00] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} -[23:23:00] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin -[23:23:01] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! -[23:23:01] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing -[23:23:01] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully -[23:23:01] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper -[23:23:01] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers -[23:23:01] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.classloading.FluidIdTransformer -[23:23:01] [main/DEBUG] [FML/]: Injection complete -[23:23:01] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} -[23:23:01] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin -[23:23:01] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully -[23:23:01] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker -[23:23:01] [main/DEBUG] [FML/]: Loaded 57 rules from AccessTransformer config file fml_at.cfg -[23:23:01] [main/DEBUG] [FML/]: Loaded 89 rules from AccessTransformer config file forge_at.cfg -[23:23:01] [main/DEBUG] [FML/]: Validating minecraft -[23:23:01] [main/DEBUG] [FML/]: Minecraft validated, launching... -[23:23:01] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker -[23:23:01] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker -[23:23:01] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker -[23:23:01] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main} -[23:23:03] [Client thread/INFO] [STDOUT/]: [tv.twitch.StandardCoreAPI::16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's. -[23:23:03] [Client thread/INFO] [STDOUT/]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ---- -// Everything's going to plan. No, really, that was supposed to happen. +[23:24:15] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR. +[23:24:15] [main/INFO] [FML/]: Forge Mod Loader version 7.99.16.1448 for Minecraft 1.7.10 loading +[23:24:15] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_45, running on Linux:amd64:3.13.0-37-generic, installed at /usr/lib/jvm/java-8-oracle/jre +[23:24:15] [main/DEBUG] [FML/]: Java classpath at launch is /home/kitsudesktop/Development/ForgeCraft/bin:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.11/9c0592c6e1e9ea296a70948081bd4cc84dda1289/launchwrapper-1.11.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/1.3.9/40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf/jsr305-1.3.9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.0.3/f9e364ae2a66ce2a543012a4668856e84e5dab74/asm-debug-all-5.0.3.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-xml_2.11/1.0.2/7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0/scala-xml_2.11-1.0.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.5/6065cc95c661255349c1d0756657be17c29a4fd3/jopt-simple-4.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.3.5/807ae355ee63583becd7ea60e76aab1532bb42e/realms-1.3.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.3.1/a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d/vecmath-1.3.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.10.Final/9e50bd52ffe257a0e2cd8d971688d6ce7d174325/netty-all-4.0.10.Final.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.16/ef1582b11fd0943d069cdcb72e99008ac209a283/authlib-1.5.16.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.1/f58c5aabcef0e41718a564be9f8e412fff8db847/lwjgl-2.9.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.1/290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e/lwjgl_util-2.9.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/5.16/1f55f009c61637c10c0acfb8b5ffc600f30044b4/twitch-5.16.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/7c6affe439099806a4f552da14c42f9d643d8b23/twitch-platform-5.16-natives-windows-32.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/39d0c3d363735b4785598e0e7fbf8297c706a9f9/twitch-platform-5.16-natives-windows-64.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/62503ee712766cf77f97252e5902786fd834b8c5/twitch-platform-5.16-natives-osx.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/4c517eca808522457dd95ee8fc1fbcdbb602efbe/lwjgl-platform-2.9.1-natives-windows.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/aa9aae879af8eb378e22cfc64db56ec2ca9a44d1/lwjgl-platform-2.9.1-natives-linux.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac/lwjgl-platform-2.9.1-natives-osx.jar:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/start +[23:24:15] [main/DEBUG] [FML/]: Java library path at launch is /usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraft/minecraft_natives/1.7.10 +[23:24:15] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation +[23:24:15] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin +[23:24:15] [main/DEBUG] [FML/]: Added access transformer class cpw.mods.fml.common.asm.transformers.AccessTransformer to enqueued access transformers +[23:24:15] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin +[23:24:15] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin +[23:24:15] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.transformers.ForgeAccessTransformer to enqueued access transformers +[23:24:15] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin +[23:24:15] [main/DEBUG] [FML/]: All fundamental core mods are successfully located +[23:24:15] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to /home/kitsudesktop/Development/ForgeCraft/eclipse/. +[23:24:15] [main/DEBUG] [FML/]: Discovering coremods +[23:24:15] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker +[23:24:15] [main/INFO] [GradleStart/]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin +[23:24:15] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin +[23:24:15] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker +[23:24:15] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker +[23:24:15] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker +[23:24:15] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker +[23:24:15] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker +[23:24:15] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper +[23:24:15] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} class transformers +[23:24:15] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.MarkerTransformer +[23:24:15] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.SideTransformer +[23:24:15] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.EventSubscriptionTransformer +[23:24:15] [main/DEBUG] [FML/]: Injection complete +[23:24:15] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} +[23:24:15] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin +[23:24:15] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! +[23:24:15] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing +[23:24:15] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully +[23:24:15] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper +[23:24:15] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers +[23:24:15] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.classloading.FluidIdTransformer +[23:24:15] [main/DEBUG] [FML/]: Injection complete +[23:24:15] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} +[23:24:15] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin +[23:24:15] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully +[23:24:15] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker +[23:24:15] [main/DEBUG] [FML/]: Loaded 57 rules from AccessTransformer config file fml_at.cfg +[23:24:15] [main/DEBUG] [FML/]: Loaded 89 rules from AccessTransformer config file forge_at.cfg +[23:24:15] [main/DEBUG] [FML/]: Validating minecraft +[23:24:15] [main/DEBUG] [FML/]: Minecraft validated, launching... +[23:24:15] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker +[23:24:15] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker +[23:24:15] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker +[23:24:15] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main} +[23:24:17] [Client thread/INFO] [STDOUT/]: [tv.twitch.StandardCoreAPI::16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's. +[23:24:17] [Client thread/INFO] [STDOUT/]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ---- +// Ooh. Shiny. -Time: 7/22/15 11:23 PM +Time: 7/22/15 11:24 PM Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR @@ -67,657 +67,449 @@ Details: Operating System: Linux (amd64) version 3.13.0-37-generic Java Version: 1.8.0_45, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation - Memory: 787296672 bytes (750 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB) + Memory: 801134176 bytes (764 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.4.0 NVIDIA 331.113' Renderer: 'GeForce GTX 680/PCIe/SSE2' -[23:23:03] [Client thread/INFO] [MinecraftForge/]: Attempting early MinecraftForge initialization -[23:23:03] [Client thread/INFO] [FML/]: MinecraftForge v10.13.4.1448 Initialized -[23:23:03] [Client thread/INFO] [FML/]: Replaced 183 ore recipies -[23:23:03] [Client thread/INFO] [MinecraftForge/]: Completed early MinecraftForge initialization -[23:23:03] [Client thread/DEBUG] [FML/]: File /home/kitsudesktop/Development/ForgeCraft/eclipse/config/injectedDependencies.json not found. No dependencies injected -[23:23:03] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [cpw.mods.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer] -[23:23:03] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/charsets.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/plugin.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/resources.jar, examining for mod candidates -[23:23:03] [Client thread/TRACE] [FML/]: Skipping known library file /usr/lib/jvm/java-8-oracle/jre/lib/rt.jar -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/deploy.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/jce.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/jsse.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/jfr.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/javaws.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/jfxswt.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/management-agent.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/nashorn.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/jfxrt.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/sunec.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/localedata.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/sunpkcs11.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/dnsns.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/zipfs.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/cldrdata.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-oracle/jre/lib/ext/sunjce_provider.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/kitsudesktop/Development/ForgeCraft/build/classes/main, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/kitsudesktop/Development/ForgeCraft/build/resources/main, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.11/9c0592c6e1e9ea296a70948081bd4cc84dda1289/launchwrapper-1.11.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/1.3.9/40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf/jsr305-1.3.9.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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 -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-xml_2.11/1.0.2/7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0/scala-xml_2.11-1.0.2.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.5/6065cc95c661255349c1d0756657be17c29a4fd3/jopt-simple-4.5.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.3.5/807ae355ee63583becd7ea60e76aab1532bb42e/realms-1.3.5.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.3.1/a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d/vecmath-1.3.1.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.10.Final/9e50bd52ffe257a0e2cd8d971688d6ce7d174325/netty-all-4.0.10.Final.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.16/ef1582b11fd0943d069cdcb72e99008ac209a283/authlib-1.5.16.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.1/f58c5aabcef0e41718a564be9f8e412fff8db847/lwjgl-2.9.1.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.1/290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e/lwjgl_util-2.9.1.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/5.16/1f55f009c61637c10c0acfb8b5ffc600f30044b4/twitch-5.16.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/7c6affe439099806a4f552da14c42f9d643d8b23/twitch-platform-5.16-natives-windows-32.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/39d0c3d363735b4785598e0e7fbf8297c706a9f9/twitch-platform-5.16-natives-windows-64.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/62503ee712766cf77f97252e5902786fd834b8c5/twitch-platform-5.16-natives-osx.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/4c517eca808522457dd95ee8fc1fbcdbb602efbe/lwjgl-platform-2.9.1-natives-windows.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/aa9aae879af8eb378e22cfc64db56ec2ca9a44d1/lwjgl-platform-2.9.1-natives-linux.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac/lwjgl-platform-2.9.1-natives-osx.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/start, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/Downloads/idea-IC-141.1532.4/lib/idea_rt.jar, examining for mod candidates -[23:23:03] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully -[23:23:03] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer -[23:23:03] [Client thread/INFO] [FML/]: Searching /home/kitsudesktop/Development/ForgeCraft/eclipse/mods for mods -[23:23:03] [Client thread/DEBUG] [FML/]: Examining file charsets.jar for potential mods -[23:23:03] [Client thread/DEBUG] [FML/]: The mod container charsets.jar appears to be missing an mcmod.info file -[23:23:03] [Client thread/DEBUG] [FML/]: Examining file plugin.jar for potential mods -[23:23:03] [Client thread/DEBUG] [FML/]: The mod container plugin.jar appears to be missing an mcmod.info file -[23:23:04] [Client thread/DEBUG] [FML/]: Examining file resources.jar for potential mods -[23:23:04] [Client thread/DEBUG] [FML/]: The mod container resources.jar appears to be missing an mcmod.info file -[23:23:04] [Client thread/DEBUG] [FML/]: Examining file deploy.jar for potential mods -[23:23:04] [Client thread/DEBUG] [FML/]: The mod container deploy.jar appears to be missing an mcmod.info file -[23:23:04] [Client thread/DEBUG] [FML/]: Examining file jce.jar for potential mods -[23:23:04] [Client thread/DEBUG] [FML/]: The mod container jce.jar appears to be missing an mcmod.info file -[23:23:04] [Client thread/DEBUG] [FML/]: Examining file jsse.jar for potential mods -[23:23:04] [Client thread/DEBUG] [FML/]: The mod container jsse.jar appears to be missing an mcmod.info file -[23:23:04] [Client thread/DEBUG] [FML/]: Examining file jfr.jar for potential mods -[23:23:04] [Client thread/DEBUG] [FML/]: The mod container jfr.jar appears to be missing an mcmod.info file -[23:23:04] [Client thread/DEBUG] [FML/]: Examining file javaws.jar for potential mods -[23:23:04] [Client thread/DEBUG] [FML/]: The mod container javaws.jar appears to be missing an mcmod.info file -[23:23:04] [Client thread/DEBUG] [FML/]: Examining file jfxswt.jar for potential mods -[23:23:04] [Client thread/DEBUG] [FML/]: The mod container jfxswt.jar appears to be missing an mcmod.info file -[23:23:04] [Client thread/DEBUG] [FML/]: Examining file management-agent.jar for potential mods -[23:23:04] [Client thread/DEBUG] [FML/]: The mod container management-agent.jar appears to be missing an mcmod.info file -[23:23:04] [Client thread/DEBUG] [FML/]: Examining file nashorn.jar for potential mods -[23:23:04] [Client thread/DEBUG] [FML/]: The mod container nashorn.jar appears to be missing an mcmod.info file -[23:23:04] [Client thread/DEBUG] [FML/]: Examining file jfxrt.jar for potential mods -[23:23:04] [Client thread/DEBUG] [FML/]: The mod container jfxrt.jar appears to be missing an mcmod.info file -[23:23:04] [Client thread/DEBUG] [FML/]: Examining file sunec.jar for potential mods -[23:23:04] [Client thread/DEBUG] [FML/]: The mod container sunec.jar appears to be missing an mcmod.info file -[23:23:04] [Client thread/DEBUG] [FML/]: Examining file localedata.jar for potential mods -[23:23:04] [Client thread/DEBUG] [FML/]: The mod container localedata.jar appears to be missing an mcmod.info file -[23:23:05] [Client thread/DEBUG] [FML/]: Examining file sunpkcs11.jar for potential mods -[23:23:05] [Client thread/DEBUG] [FML/]: The mod container sunpkcs11.jar appears to be missing an mcmod.info file -[23:23:05] [Client thread/DEBUG] [FML/]: Examining file dnsns.jar for potential mods -[23:23:05] [Client thread/DEBUG] [FML/]: The mod container dnsns.jar appears to be missing an mcmod.info file -[23:23:05] [Client thread/DEBUG] [FML/]: Examining file zipfs.jar for potential mods -[23:23:05] [Client thread/DEBUG] [FML/]: The mod container zipfs.jar appears to be missing an mcmod.info file -[23:23:05] [Client thread/DEBUG] [FML/]: Examining file cldrdata.jar for potential mods -[23:23:05] [Client thread/DEBUG] [FML/]: The mod container cldrdata.jar appears to be missing an mcmod.info file -[23:23:05] [Client thread/DEBUG] [FML/]: Examining file sunjce_provider.jar for potential mods -[23:23:05] [Client thread/DEBUG] [FML/]: The mod container sunjce_provider.jar appears to be missing an mcmod.info file -[23:23:05] [Client thread/DEBUG] [FML/]: Examining directory main for potential mods -[23:23:05] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory main -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft -[23:23:05] [Client thread/DEBUG] [FML/]: Identified a mod of type Lcpw/mods/fml/common/Mod; (com.kitsu.medievalcraft.Main) - loading -[23:23:05] [Client thread/TRACE] [kitsumedievalcraft/]: Parsed dependency info : [] [] [] -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.crucible -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.crucible.empty -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.decorative -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.fluid -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.ingots -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.machines -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood.clean -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood.quartersplit -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.compat -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.contain -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.crafting -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.entity -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.entityAI -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.events -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.gui -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.craftingtools -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.craftingtools.filters -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms.clay -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms.iron -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.misc -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.throwable -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.tools -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.weapon -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.curedLeather -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.forge -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.forgeHammerParticles -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.sandFilterRender -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.shelf -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.crucibles -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.emptycrucibles -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.ingot -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.machine -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.crucibles -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.crucibles.empty -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.ingotsplates -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.longbow -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.machines -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.tongs -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.tools -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.weapons -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.crucible -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.crucible.empty -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.ingots -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.machine -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.util -[23:23:05] [Client thread/DEBUG] [FML/]: Examining directory main for potential mods -[23:23:05] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory main -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package assets -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.lang -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.models -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.sounds -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.blocks -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.gui -[23:23:05] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.items -[23:23:05] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar for potential mods -[23:23:05] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar appears to be missing an mcmod.info file -[23:23:05] [Client thread/DEBUG] [FML/]: Examining file launchwrapper-1.11.jar for potential mods -[23:23:05] [Client thread/DEBUG] [FML/]: The mod container launchwrapper-1.11.jar appears to be missing an mcmod.info file -[23:23:05] [Client thread/DEBUG] [FML/]: Examining file jsr305-1.3.9.jar for potential mods -[23:23:05] [Client thread/DEBUG] [FML/]: The mod container jsr305-1.3.9.jar appears to be missing an mcmod.info file -[23:23:05] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods -[23:23:05] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file -[23:23:05] [Client thread/DEBUG] [FML/]: Examining file akka-actor_2.11-2.3.3.jar for potential mods -[23:23:05] [Client thread/DEBUG] [FML/]: The mod container akka-actor_2.11-2.3.3.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file config-1.2.1.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container config-1.2.1.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-actors-migration_2.11-1.1.0.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-actors-migration_2.11-1.1.0.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-compiler-2.11.1.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-compiler-2.11.1.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-library_2.11-1.0.2.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-library_2.11-1.0.2.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-plugin_2.11.1-1.0.2.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-plugin_2.11.1-1.0.2.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-library-2.11.1.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-library-2.11.1.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-reflect-2.11.1.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-reflect-2.11.1.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-swing_2.11-1.0.1.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-swing_2.11-1.0.1.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file jopt-simple-4.5.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container jopt-simple-4.5.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file lzma-0.0.1.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container lzma-0.0.1.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file realms-1.3.5.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container realms-1.3.5.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file commons-compress-1.8.1.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container commons-compress-1.8.1.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file httpclient-4.3.3.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container httpclient-4.3.3.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file commons-logging-1.1.3.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container commons-logging-1.1.3.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file httpcore-4.3.2.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container httpcore-4.3.2.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file vecmath-1.3.1.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container vecmath-1.3.1.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file trove4j-3.0.3.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container trove4j-3.0.3.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file icu4j-core-mojang-51.2.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container icu4j-core-mojang-51.2.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file codecjorbis-20101023.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container codecjorbis-20101023.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file codecwav-20101023.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container codecwav-20101023.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file librarylwjglopenal-20100824.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container librarylwjglopenal-20100824.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file soundsystem-20120107.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container soundsystem-20120107.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file netty-all-4.0.10.Final.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container netty-all-4.0.10.Final.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file guava-17.0.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container guava-17.0.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file commons-lang3-3.3.2.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container commons-lang3-3.3.2.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file commons-io-2.4.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container commons-io-2.4.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file commons-codec-1.9.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container commons-codec-1.9.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file jinput-2.0.5.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container jinput-2.0.5.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file jutils-1.0.0.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container jutils-1.0.0.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file gson-2.2.4.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container gson-2.2.4.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file authlib-1.5.16.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container authlib-1.5.16.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file log4j-api-2.0-beta9.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container log4j-api-2.0-beta9.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file log4j-core-2.0-beta9.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container log4j-core-2.0-beta9.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file lwjgl-2.9.1.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container lwjgl-2.9.1.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file lwjgl_util-2.9.1.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container lwjgl_util-2.9.1.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file twitch-5.16.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container twitch-5.16.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-actors-2.11.0.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-actors-2.11.0.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-linux.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-linux.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-windows.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-windows.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-osx.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-osx.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-32.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-32.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-64.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-64.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-osx.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-osx.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-32.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-32.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-64.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-64.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-windows.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-windows.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-linux.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-linux.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-osx.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-osx.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start -[23:23:06] [Client thread/TRACE] [FML/]: Recursing into package net -[23:23:06] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge -[23:23:06] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle -[23:23:06] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers -[23:23:06] [Client thread/DEBUG] [FML/]: Examining file idea_rt.jar for potential mods -[23:23:06] [Client thread/DEBUG] [FML/]: The mod container idea_rt.jar appears to be missing an mcmod.info file -[23:23:06] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load -[23:23:06] [Client thread/TRACE] [FML/]: Received a system property request '' -[23:23:06] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods -[23:23:06] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods -[23:23:06] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar [cs_CZ, uk_UA, pt_BR, nl_NL, pt_PT, fi_FI, nn_NO, br_FR, es_ES, zh_TW, sl_SI, it_IT, hu_HU, el_GR, en_US, ro_RO, de_DE, fr_FR, ko_KR, tr_TR, nb_NO, ja_JP, fa_IR, sr_SP, zh_CN, sv_SE, ca_ES, he_IL, lt_LT, da_DK, ar_SA, pl_PL, ru_RU, no_NO, af_ZA, vi_VN, en_US, en_US] -[23:23:06] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar [cs_CZ, uk_UA, pt_BR, nl_NL, pt_PT, fi_FI, nn_NO, br_FR, es_ES, zh_TW, sl_SI, it_IT, hu_HU, el_GR, en_US, ro_RO, de_DE, fr_FR, ko_KR, tr_TR, nb_NO, ja_JP, fa_IR, sr_SP, zh_CN, sv_SE, ca_ES, he_IL, lt_LT, da_DK, ar_SA, pl_PL, ru_RU, no_NO, af_ZA, vi_VN, en_US, en_US] -[23:23:06] [Client thread/DEBUG] [kitsumedievalcraft/]: Enabling mod kitsumedievalcraft -[23:23:06] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied -[23:23:06] [Client thread/TRACE] [FML/]: All mod requirements are satisfied -[23:23:06] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list -[23:23:06] [Client thread/TRACE] [FML/]: Mod sorting completed successfully -[23:23:06] [Client thread/DEBUG] [FML/]: Mod sorting data -[23:23:06] [Client thread/DEBUG] [FML/]: kitsumedievalcraft(ForgeCraft:2.2.5): main () -[23:23:06] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp -[23:23:06] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp -[23:23:06] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML -[23:23:06] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists -[23:23:06] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection -[23:23:06] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (7.10.99.99) -[23:23:06] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, kitsumedievalcraft] at CLIENT -[23:23:06] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, kitsumedievalcraft] at SERVER -[23:23:07] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML -[23:23:07] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge -[23:23:07] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed -[23:23:07] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection -[23:23:07] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (10.13.4.1448) -[23:23:07] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge -[23:23:07] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLConstructionEvent to mod kitsumedievalcraft -[23:23:07] [Client thread/TRACE] [FML/kitsumedievalcraft]: Mod kitsumedievalcraft is using network checker : Accepting version 2.2.5 -[23:23:07] [Client thread/TRACE] [FML/kitsumedievalcraft]: Testing mod kitsumedievalcraft to verify it accepts its own version in a remote connection -[23:23:07] [Client thread/TRACE] [FML/kitsumedievalcraft]: The mod kitsumedievalcraft accepts its own version (2.2.5) -[23:23:07] [Client thread/DEBUG] [FML/kitsumedievalcraft]: Attempting to inject @SidedProxy classes into kitsumedievalcraft -[23:23:07] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLConstructionEvent to mod kitsumedievalcraft -[23:23:07] [Client thread/DEBUG] [FML/]: Mod signature data -[23:23:07] [Client thread/DEBUG] [FML/]: Valid Signatures: -[23:23:07] [Client thread/DEBUG] [FML/]: Missing Signatures: -[23:23:07] [Client thread/DEBUG] [FML/]: mcp (Minecraft Coder Pack 9.05) minecraft.jar -[23:23:07] [Client thread/DEBUG] [FML/]: FML (Forge Mod Loader 7.10.99.99) forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar -[23:23:07] [Client thread/DEBUG] [FML/]: Forge (Minecraft Forge 10.13.4.1448) forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar -[23:23:07] [Client thread/DEBUG] [FML/]: kitsumedievalcraft (ForgeCraft 2.2.5) main -[23:23:07] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one -[23:23:07] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one -[23:23:07] [Client thread/DEBUG] [ForgeCraft/]: Mod ForgeCraft is missing a pack.mcmeta file, substituting a dummy one -[23:23:07] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations -[23:23:07] [Client thread/INFO] [FML/]: Found 341 ObjectHolder annotations -[23:23:07] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations -[23:23:07] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations -[23:23:07] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp -[23:23:07] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp -[23:23:07] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML -[23:23:07] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML -[23:23:07] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge -[23:23:07] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0 -[23:23:07] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge -[23:23:07] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLPreInitializationEvent to mod kitsumedievalcraft -[23:23:07] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLPreInitializationEvent to mod kitsumedievalcraft -[23:23:07] [Client thread/INFO] [FML/]: Applying holder lookups -[23:23:07] [Client thread/INFO] [FML/]: Holder lookups applied -[23:23:07] [Client thread/INFO] [FML/]: Injecting itemstacks -[23:23:07] [Client thread/INFO] [FML/]: Itemstack injection complete -[23:23:07] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: -[23:23:07] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... -[23:23:07] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL -[23:23:07] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) -[23:23:07] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. -[23:23:07] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: -[23:23:08] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp -[23:23:08] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp -[23:23:08] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML -[23:23:08] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML -[23:23:08] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge -[23:23:08] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge -[23:23:08] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLInitializationEvent to mod kitsumedievalcraft -[23:23:08] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemShit as kitsumedievalcraft.itemShit -[23:23:08] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemModelArrow as kitsumedievalcraft.itemModelArrow -[23:23:08] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemTester as kitsumedievalcraft.itemTester -[23:23:08] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLInitializationEvent to mod kitsumedievalcraft -[23:23:08] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp -[23:23:08] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp -[23:23:08] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp -[23:23:08] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML -[23:23:08] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML -[23:23:08] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML -[23:23:08] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge -[23:23:08] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge -[23:23:08] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge -[23:23:08] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod kitsumedievalcraft -[23:23:08] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event IMCEvent to mod kitsumedievalcraft -[23:23:08] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event IMCEvent to mod kitsumedievalcraft -[23:23:08] [Client thread/INFO] [FML/]: Injecting itemstacks -[23:23:08] [Client thread/INFO] [FML/]: Itemstack injection complete -[23:23:08] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp -[23:23:08] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp -[23:23:08] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML -[23:23:08] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML -[23:23:08] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge -[23:23:08] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge -[23:23:08] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLPostInitializationEvent to mod kitsumedievalcraft -[23:23:08] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLPostInitializationEvent to mod kitsumedievalcraft -[23:23:08] [Client thread/ERROR] [FML/]: Fatal errors were detected during the transition from POSTINITIALIZATION to AVAILABLE. Loading cannot continue -[23:23:08] [Client thread/ERROR] [FML/]: - States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored - UCHIJ mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) - UCHIJ FML{7.10.99.99} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar) - UCHIJ Forge{10.13.4.1448} [Minecraft Forge] (forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar) - UCHIE kitsumedievalcraft{2.2.5} [ForgeCraft] (main) -[23:23:08] [Client thread/ERROR] [FML/]: The following problems were captured during this phase -[23:23:08] [Client thread/ERROR] [FML/]: Caught exception from kitsumedievalcraft -net.minecraftforge.client.model.ModelFormatException: IO Exception reading model format - at net.minecraftforge.client.model.obj.WavefrontObject.(WavefrontObject.java:60) ~[forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:?] - at net.minecraftforge.client.model.obj.ObjModelLoader.loadInstance(ObjModelLoader.java:27) ~[forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:?] - at net.minecraftforge.client.model.AdvancedModelLoader.loadModel(AdvancedModelLoader.java:65) ~[forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:?] - at com.kitsu.medievalcraft.renderer.itemrenderer.weapons.ItemRenderWoodenShield.(ItemRenderWoodenShield.java:22) ~[main/:?] - at com.kitsu.medievalcraft.renderer.RendererRegistry.init(RendererRegistry.java:98) ~[main/:?] - at com.kitsu.medievalcraft.ClientProxy.registerItemRenderers(ClientProxy.java:30) ~[main/:?] - at com.kitsu.medievalcraft.Main.postInit(Main.java:129) ~[main/:?] - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_45] - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_45] - at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_45] - at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:532) ~[forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:?] - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_45] - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_45] - at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_45] - at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?] - at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?] - at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?] - at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?] - at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?] - at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:212) ~[forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:?] - at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:190) ~[forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:?] - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_45] - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_45] - at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_45] - at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?] - at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?] - at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?] - at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?] - at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?] - at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119) [LoadController.class:?] - at cpw.mods.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?] - at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:311) [FMLClientHandler.class:?] - at net.minecraft.client.Minecraft.startGame(Minecraft.java:597) [Minecraft.class:?] - at net.minecraft.client.Minecraft.run(Minecraft.java:942) [Minecraft.class:?] - at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_45] - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_45] - at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_45] - at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] - at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] - at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] - at GradleStart.main(Unknown Source) [start/:?] - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_45] - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_45] - at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_45] - at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140) [idea_rt.jar:?] -Caused by: java.io.FileNotFoundException: kitsumedievalcraft:models/woodenShieldObjectTriangle.obj - at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:71) ~[forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:?] - at net.minecraftforge.client.model.obj.WavefrontObject.(WavefrontObject.java:55) ~[forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:?] - ... 50 more -[23:23:08] [Client thread/INFO] [STDOUT/]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ---- -// There are four lights! - -Time: 7/22/15 11:23 PM -Description: Initializing game - -net.minecraftforge.client.model.ModelFormatException: IO Exception reading model format - at net.minecraftforge.client.model.obj.WavefrontObject.(WavefrontObject.java:60) - at net.minecraftforge.client.model.obj.ObjModelLoader.loadInstance(ObjModelLoader.java:27) - at net.minecraftforge.client.model.AdvancedModelLoader.loadModel(AdvancedModelLoader.java:65) - at com.kitsu.medievalcraft.renderer.itemrenderer.weapons.ItemRenderWoodenShield.(ItemRenderWoodenShield.java:22) - at com.kitsu.medievalcraft.renderer.RendererRegistry.init(RendererRegistry.java:98) - at com.kitsu.medievalcraft.ClientProxy.registerItemRenderers(ClientProxy.java:30) - at com.kitsu.medievalcraft.Main.postInit(Main.java:129) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:497) - at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:532) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:497) - at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) - at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) - at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) - at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) - at com.google.common.eventbus.EventBus.post(EventBus.java:275) - at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:212) - at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:190) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:497) - at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) - at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) - at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) - at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) - at com.google.common.eventbus.EventBus.post(EventBus.java:275) - at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119) - at cpw.mods.fml.common.Loader.initializeMods(Loader.java:742) - at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:311) - at net.minecraft.client.Minecraft.startGame(Minecraft.java:597) - at net.minecraft.client.Minecraft.run(Minecraft.java:942) - at net.minecraft.client.main.Main.main(Main.java:164) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:497) - at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) - at net.minecraft.launchwrapper.Launch.main(Launch.java:28) - at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) - at GradleStart.main(Unknown Source) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:497) - at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140) -Caused by: java.io.FileNotFoundException: kitsumedievalcraft:models/woodenShieldObjectTriangle.obj - at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:71) - at net.minecraftforge.client.model.obj.WavefrontObject.(WavefrontObject.java:55) - ... 50 more - - -A detailed walkthrough of the error, its code path and all known details is as follows: ---------------------------------------------------------------------------------------- - --- Head -- -Stacktrace: - at net.minecraftforge.client.model.obj.WavefrontObject.(WavefrontObject.java:60) - at net.minecraftforge.client.model.obj.ObjModelLoader.loadInstance(ObjModelLoader.java:27) - at net.minecraftforge.client.model.AdvancedModelLoader.loadModel(AdvancedModelLoader.java:65) - at com.kitsu.medievalcraft.renderer.itemrenderer.weapons.ItemRenderWoodenShield.(ItemRenderWoodenShield.java:22) - at com.kitsu.medievalcraft.renderer.RendererRegistry.init(RendererRegistry.java:98) - at com.kitsu.medievalcraft.ClientProxy.registerItemRenderers(ClientProxy.java:30) - at com.kitsu.medievalcraft.Main.postInit(Main.java:129) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:497) - at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:532) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:497) - at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) - at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) - at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) - at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) - at com.google.common.eventbus.EventBus.post(EventBus.java:275) - at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:212) - at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:190) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:497) - at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) - at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) - at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) - at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) - at com.google.common.eventbus.EventBus.post(EventBus.java:275) - at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119) - at cpw.mods.fml.common.Loader.initializeMods(Loader.java:742) - at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:311) - at net.minecraft.client.Minecraft.startGame(Minecraft.java:597) - --- Initialization -- -Details: -Stacktrace: - at net.minecraft.client.Minecraft.run(Minecraft.java:942) - at net.minecraft.client.main.Main.main(Main.java:164) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:497) - at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) - at net.minecraft.launchwrapper.Launch.main(Launch.java:28) - at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) - at GradleStart.main(Unknown Source) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:497) - at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140) - --- System Details -- -Details: - Minecraft Version: 1.7.10 - Operating System: Linux (amd64) version 3.13.0-37-generic - Java Version: 1.8.0_45, Oracle Corporation - Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation - Memory: 671676400 bytes (640 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB) - JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M - AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used - IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 - FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1448 4 mods loaded, 4 mods active - States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored - UCHIJ mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) - UCHIJ FML{7.10.99.99} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar) - UCHIJ Forge{10.13.4.1448} [Minecraft Forge] (forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar) - UCHIE kitsumedievalcraft{2.2.5} [ForgeCraft] (main) - GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.4.0 NVIDIA 331.113' Renderer: 'GeForce GTX 680/PCIe/SSE2' - Launched Version: 1.7.10 - LWJGL: 2.9.1 - OpenGL: GeForce GTX 680/PCIe/SSE2 GL version 4.4.0 NVIDIA 331.113, NVIDIA Corporation - GL Caps: Using GL 1.3 multitexturing. -Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. -Anisotropic filtering is supported and maximum anisotropy is 16. -Shaders are available because OpenGL 2.1 is supported. - - Is Modded: Definitely; Client brand changed to 'fml,forge' - Type: Client (map_client.txt) - Resource Packs: [] - Current Language: English (US) - Profiler Position: N/A (disabled) - Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used - Anisotropic Filtering: Off (1) -[23:23:08] [Client thread/INFO] [STDOUT/]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# /home/kitsudesktop/Development/ForgeCraft/eclipse/./crash-reports/crash-2015-07-22_23.23.08-client.txt +[23:24:17] [Client thread/INFO] [MinecraftForge/]: Attempting early MinecraftForge initialization +[23:24:17] [Client thread/INFO] [FML/]: MinecraftForge v10.13.4.1448 Initialized +[23:24:17] [Client thread/INFO] [FML/]: Replaced 183 ore recipies +[23:24:17] [Client thread/INFO] [MinecraftForge/]: Completed early MinecraftForge initialization +[23:24:17] [Client thread/DEBUG] [FML/]: File /home/kitsudesktop/Development/ForgeCraft/eclipse/config/injectedDependencies.json not found. No dependencies injected +[23:24:17] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [cpw.mods.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer] +[23:24:17] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/kitsudesktop/Development/ForgeCraft/bin, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.11/9c0592c6e1e9ea296a70948081bd4cc84dda1289/launchwrapper-1.11.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/1.3.9/40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf/jsr305-1.3.9.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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 +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-xml_2.11/1.0.2/7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0/scala-xml_2.11-1.0.2.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.5/6065cc95c661255349c1d0756657be17c29a4fd3/jopt-simple-4.5.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.3.5/807ae355ee63583becd7ea60e76aab1532bb42e/realms-1.3.5.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.3.1/a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d/vecmath-1.3.1.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.10.Final/9e50bd52ffe257a0e2cd8d971688d6ce7d174325/netty-all-4.0.10.Final.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.16/ef1582b11fd0943d069cdcb72e99008ac209a283/authlib-1.5.16.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.1/f58c5aabcef0e41718a564be9f8e412fff8db847/lwjgl-2.9.1.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.1/290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e/lwjgl_util-2.9.1.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/5.16/1f55f009c61637c10c0acfb8b5ffc600f30044b4/twitch-5.16.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/7c6affe439099806a4f552da14c42f9d643d8b23/twitch-platform-5.16-natives-windows-32.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/39d0c3d363735b4785598e0e7fbf8297c706a9f9/twitch-platform-5.16-natives-windows-64.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/62503ee712766cf77f97252e5902786fd834b8c5/twitch-platform-5.16-natives-osx.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/4c517eca808522457dd95ee8fc1fbcdbb602efbe/lwjgl-platform-2.9.1-natives-windows.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/aa9aae879af8eb378e22cfc64db56ec2ca9a44d1/lwjgl-platform-2.9.1-natives-linux.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac/lwjgl-platform-2.9.1-natives-osx.jar, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/start, examining for mod candidates +[23:24:17] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully +[23:24:17] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer +[23:24:17] [Client thread/INFO] [FML/]: Searching /home/kitsudesktop/Development/ForgeCraft/eclipse/mods for mods +[23:24:17] [Client thread/DEBUG] [FML/]: Examining directory bin for potential mods +[23:24:17] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory bin +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package assets +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.lang +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.models +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.sounds +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.blocks +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.gui +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.items +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft +[23:24:17] [Client thread/DEBUG] [FML/]: Identified a mod of type Lcpw/mods/fml/common/Mod; (com.kitsu.medievalcraft.Main) - loading +[23:24:17] [Client thread/TRACE] [kitsumedievalcraft/]: Parsed dependency info : [] [] [] +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.crucible +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.crucible.empty +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.decorative +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.fluid +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.ingots +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.machines +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood.clean +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood.quartersplit +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.compat +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.contain +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.crafting +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.entity +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.entityAI +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.events +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.gui +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.craftingtools +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.craftingtools.filters +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms.clay +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms.iron +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.misc +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.throwable +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.tools +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.weapon +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.curedLeather +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.forge +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.forgeHammerParticles +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.sandFilterRender +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.shelf +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.player +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.crucibles +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.emptycrucibles +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.ingot +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.machine +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.crucibles +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.crucibles.empty +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.ingotsplates +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.longbow +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.machines +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.tongs +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.tools +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.weapons +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.crucible +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.crucible.empty +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.ingots +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.machine +[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.util +[23:24:17] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar for potential mods +[23:24:17] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file launchwrapper-1.11.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container launchwrapper-1.11.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file jsr305-1.3.9.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container jsr305-1.3.9.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file akka-actor_2.11-2.3.3.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container akka-actor_2.11-2.3.3.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file config-1.2.1.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container config-1.2.1.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file scala-actors-migration_2.11-1.1.0.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container scala-actors-migration_2.11-1.1.0.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file scala-compiler-2.11.1.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container scala-compiler-2.11.1.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-library_2.11-1.0.2.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-library_2.11-1.0.2.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-plugin_2.11.1-1.0.2.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-plugin_2.11.1-1.0.2.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file scala-library-2.11.1.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container scala-library-2.11.1.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file scala-reflect-2.11.1.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container scala-reflect-2.11.1.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file scala-swing_2.11-1.0.1.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container scala-swing_2.11-1.0.1.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file jopt-simple-4.5.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container jopt-simple-4.5.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file lzma-0.0.1.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container lzma-0.0.1.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file realms-1.3.5.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container realms-1.3.5.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file commons-compress-1.8.1.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container commons-compress-1.8.1.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file httpclient-4.3.3.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container httpclient-4.3.3.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file commons-logging-1.1.3.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container commons-logging-1.1.3.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file httpcore-4.3.2.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container httpcore-4.3.2.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file vecmath-1.3.1.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container vecmath-1.3.1.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file trove4j-3.0.3.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container trove4j-3.0.3.jar appears to be missing an mcmod.info file +[23:24:18] [Client thread/DEBUG] [FML/]: Examining file icu4j-core-mojang-51.2.jar for potential mods +[23:24:18] [Client thread/DEBUG] [FML/]: The mod container icu4j-core-mojang-51.2.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file codecjorbis-20101023.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container codecjorbis-20101023.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file codecwav-20101023.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container codecwav-20101023.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file librarylwjglopenal-20100824.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container librarylwjglopenal-20100824.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file soundsystem-20120107.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container soundsystem-20120107.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file netty-all-4.0.10.Final.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container netty-all-4.0.10.Final.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file guava-17.0.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container guava-17.0.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file commons-lang3-3.3.2.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container commons-lang3-3.3.2.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file commons-io-2.4.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container commons-io-2.4.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file commons-codec-1.9.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container commons-codec-1.9.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file jinput-2.0.5.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container jinput-2.0.5.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file jutils-1.0.0.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container jutils-1.0.0.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file gson-2.2.4.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container gson-2.2.4.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file authlib-1.5.16.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container authlib-1.5.16.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file log4j-api-2.0-beta9.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container log4j-api-2.0-beta9.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file log4j-core-2.0-beta9.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container log4j-core-2.0-beta9.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file lwjgl-2.9.1.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container lwjgl-2.9.1.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file lwjgl_util-2.9.1.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container lwjgl_util-2.9.1.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file twitch-5.16.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container twitch-5.16.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file scala-actors-2.11.0.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container scala-actors-2.11.0.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-linux.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-linux.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-windows.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-windows.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-osx.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-osx.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-32.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-32.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-64.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-64.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-osx.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-osx.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-32.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-32.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-64.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-64.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-windows.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-windows.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-linux.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-linux.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-osx.jar for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-osx.jar appears to be missing an mcmod.info file +[23:24:19] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods +[23:24:19] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start +[23:24:19] [Client thread/TRACE] [FML/]: Recursing into package net +[23:24:19] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge +[23:24:19] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle +[23:24:19] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers +[23:24:19] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load +[23:24:19] [Client thread/TRACE] [FML/]: Received a system property request '' +[23:24:19] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods +[23:24:19] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods +[23:24:19] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar [cs_CZ, uk_UA, pt_BR, nl_NL, pt_PT, fi_FI, nn_NO, br_FR, es_ES, zh_TW, sl_SI, it_IT, hu_HU, el_GR, en_US, ro_RO, de_DE, fr_FR, ko_KR, tr_TR, nb_NO, ja_JP, fa_IR, sr_SP, zh_CN, sv_SE, ca_ES, he_IL, lt_LT, da_DK, ar_SA, pl_PL, ru_RU, no_NO, af_ZA, vi_VN, en_US, en_US] +[23:24:19] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar [cs_CZ, uk_UA, pt_BR, nl_NL, pt_PT, fi_FI, nn_NO, br_FR, es_ES, zh_TW, sl_SI, it_IT, hu_HU, el_GR, en_US, ro_RO, de_DE, fr_FR, ko_KR, tr_TR, nb_NO, ja_JP, fa_IR, sr_SP, zh_CN, sv_SE, ca_ES, he_IL, lt_LT, da_DK, ar_SA, pl_PL, ru_RU, no_NO, af_ZA, vi_VN, en_US, en_US] +[23:24:19] [Client thread/DEBUG] [kitsumedievalcraft/]: Enabling mod kitsumedievalcraft +[23:24:19] [Client thread/DEBUG] [FML/]: Injecting found translation assets for lang en_US at assets/kitsumedievalcraft/lang/en_US.lang into language system +[23:24:19] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied +[23:24:19] [Client thread/TRACE] [FML/]: All mod requirements are satisfied +[23:24:19] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list +[23:24:19] [Client thread/TRACE] [FML/]: Mod sorting completed successfully +[23:24:19] [Client thread/DEBUG] [FML/]: Mod sorting data +[23:24:19] [Client thread/DEBUG] [FML/]: kitsumedievalcraft(ForgeCraft:2.2.5): bin () +[23:24:19] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp +[23:24:19] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp +[23:24:19] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML +[23:24:19] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists +[23:24:19] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection +[23:24:19] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (7.10.99.99) +[23:24:19] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, kitsumedievalcraft] at CLIENT +[23:24:19] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, kitsumedievalcraft] at SERVER +[23:24:19] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML +[23:24:19] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge +[23:24:19] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed +[23:24:19] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection +[23:24:19] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (10.13.4.1448) +[23:24:19] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge +[23:24:19] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLConstructionEvent to mod kitsumedievalcraft +[23:24:19] [Client thread/TRACE] [FML/kitsumedievalcraft]: Mod kitsumedievalcraft is using network checker : Accepting version 2.2.5 +[23:24:19] [Client thread/TRACE] [FML/kitsumedievalcraft]: Testing mod kitsumedievalcraft to verify it accepts its own version in a remote connection +[23:24:19] [Client thread/TRACE] [FML/kitsumedievalcraft]: The mod kitsumedievalcraft accepts its own version (2.2.5) +[23:24:19] [Client thread/DEBUG] [FML/kitsumedievalcraft]: Attempting to inject @SidedProxy classes into kitsumedievalcraft +[23:24:19] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLConstructionEvent to mod kitsumedievalcraft +[23:24:19] [Client thread/DEBUG] [FML/]: Mod signature data +[23:24:19] [Client thread/DEBUG] [FML/]: Valid Signatures: +[23:24:19] [Client thread/DEBUG] [FML/]: Missing Signatures: +[23:24:19] [Client thread/DEBUG] [FML/]: mcp (Minecraft Coder Pack 9.05) minecraft.jar +[23:24:19] [Client thread/DEBUG] [FML/]: FML (Forge Mod Loader 7.10.99.99) forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar +[23:24:19] [Client thread/DEBUG] [FML/]: Forge (Minecraft Forge 10.13.4.1448) forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar +[23:24:19] [Client thread/DEBUG] [FML/]: kitsumedievalcraft (ForgeCraft 2.2.5) bin +[23:24:19] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one +[23:24:19] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one +[23:24:19] [Client thread/DEBUG] [ForgeCraft/]: Mod ForgeCraft is missing a pack.mcmeta file, substituting a dummy one +[23:24:19] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations +[23:24:19] [Client thread/INFO] [FML/]: Found 341 ObjectHolder annotations +[23:24:19] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations +[23:24:19] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations +[23:24:19] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp +[23:24:19] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp +[23:24:19] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML +[23:24:19] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML +[23:24:19] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge +[23:24:19] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0 +[23:24:19] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge +[23:24:19] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLPreInitializationEvent to mod kitsumedievalcraft +[23:24:20] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLPreInitializationEvent to mod kitsumedievalcraft +[23:24:20] [Client thread/INFO] [FML/]: Applying holder lookups +[23:24:20] [Client thread/INFO] [FML/]: Holder lookups applied +[23:24:20] [Client thread/INFO] [FML/]: Injecting itemstacks +[23:24:20] [Client thread/INFO] [FML/]: Itemstack injection complete +[23:24:20] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[23:24:20] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... +[23:24:20] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL +[23:24:20] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) +[23:24:20] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. +[23:24:20] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[23:24:21] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp +[23:24:21] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp +[23:24:21] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML +[23:24:21] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML +[23:24:21] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge +[23:24:21] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge +[23:24:21] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLInitializationEvent to mod kitsumedievalcraft +[23:24:21] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemShit as kitsumedievalcraft.itemShit +[23:24:21] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemModelArrow as kitsumedievalcraft.itemModelArrow +[23:24:21] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemTester as kitsumedievalcraft.itemTester +[23:24:21] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLInitializationEvent to mod kitsumedievalcraft +[23:24:21] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp +[23:24:21] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp +[23:24:21] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp +[23:24:21] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML +[23:24:21] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML +[23:24:21] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML +[23:24:21] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge +[23:24:21] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge +[23:24:21] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge +[23:24:21] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod kitsumedievalcraft +[23:24:21] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event IMCEvent to mod kitsumedievalcraft +[23:24:21] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event IMCEvent to mod kitsumedievalcraft +[23:24:21] [Client thread/INFO] [FML/]: Injecting itemstacks +[23:24:21] [Client thread/INFO] [FML/]: Itemstack injection complete +[23:24:21] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp +[23:24:21] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp +[23:24:21] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML +[23:24:21] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML +[23:24:21] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge +[23:24:21] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge +[23:24:21] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLPostInitializationEvent to mod kitsumedievalcraft +[23:24:21] [Client thread/INFO] [STDOUT/kitsumedievalcraft]: [com.kitsu.medievalcraft.Main:postInit:132]: U want some Body Massage? +[23:24:21] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLPostInitializationEvent to mod kitsumedievalcraft +[23:24:21] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp +[23:24:21] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp +[23:24:21] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML +[23:24:21] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML +[23:24:21] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge +[23:24:21] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking: +[23:24:21] [Client thread/DEBUG] [FML/Forge]: 11: RecipeEntry("Before", UNKNOWN, ) +[23:24:21] [Client thread/DEBUG] [FML/Forge]: 10: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless +[23:24:21] [Client thread/DEBUG] [FML/Forge]: 9: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped +[23:24:21] [Client thread/DEBUG] [FML/Forge]: 8: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped +[23:24:21] [Client thread/DEBUG] [FML/Forge]: 7: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped +[23:24:21] [Client thread/DEBUG] [FML/Forge]: 6: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless +[23:24:21] [Client thread/DEBUG] [FML/Forge]: 5: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless +[23:24:21] [Client thread/DEBUG] [FML/Forge]: 4: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless +[23:24:21] [Client thread/DEBUG] [FML/Forge]: 3: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless +[23:24:21] [Client thread/DEBUG] [FML/Forge]: 2: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless +[23:24:21] [Client thread/DEBUG] [FML/Forge]: 1: RecipeEntry("After", UNKNOWN, ) +[23:24:21] [Client thread/DEBUG] [FML/Forge]: Sorting recipies +[23:24:21] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge +[23:24:21] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLLoadCompleteEvent to mod kitsumedievalcraft +[23:24:21] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLLoadCompleteEvent to mod kitsumedievalcraft +[23:24:21] [Client thread/DEBUG] [FML/]: Freezing block and item id maps +[23:24:21] [Client thread/DEBUG] [FML/]: Registry consistency check successful +[23:24:21] [Client thread/DEBUG] [FML/]: Registry consistency check successful +[23:24:21] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods +[23:24:21] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[23:24:21] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... +[23:24:21] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com +[23:24:21] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[23:24:21] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[23:24:21] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... +[23:24:22] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one +[23:24:22] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one +[23:24:22] [Client thread/DEBUG] [ForgeCraft/]: Mod ForgeCraft is missing a pack.mcmeta file, substituting a dummy one +[23:24:22] [Thread-9/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL +[23:24:22] [Thread-9/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: The following texture errors were found. +[23:24:22] [Thread-9/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: ================================================== +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: DOMAIN kitsumedievalcraft +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: -------------------------------------------------- +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: domain kitsumedievalcraft is missing 20 textures +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: domain kitsumedievalcraft has 1 location: +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: mod kitsumedievalcraft resources at /home/kitsudesktop/Development/ForgeCraft/bin +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: ------------------------- +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: The missing resources for domain kitsumedievalcraft are: +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/darkSplitLogIcon.png +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/slackWaterCrucible.png +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/customIronPickCase41.png +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/spruceSplitLogIcon.png +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/customIronPickCase52.png +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/gladius.png +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/boilingWaterCrucible.png +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/inlayHammer.png +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/itemTester.png +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/slottedTongs.png +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/itemIronTippedModelArrow.png +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/smallBarrel.png +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/jungleSplitLogIcon.png +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/battleAxe.png +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/testBlock.png +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/longbow.png +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/oakSplitLogIcon.png +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/smallBarrelLid.png +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/tanWaterCrucible.png +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/filledWaterCrucible.png +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: ------------------------- +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: No other errors exist for domain kitsumedievalcraft +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: ================================================== +[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= +[23:24:22] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[23:24:24] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[23:24:24] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... +[23:24:24] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com +[23:24:24] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: diff --git a/eclipse/logs/fml-client-3.log b/eclipse/logs/fml-client-3.log index e620475e..3328b6da 100644 --- a/eclipse/logs/fml-client-3.log +++ b/eclipse/logs/fml-client-3.log @@ -1,58 +1,58 @@ -[23:24:15] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR. -[23:24:15] [main/INFO] [FML/]: Forge Mod Loader version 7.99.16.1448 for Minecraft 1.7.10 loading -[23:24:15] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_45, running on Linux:amd64:3.13.0-37-generic, installed at /usr/lib/jvm/java-8-oracle/jre -[23:24:15] [main/DEBUG] [FML/]: Java classpath at launch is /home/kitsudesktop/Development/ForgeCraft/bin:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.11/9c0592c6e1e9ea296a70948081bd4cc84dda1289/launchwrapper-1.11.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/1.3.9/40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf/jsr305-1.3.9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.0.3/f9e364ae2a66ce2a543012a4668856e84e5dab74/asm-debug-all-5.0.3.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-xml_2.11/1.0.2/7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0/scala-xml_2.11-1.0.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.5/6065cc95c661255349c1d0756657be17c29a4fd3/jopt-simple-4.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.3.5/807ae355ee63583becd7ea60e76aab1532bb42e/realms-1.3.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.3.1/a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d/vecmath-1.3.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.10.Final/9e50bd52ffe257a0e2cd8d971688d6ce7d174325/netty-all-4.0.10.Final.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.16/ef1582b11fd0943d069cdcb72e99008ac209a283/authlib-1.5.16.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.1/f58c5aabcef0e41718a564be9f8e412fff8db847/lwjgl-2.9.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.1/290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e/lwjgl_util-2.9.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/5.16/1f55f009c61637c10c0acfb8b5ffc600f30044b4/twitch-5.16.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/7c6affe439099806a4f552da14c42f9d643d8b23/twitch-platform-5.16-natives-windows-32.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/39d0c3d363735b4785598e0e7fbf8297c706a9f9/twitch-platform-5.16-natives-windows-64.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/62503ee712766cf77f97252e5902786fd834b8c5/twitch-platform-5.16-natives-osx.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/4c517eca808522457dd95ee8fc1fbcdbb602efbe/lwjgl-platform-2.9.1-natives-windows.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/aa9aae879af8eb378e22cfc64db56ec2ca9a44d1/lwjgl-platform-2.9.1-natives-linux.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac/lwjgl-platform-2.9.1-natives-osx.jar:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/start -[23:24:15] [main/DEBUG] [FML/]: Java library path at launch is /usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraft/minecraft_natives/1.7.10 -[23:24:15] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation -[23:24:15] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin -[23:24:15] [main/DEBUG] [FML/]: Added access transformer class cpw.mods.fml.common.asm.transformers.AccessTransformer to enqueued access transformers -[23:24:15] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin -[23:24:15] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin -[23:24:15] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.transformers.ForgeAccessTransformer to enqueued access transformers -[23:24:15] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin -[23:24:15] [main/DEBUG] [FML/]: All fundamental core mods are successfully located -[23:24:15] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to /home/kitsudesktop/Development/ForgeCraft/eclipse/. -[23:24:15] [main/DEBUG] [FML/]: Discovering coremods -[23:24:15] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker -[23:24:15] [main/INFO] [GradleStart/]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin -[23:24:15] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin -[23:24:15] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker -[23:24:15] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker -[23:24:15] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker -[23:24:15] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker -[23:24:15] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker -[23:24:15] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper -[23:24:15] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} class transformers -[23:24:15] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.MarkerTransformer -[23:24:15] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.SideTransformer -[23:24:15] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.EventSubscriptionTransformer -[23:24:15] [main/DEBUG] [FML/]: Injection complete -[23:24:15] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} -[23:24:15] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin -[23:24:15] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! -[23:24:15] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing -[23:24:15] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully -[23:24:15] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper -[23:24:15] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers -[23:24:15] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.classloading.FluidIdTransformer -[23:24:15] [main/DEBUG] [FML/]: Injection complete -[23:24:15] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} -[23:24:15] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin -[23:24:15] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully -[23:24:15] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker -[23:24:15] [main/DEBUG] [FML/]: Loaded 57 rules from AccessTransformer config file fml_at.cfg -[23:24:15] [main/DEBUG] [FML/]: Loaded 89 rules from AccessTransformer config file forge_at.cfg -[23:24:15] [main/DEBUG] [FML/]: Validating minecraft -[23:24:15] [main/DEBUG] [FML/]: Minecraft validated, launching... -[23:24:15] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker -[23:24:15] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker -[23:24:15] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker -[23:24:15] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main} -[23:24:17] [Client thread/INFO] [STDOUT/]: [tv.twitch.StandardCoreAPI::16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's. -[23:24:17] [Client thread/INFO] [STDOUT/]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ---- -// Ooh. Shiny. +[13:29:56] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR. +[13:29:56] [main/INFO] [FML/]: Forge Mod Loader version 7.99.16.1448 for Minecraft 1.7.10 loading +[13:29:56] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_45, running on Linux:amd64:3.13.0-37-generic, installed at /usr/lib/jvm/java-8-oracle/jre +[13:29:56] [main/DEBUG] [FML/]: Java classpath at launch is /home/kitsudesktop/Development/ForgeCraft/bin:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.11/9c0592c6e1e9ea296a70948081bd4cc84dda1289/launchwrapper-1.11.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/1.3.9/40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf/jsr305-1.3.9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.0.3/f9e364ae2a66ce2a543012a4668856e84e5dab74/asm-debug-all-5.0.3.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-xml_2.11/1.0.2/7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0/scala-xml_2.11-1.0.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.5/6065cc95c661255349c1d0756657be17c29a4fd3/jopt-simple-4.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.3.5/807ae355ee63583becd7ea60e76aab1532bb42e/realms-1.3.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.3.1/a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d/vecmath-1.3.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.10.Final/9e50bd52ffe257a0e2cd8d971688d6ce7d174325/netty-all-4.0.10.Final.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.16/ef1582b11fd0943d069cdcb72e99008ac209a283/authlib-1.5.16.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.1/f58c5aabcef0e41718a564be9f8e412fff8db847/lwjgl-2.9.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.1/290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e/lwjgl_util-2.9.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/5.16/1f55f009c61637c10c0acfb8b5ffc600f30044b4/twitch-5.16.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/7c6affe439099806a4f552da14c42f9d643d8b23/twitch-platform-5.16-natives-windows-32.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/39d0c3d363735b4785598e0e7fbf8297c706a9f9/twitch-platform-5.16-natives-windows-64.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/62503ee712766cf77f97252e5902786fd834b8c5/twitch-platform-5.16-natives-osx.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/4c517eca808522457dd95ee8fc1fbcdbb602efbe/lwjgl-platform-2.9.1-natives-windows.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/aa9aae879af8eb378e22cfc64db56ec2ca9a44d1/lwjgl-platform-2.9.1-natives-linux.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac/lwjgl-platform-2.9.1-natives-osx.jar:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/start +[13:29:56] [main/DEBUG] [FML/]: Java library path at launch is /usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraft/minecraft_natives/1.7.10 +[13:29:56] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation +[13:29:56] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin +[13:29:56] [main/DEBUG] [FML/]: Added access transformer class cpw.mods.fml.common.asm.transformers.AccessTransformer to enqueued access transformers +[13:29:56] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin +[13:29:56] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin +[13:29:56] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.transformers.ForgeAccessTransformer to enqueued access transformers +[13:29:56] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin +[13:29:56] [main/DEBUG] [FML/]: All fundamental core mods are successfully located +[13:29:56] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to /home/kitsudesktop/Development/ForgeCraft/eclipse/. +[13:29:56] [main/DEBUG] [FML/]: Discovering coremods +[13:29:56] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker +[13:29:56] [main/INFO] [GradleStart/]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin +[13:29:56] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin +[13:29:56] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker +[13:29:56] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker +[13:29:56] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker +[13:29:56] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker +[13:29:56] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker +[13:29:56] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper +[13:29:56] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} class transformers +[13:29:56] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.MarkerTransformer +[13:29:56] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.SideTransformer +[13:29:56] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.EventSubscriptionTransformer +[13:29:56] [main/DEBUG] [FML/]: Injection complete +[13:29:56] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} +[13:29:56] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin +[13:29:56] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! +[13:29:57] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing +[13:29:57] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully +[13:29:57] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper +[13:29:57] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers +[13:29:57] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.classloading.FluidIdTransformer +[13:29:57] [main/DEBUG] [FML/]: Injection complete +[13:29:57] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} +[13:29:57] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin +[13:29:57] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully +[13:29:57] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker +[13:29:57] [main/DEBUG] [FML/]: Loaded 57 rules from AccessTransformer config file fml_at.cfg +[13:29:57] [main/DEBUG] [FML/]: Loaded 89 rules from AccessTransformer config file forge_at.cfg +[13:29:57] [main/DEBUG] [FML/]: Validating minecraft +[13:29:57] [main/DEBUG] [FML/]: Minecraft validated, launching... +[13:29:57] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker +[13:29:57] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker +[13:29:57] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker +[13:29:57] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main} +[13:29:59] [Client thread/INFO] [STDOUT/]: [tv.twitch.StandardCoreAPI::16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's. +[13:29:59] [Client thread/INFO] [STDOUT/]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ---- +// Surprise! Haha. Well, this is awkward. -Time: 7/22/15 11:24 PM +Time: 7/25/15 1:29 PM Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR @@ -67,449 +67,725 @@ Details: Operating System: Linux (amd64) version 3.13.0-37-generic Java Version: 1.8.0_45, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation - Memory: 801134176 bytes (764 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB) + Memory: 806260080 bytes (768 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.4.0 NVIDIA 331.113' Renderer: 'GeForce GTX 680/PCIe/SSE2' -[23:24:17] [Client thread/INFO] [MinecraftForge/]: Attempting early MinecraftForge initialization -[23:24:17] [Client thread/INFO] [FML/]: MinecraftForge v10.13.4.1448 Initialized -[23:24:17] [Client thread/INFO] [FML/]: Replaced 183 ore recipies -[23:24:17] [Client thread/INFO] [MinecraftForge/]: Completed early MinecraftForge initialization -[23:24:17] [Client thread/DEBUG] [FML/]: File /home/kitsudesktop/Development/ForgeCraft/eclipse/config/injectedDependencies.json not found. No dependencies injected -[23:24:17] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [cpw.mods.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer] -[23:24:17] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/kitsudesktop/Development/ForgeCraft/bin, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.11/9c0592c6e1e9ea296a70948081bd4cc84dda1289/launchwrapper-1.11.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/1.3.9/40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf/jsr305-1.3.9.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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 -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-xml_2.11/1.0.2/7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0/scala-xml_2.11-1.0.2.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.5/6065cc95c661255349c1d0756657be17c29a4fd3/jopt-simple-4.5.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.3.5/807ae355ee63583becd7ea60e76aab1532bb42e/realms-1.3.5.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.3.1/a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d/vecmath-1.3.1.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.10.Final/9e50bd52ffe257a0e2cd8d971688d6ce7d174325/netty-all-4.0.10.Final.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.16/ef1582b11fd0943d069cdcb72e99008ac209a283/authlib-1.5.16.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.1/f58c5aabcef0e41718a564be9f8e412fff8db847/lwjgl-2.9.1.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.1/290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e/lwjgl_util-2.9.1.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/5.16/1f55f009c61637c10c0acfb8b5ffc600f30044b4/twitch-5.16.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/7c6affe439099806a4f552da14c42f9d643d8b23/twitch-platform-5.16-natives-windows-32.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/39d0c3d363735b4785598e0e7fbf8297c706a9f9/twitch-platform-5.16-natives-windows-64.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/62503ee712766cf77f97252e5902786fd834b8c5/twitch-platform-5.16-natives-osx.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/4c517eca808522457dd95ee8fc1fbcdbb602efbe/lwjgl-platform-2.9.1-natives-windows.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/aa9aae879af8eb378e22cfc64db56ec2ca9a44d1/lwjgl-platform-2.9.1-natives-linux.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac/lwjgl-platform-2.9.1-natives-osx.jar, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/start, examining for mod candidates -[23:24:17] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully -[23:24:17] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer -[23:24:17] [Client thread/INFO] [FML/]: Searching /home/kitsudesktop/Development/ForgeCraft/eclipse/mods for mods -[23:24:17] [Client thread/DEBUG] [FML/]: Examining directory bin for potential mods -[23:24:17] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory bin -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package assets -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.lang -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.models -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.sounds -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.blocks -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.gui -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.items -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft -[23:24:17] [Client thread/DEBUG] [FML/]: Identified a mod of type Lcpw/mods/fml/common/Mod; (com.kitsu.medievalcraft.Main) - loading -[23:24:17] [Client thread/TRACE] [kitsumedievalcraft/]: Parsed dependency info : [] [] [] -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.crucible -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.crucible.empty -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.decorative -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.fluid -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.ingots -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.machines -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood.clean -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood.quartersplit -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.compat -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.contain -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.crafting -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.entity -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.entityAI -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.events -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.gui -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.craftingtools -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.craftingtools.filters -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms.clay -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms.iron -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.misc -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.throwable -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.tools -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.weapon -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.curedLeather -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.forge -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.forgeHammerParticles -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.sandFilterRender -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.shelf -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.player -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.crucibles -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.emptycrucibles -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.ingot -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.machine -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.crucibles -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.crucibles.empty -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.ingotsplates -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.longbow -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.machines -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.tongs -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.tools -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.weapons -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.crucible -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.crucible.empty -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.ingots -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.machine -[23:24:17] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.util -[23:24:17] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar for potential mods -[23:24:17] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file launchwrapper-1.11.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container launchwrapper-1.11.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file jsr305-1.3.9.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container jsr305-1.3.9.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file akka-actor_2.11-2.3.3.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container akka-actor_2.11-2.3.3.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file config-1.2.1.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container config-1.2.1.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file scala-actors-migration_2.11-1.1.0.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container scala-actors-migration_2.11-1.1.0.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file scala-compiler-2.11.1.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container scala-compiler-2.11.1.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-library_2.11-1.0.2.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-library_2.11-1.0.2.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-plugin_2.11.1-1.0.2.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-plugin_2.11.1-1.0.2.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file scala-library-2.11.1.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container scala-library-2.11.1.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file scala-reflect-2.11.1.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container scala-reflect-2.11.1.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file scala-swing_2.11-1.0.1.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container scala-swing_2.11-1.0.1.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file jopt-simple-4.5.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container jopt-simple-4.5.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file lzma-0.0.1.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container lzma-0.0.1.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file realms-1.3.5.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container realms-1.3.5.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file commons-compress-1.8.1.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container commons-compress-1.8.1.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file httpclient-4.3.3.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container httpclient-4.3.3.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file commons-logging-1.1.3.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container commons-logging-1.1.3.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file httpcore-4.3.2.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container httpcore-4.3.2.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file vecmath-1.3.1.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container vecmath-1.3.1.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file trove4j-3.0.3.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container trove4j-3.0.3.jar appears to be missing an mcmod.info file -[23:24:18] [Client thread/DEBUG] [FML/]: Examining file icu4j-core-mojang-51.2.jar for potential mods -[23:24:18] [Client thread/DEBUG] [FML/]: The mod container icu4j-core-mojang-51.2.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file codecjorbis-20101023.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container codecjorbis-20101023.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file codecwav-20101023.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container codecwav-20101023.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file librarylwjglopenal-20100824.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container librarylwjglopenal-20100824.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file soundsystem-20120107.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container soundsystem-20120107.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file netty-all-4.0.10.Final.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container netty-all-4.0.10.Final.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file guava-17.0.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container guava-17.0.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file commons-lang3-3.3.2.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container commons-lang3-3.3.2.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file commons-io-2.4.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container commons-io-2.4.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file commons-codec-1.9.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container commons-codec-1.9.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file jinput-2.0.5.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container jinput-2.0.5.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file jutils-1.0.0.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container jutils-1.0.0.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file gson-2.2.4.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container gson-2.2.4.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file authlib-1.5.16.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container authlib-1.5.16.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file log4j-api-2.0-beta9.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container log4j-api-2.0-beta9.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file log4j-core-2.0-beta9.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container log4j-core-2.0-beta9.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file lwjgl-2.9.1.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container lwjgl-2.9.1.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file lwjgl_util-2.9.1.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container lwjgl_util-2.9.1.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file twitch-5.16.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container twitch-5.16.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file scala-actors-2.11.0.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container scala-actors-2.11.0.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-linux.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-linux.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-windows.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-windows.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-osx.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-osx.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-32.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-32.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-64.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-64.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-osx.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-osx.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-32.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-32.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-64.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-64.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-windows.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-windows.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-linux.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-linux.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-osx.jar for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-osx.jar appears to be missing an mcmod.info file -[23:24:19] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods -[23:24:19] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start -[23:24:19] [Client thread/TRACE] [FML/]: Recursing into package net -[23:24:19] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge -[23:24:19] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle -[23:24:19] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers -[23:24:19] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load -[23:24:19] [Client thread/TRACE] [FML/]: Received a system property request '' -[23:24:19] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods -[23:24:19] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods -[23:24:19] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar [cs_CZ, uk_UA, pt_BR, nl_NL, pt_PT, fi_FI, nn_NO, br_FR, es_ES, zh_TW, sl_SI, it_IT, hu_HU, el_GR, en_US, ro_RO, de_DE, fr_FR, ko_KR, tr_TR, nb_NO, ja_JP, fa_IR, sr_SP, zh_CN, sv_SE, ca_ES, he_IL, lt_LT, da_DK, ar_SA, pl_PL, ru_RU, no_NO, af_ZA, vi_VN, en_US, en_US] -[23:24:19] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar [cs_CZ, uk_UA, pt_BR, nl_NL, pt_PT, fi_FI, nn_NO, br_FR, es_ES, zh_TW, sl_SI, it_IT, hu_HU, el_GR, en_US, ro_RO, de_DE, fr_FR, ko_KR, tr_TR, nb_NO, ja_JP, fa_IR, sr_SP, zh_CN, sv_SE, ca_ES, he_IL, lt_LT, da_DK, ar_SA, pl_PL, ru_RU, no_NO, af_ZA, vi_VN, en_US, en_US] -[23:24:19] [Client thread/DEBUG] [kitsumedievalcraft/]: Enabling mod kitsumedievalcraft -[23:24:19] [Client thread/DEBUG] [FML/]: Injecting found translation assets for lang en_US at assets/kitsumedievalcraft/lang/en_US.lang into language system -[23:24:19] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied -[23:24:19] [Client thread/TRACE] [FML/]: All mod requirements are satisfied -[23:24:19] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list -[23:24:19] [Client thread/TRACE] [FML/]: Mod sorting completed successfully -[23:24:19] [Client thread/DEBUG] [FML/]: Mod sorting data -[23:24:19] [Client thread/DEBUG] [FML/]: kitsumedievalcraft(ForgeCraft:2.2.5): bin () -[23:24:19] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp -[23:24:19] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp -[23:24:19] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML -[23:24:19] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists -[23:24:19] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection -[23:24:19] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (7.10.99.99) -[23:24:19] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, kitsumedievalcraft] at CLIENT -[23:24:19] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, kitsumedievalcraft] at SERVER -[23:24:19] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML -[23:24:19] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge -[23:24:19] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed -[23:24:19] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection -[23:24:19] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (10.13.4.1448) -[23:24:19] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge -[23:24:19] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLConstructionEvent to mod kitsumedievalcraft -[23:24:19] [Client thread/TRACE] [FML/kitsumedievalcraft]: Mod kitsumedievalcraft is using network checker : Accepting version 2.2.5 -[23:24:19] [Client thread/TRACE] [FML/kitsumedievalcraft]: Testing mod kitsumedievalcraft to verify it accepts its own version in a remote connection -[23:24:19] [Client thread/TRACE] [FML/kitsumedievalcraft]: The mod kitsumedievalcraft accepts its own version (2.2.5) -[23:24:19] [Client thread/DEBUG] [FML/kitsumedievalcraft]: Attempting to inject @SidedProxy classes into kitsumedievalcraft -[23:24:19] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLConstructionEvent to mod kitsumedievalcraft -[23:24:19] [Client thread/DEBUG] [FML/]: Mod signature data -[23:24:19] [Client thread/DEBUG] [FML/]: Valid Signatures: -[23:24:19] [Client thread/DEBUG] [FML/]: Missing Signatures: -[23:24:19] [Client thread/DEBUG] [FML/]: mcp (Minecraft Coder Pack 9.05) minecraft.jar -[23:24:19] [Client thread/DEBUG] [FML/]: FML (Forge Mod Loader 7.10.99.99) forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar -[23:24:19] [Client thread/DEBUG] [FML/]: Forge (Minecraft Forge 10.13.4.1448) forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar -[23:24:19] [Client thread/DEBUG] [FML/]: kitsumedievalcraft (ForgeCraft 2.2.5) bin -[23:24:19] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one -[23:24:19] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one -[23:24:19] [Client thread/DEBUG] [ForgeCraft/]: Mod ForgeCraft is missing a pack.mcmeta file, substituting a dummy one -[23:24:19] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations -[23:24:19] [Client thread/INFO] [FML/]: Found 341 ObjectHolder annotations -[23:24:19] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations -[23:24:19] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations -[23:24:19] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp -[23:24:19] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp -[23:24:19] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML -[23:24:19] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML -[23:24:19] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge -[23:24:19] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0 -[23:24:19] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge -[23:24:19] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLPreInitializationEvent to mod kitsumedievalcraft -[23:24:20] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLPreInitializationEvent to mod kitsumedievalcraft -[23:24:20] [Client thread/INFO] [FML/]: Applying holder lookups -[23:24:20] [Client thread/INFO] [FML/]: Holder lookups applied -[23:24:20] [Client thread/INFO] [FML/]: Injecting itemstacks -[23:24:20] [Client thread/INFO] [FML/]: Itemstack injection complete -[23:24:20] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: -[23:24:20] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... -[23:24:20] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL -[23:24:20] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) -[23:24:20] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. -[23:24:20] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: -[23:24:21] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp -[23:24:21] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp -[23:24:21] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML -[23:24:21] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML -[23:24:21] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge -[23:24:21] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge -[23:24:21] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLInitializationEvent to mod kitsumedievalcraft -[23:24:21] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemShit as kitsumedievalcraft.itemShit -[23:24:21] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemModelArrow as kitsumedievalcraft.itemModelArrow -[23:24:21] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemTester as kitsumedievalcraft.itemTester -[23:24:21] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLInitializationEvent to mod kitsumedievalcraft -[23:24:21] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp -[23:24:21] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp -[23:24:21] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp -[23:24:21] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML -[23:24:21] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML -[23:24:21] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML -[23:24:21] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge -[23:24:21] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge -[23:24:21] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge -[23:24:21] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod kitsumedievalcraft -[23:24:21] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event IMCEvent to mod kitsumedievalcraft -[23:24:21] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event IMCEvent to mod kitsumedievalcraft -[23:24:21] [Client thread/INFO] [FML/]: Injecting itemstacks -[23:24:21] [Client thread/INFO] [FML/]: Itemstack injection complete -[23:24:21] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp -[23:24:21] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp -[23:24:21] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML -[23:24:21] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML -[23:24:21] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge -[23:24:21] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge -[23:24:21] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLPostInitializationEvent to mod kitsumedievalcraft -[23:24:21] [Client thread/INFO] [STDOUT/kitsumedievalcraft]: [com.kitsu.medievalcraft.Main:postInit:132]: U want some Body Massage? -[23:24:21] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLPostInitializationEvent to mod kitsumedievalcraft -[23:24:21] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp -[23:24:21] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp -[23:24:21] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML -[23:24:21] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML -[23:24:21] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge -[23:24:21] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking: -[23:24:21] [Client thread/DEBUG] [FML/Forge]: 11: RecipeEntry("Before", UNKNOWN, ) -[23:24:21] [Client thread/DEBUG] [FML/Forge]: 10: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless -[23:24:21] [Client thread/DEBUG] [FML/Forge]: 9: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped -[23:24:21] [Client thread/DEBUG] [FML/Forge]: 8: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped -[23:24:21] [Client thread/DEBUG] [FML/Forge]: 7: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped -[23:24:21] [Client thread/DEBUG] [FML/Forge]: 6: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless -[23:24:21] [Client thread/DEBUG] [FML/Forge]: 5: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless -[23:24:21] [Client thread/DEBUG] [FML/Forge]: 4: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless -[23:24:21] [Client thread/DEBUG] [FML/Forge]: 3: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless -[23:24:21] [Client thread/DEBUG] [FML/Forge]: 2: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless -[23:24:21] [Client thread/DEBUG] [FML/Forge]: 1: RecipeEntry("After", UNKNOWN, ) -[23:24:21] [Client thread/DEBUG] [FML/Forge]: Sorting recipies -[23:24:21] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge -[23:24:21] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLLoadCompleteEvent to mod kitsumedievalcraft -[23:24:21] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLLoadCompleteEvent to mod kitsumedievalcraft -[23:24:21] [Client thread/DEBUG] [FML/]: Freezing block and item id maps -[23:24:21] [Client thread/DEBUG] [FML/]: Registry consistency check successful -[23:24:21] [Client thread/DEBUG] [FML/]: Registry consistency check successful -[23:24:21] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods -[23:24:21] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: -[23:24:21] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... -[23:24:21] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com -[23:24:21] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: -[23:24:21] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: -[23:24:21] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... -[23:24:22] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one -[23:24:22] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one -[23:24:22] [Client thread/DEBUG] [ForgeCraft/]: Mod ForgeCraft is missing a pack.mcmeta file, substituting a dummy one -[23:24:22] [Thread-9/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL -[23:24:22] [Thread-9/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: The following texture errors were found. -[23:24:22] [Thread-9/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: ================================================== -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: DOMAIN kitsumedievalcraft -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: -------------------------------------------------- -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: domain kitsumedievalcraft is missing 20 textures -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: domain kitsumedievalcraft has 1 location: -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: mod kitsumedievalcraft resources at /home/kitsudesktop/Development/ForgeCraft/bin -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: ------------------------- -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: The missing resources for domain kitsumedievalcraft are: -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/darkSplitLogIcon.png -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/slackWaterCrucible.png -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/customIronPickCase41.png -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/spruceSplitLogIcon.png -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/customIronPickCase52.png -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/gladius.png -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/boilingWaterCrucible.png -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/inlayHammer.png -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/itemTester.png -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/slottedTongs.png -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/itemIronTippedModelArrow.png -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/smallBarrel.png -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/jungleSplitLogIcon.png -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/battleAxe.png -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/testBlock.png -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/longbow.png -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/oakSplitLogIcon.png -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/smallBarrelLid.png -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/tanWaterCrucible.png -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/filledWaterCrucible.png -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: ------------------------- -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: No other errors exist for domain kitsumedievalcraft -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: ================================================== -[23:24:22] [Client thread/ERROR] [TEXTURE ERRORS/]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= -[23:24:22] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: -[23:24:24] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: -[23:24:24] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... -[23:24:24] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com -[23:24:24] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[13:29:59] [Client thread/INFO] [MinecraftForge/]: Attempting early MinecraftForge initialization +[13:29:59] [Client thread/INFO] [FML/]: MinecraftForge v10.13.4.1448 Initialized +[13:29:59] [Client thread/INFO] [FML/]: Replaced 183 ore recipies +[13:29:59] [Client thread/INFO] [MinecraftForge/]: Completed early MinecraftForge initialization +[13:29:59] [Client thread/DEBUG] [FML/]: File /home/kitsudesktop/Development/ForgeCraft/eclipse/config/injectedDependencies.json not found. No dependencies injected +[13:29:59] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [cpw.mods.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer] +[13:29:59] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/kitsudesktop/Development/ForgeCraft/bin, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.11/9c0592c6e1e9ea296a70948081bd4cc84dda1289/launchwrapper-1.11.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/1.3.9/40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf/jsr305-1.3.9.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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 +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-xml_2.11/1.0.2/7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0/scala-xml_2.11-1.0.2.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.5/6065cc95c661255349c1d0756657be17c29a4fd3/jopt-simple-4.5.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.3.5/807ae355ee63583becd7ea60e76aab1532bb42e/realms-1.3.5.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.3.1/a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d/vecmath-1.3.1.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.10.Final/9e50bd52ffe257a0e2cd8d971688d6ce7d174325/netty-all-4.0.10.Final.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.16/ef1582b11fd0943d069cdcb72e99008ac209a283/authlib-1.5.16.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.1/f58c5aabcef0e41718a564be9f8e412fff8db847/lwjgl-2.9.1.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.1/290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e/lwjgl_util-2.9.1.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/5.16/1f55f009c61637c10c0acfb8b5ffc600f30044b4/twitch-5.16.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/7c6affe439099806a4f552da14c42f9d643d8b23/twitch-platform-5.16-natives-windows-32.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/39d0c3d363735b4785598e0e7fbf8297c706a9f9/twitch-platform-5.16-natives-windows-64.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/62503ee712766cf77f97252e5902786fd834b8c5/twitch-platform-5.16-natives-osx.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/4c517eca808522457dd95ee8fc1fbcdbb602efbe/lwjgl-platform-2.9.1-natives-windows.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/aa9aae879af8eb378e22cfc64db56ec2ca9a44d1/lwjgl-platform-2.9.1-natives-linux.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac/lwjgl-platform-2.9.1-natives-osx.jar, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/start, examining for mod candidates +[13:29:59] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully +[13:29:59] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer +[13:29:59] [Client thread/INFO] [FML/]: Searching /home/kitsudesktop/Development/ForgeCraft/eclipse/mods for mods +[13:29:59] [Client thread/DEBUG] [FML/]: Examining directory bin for potential mods +[13:29:59] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory bin +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package assets +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.lang +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.models +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.sounds +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.blocks +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.gui +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.items +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft +[13:29:59] [Client thread/DEBUG] [FML/]: Identified a mod of type Lcpw/mods/fml/common/Mod; (com.kitsu.medievalcraft.Main) - loading +[13:29:59] [Client thread/TRACE] [kitsumedievalcraft/]: Parsed dependency info : [] [] [] +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.crucible +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.crucible.empty +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.decorative +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.fluid +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.ingots +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.machines +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood.clean +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood.quartersplit +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.compat +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.contain +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.crafting +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.entity +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.entityAI +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.events +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.gui +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.craftingtools +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.craftingtools.filters +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms.clay +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms.iron +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.misc +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.throwable +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.tools +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.weapon +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.curedLeather +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.forge +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.forgeHammerParticles +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.sandFilterRender +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.shelf +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.player +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.crucibles +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.emptycrucibles +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.ingot +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.machine +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.crucibles +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.crucibles.empty +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.ingotsplates +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.longbow +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.machines +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.tongs +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.tools +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.weapons +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.crucible +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.crucible.empty +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.ingots +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.machine +[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.util +[13:29:59] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar for potential mods +[13:29:59] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file launchwrapper-1.11.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container launchwrapper-1.11.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file jsr305-1.3.9.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container jsr305-1.3.9.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file akka-actor_2.11-2.3.3.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container akka-actor_2.11-2.3.3.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file config-1.2.1.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container config-1.2.1.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file scala-actors-migration_2.11-1.1.0.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container scala-actors-migration_2.11-1.1.0.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file scala-compiler-2.11.1.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container scala-compiler-2.11.1.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-library_2.11-1.0.2.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-library_2.11-1.0.2.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-plugin_2.11.1-1.0.2.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-plugin_2.11.1-1.0.2.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file scala-library-2.11.1.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container scala-library-2.11.1.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file scala-reflect-2.11.1.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container scala-reflect-2.11.1.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file scala-swing_2.11-1.0.1.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container scala-swing_2.11-1.0.1.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file jopt-simple-4.5.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container jopt-simple-4.5.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file lzma-0.0.1.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container lzma-0.0.1.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file realms-1.3.5.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container realms-1.3.5.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file commons-compress-1.8.1.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container commons-compress-1.8.1.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file httpclient-4.3.3.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container httpclient-4.3.3.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file commons-logging-1.1.3.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container commons-logging-1.1.3.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file httpcore-4.3.2.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container httpcore-4.3.2.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file vecmath-1.3.1.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container vecmath-1.3.1.jar appears to be missing an mcmod.info file +[13:30:00] [Client thread/DEBUG] [FML/]: Examining file trove4j-3.0.3.jar for potential mods +[13:30:00] [Client thread/DEBUG] [FML/]: The mod container trove4j-3.0.3.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file icu4j-core-mojang-51.2.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container icu4j-core-mojang-51.2.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file codecjorbis-20101023.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container codecjorbis-20101023.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file codecwav-20101023.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container codecwav-20101023.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file librarylwjglopenal-20100824.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container librarylwjglopenal-20100824.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file soundsystem-20120107.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container soundsystem-20120107.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file netty-all-4.0.10.Final.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container netty-all-4.0.10.Final.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file guava-17.0.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container guava-17.0.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file commons-lang3-3.3.2.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container commons-lang3-3.3.2.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file commons-io-2.4.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container commons-io-2.4.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file commons-codec-1.9.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container commons-codec-1.9.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file jinput-2.0.5.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container jinput-2.0.5.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file jutils-1.0.0.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container jutils-1.0.0.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file gson-2.2.4.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container gson-2.2.4.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file authlib-1.5.16.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container authlib-1.5.16.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file log4j-api-2.0-beta9.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container log4j-api-2.0-beta9.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file log4j-core-2.0-beta9.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container log4j-core-2.0-beta9.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file lwjgl-2.9.1.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container lwjgl-2.9.1.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file lwjgl_util-2.9.1.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container lwjgl_util-2.9.1.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file twitch-5.16.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container twitch-5.16.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file scala-actors-2.11.0.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container scala-actors-2.11.0.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-linux.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-linux.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-windows.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-windows.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-osx.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-osx.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-32.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-32.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-64.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-64.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-osx.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-osx.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-32.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-32.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-64.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-64.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-windows.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-windows.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-linux.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-linux.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-osx.jar for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-osx.jar appears to be missing an mcmod.info file +[13:30:01] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods +[13:30:01] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start +[13:30:01] [Client thread/TRACE] [FML/]: Recursing into package net +[13:30:01] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge +[13:30:01] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle +[13:30:01] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers +[13:30:01] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load +[13:30:01] [Client thread/TRACE] [FML/]: Received a system property request '' +[13:30:01] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods +[13:30:01] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods +[13:30:01] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar [cs_CZ, uk_UA, pt_BR, nl_NL, pt_PT, fi_FI, nn_NO, br_FR, es_ES, zh_TW, sl_SI, it_IT, hu_HU, el_GR, en_US, ro_RO, de_DE, fr_FR, ko_KR, tr_TR, nb_NO, ja_JP, fa_IR, sr_SP, zh_CN, sv_SE, ca_ES, he_IL, lt_LT, da_DK, ar_SA, pl_PL, ru_RU, no_NO, af_ZA, vi_VN, en_US, en_US] +[13:30:01] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar [cs_CZ, uk_UA, pt_BR, nl_NL, pt_PT, fi_FI, nn_NO, br_FR, es_ES, zh_TW, sl_SI, it_IT, hu_HU, el_GR, en_US, ro_RO, de_DE, fr_FR, ko_KR, tr_TR, nb_NO, ja_JP, fa_IR, sr_SP, zh_CN, sv_SE, ca_ES, he_IL, lt_LT, da_DK, ar_SA, pl_PL, ru_RU, no_NO, af_ZA, vi_VN, en_US, en_US] +[13:30:01] [Client thread/DEBUG] [kitsumedievalcraft/]: Enabling mod kitsumedievalcraft +[13:30:01] [Client thread/DEBUG] [FML/]: Injecting found translation assets for lang en_US at assets/kitsumedievalcraft/lang/en_US.lang into language system +[13:30:01] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied +[13:30:01] [Client thread/TRACE] [FML/]: All mod requirements are satisfied +[13:30:01] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list +[13:30:01] [Client thread/TRACE] [FML/]: Mod sorting completed successfully +[13:30:01] [Client thread/DEBUG] [FML/]: Mod sorting data +[13:30:01] [Client thread/DEBUG] [FML/]: kitsumedievalcraft(ForgeCraft:2.2.5): bin () +[13:30:01] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp +[13:30:01] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp +[13:30:01] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML +[13:30:01] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists +[13:30:01] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection +[13:30:01] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (7.10.99.99) +[13:30:01] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, kitsumedievalcraft] at CLIENT +[13:30:01] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, kitsumedievalcraft] at SERVER +[13:30:02] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML +[13:30:02] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge +[13:30:02] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed +[13:30:02] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection +[13:30:02] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (10.13.4.1448) +[13:30:02] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge +[13:30:02] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLConstructionEvent to mod kitsumedievalcraft +[13:30:02] [Client thread/TRACE] [FML/kitsumedievalcraft]: Mod kitsumedievalcraft is using network checker : Accepting version 2.2.5 +[13:30:02] [Client thread/TRACE] [FML/kitsumedievalcraft]: Testing mod kitsumedievalcraft to verify it accepts its own version in a remote connection +[13:30:02] [Client thread/TRACE] [FML/kitsumedievalcraft]: The mod kitsumedievalcraft accepts its own version (2.2.5) +[13:30:02] [Client thread/DEBUG] [FML/kitsumedievalcraft]: Attempting to inject @SidedProxy classes into kitsumedievalcraft +[13:30:02] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLConstructionEvent to mod kitsumedievalcraft +[13:30:02] [Client thread/DEBUG] [FML/]: Mod signature data +[13:30:02] [Client thread/DEBUG] [FML/]: Valid Signatures: +[13:30:02] [Client thread/DEBUG] [FML/]: Missing Signatures: +[13:30:02] [Client thread/DEBUG] [FML/]: mcp (Minecraft Coder Pack 9.05) minecraft.jar +[13:30:02] [Client thread/DEBUG] [FML/]: FML (Forge Mod Loader 7.10.99.99) forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar +[13:30:02] [Client thread/DEBUG] [FML/]: Forge (Minecraft Forge 10.13.4.1448) forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar +[13:30:02] [Client thread/DEBUG] [FML/]: kitsumedievalcraft (ForgeCraft 2.2.5) bin +[13:30:02] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one +[13:30:02] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one +[13:30:02] [Client thread/DEBUG] [ForgeCraft/]: Mod ForgeCraft is missing a pack.mcmeta file, substituting a dummy one +[13:30:02] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations +[13:30:02] [Client thread/INFO] [FML/]: Found 341 ObjectHolder annotations +[13:30:02] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations +[13:30:02] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations +[13:30:02] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp +[13:30:02] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp +[13:30:02] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML +[13:30:02] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML +[13:30:02] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge +[13:30:02] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0 +[13:30:02] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge +[13:30:02] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLPreInitializationEvent to mod kitsumedievalcraft +[13:30:02] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLPreInitializationEvent to mod kitsumedievalcraft +[13:30:02] [Client thread/INFO] [FML/]: Applying holder lookups +[13:30:02] [Client thread/INFO] [FML/]: Holder lookups applied +[13:30:02] [Client thread/INFO] [FML/]: Injecting itemstacks +[13:30:02] [Client thread/INFO] [FML/]: Itemstack injection complete +[13:30:02] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[13:30:02] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... +[13:30:02] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL +[13:30:02] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) +[13:30:02] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. +[13:30:03] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[13:30:03] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp +[13:30:03] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp +[13:30:03] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML +[13:30:03] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML +[13:30:03] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge +[13:30:03] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge +[13:30:03] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLInitializationEvent to mod kitsumedievalcraft +[13:30:03] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemShit as kitsumedievalcraft.itemShit +[13:30:03] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemModelArrow as kitsumedievalcraft.itemModelArrow +[13:30:03] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemTester as kitsumedievalcraft.itemTester +[13:30:03] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLInitializationEvent to mod kitsumedievalcraft +[13:30:03] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp +[13:30:03] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp +[13:30:03] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp +[13:30:03] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML +[13:30:03] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML +[13:30:03] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML +[13:30:03] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge +[13:30:03] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge +[13:30:03] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge +[13:30:03] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod kitsumedievalcraft +[13:30:03] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event IMCEvent to mod kitsumedievalcraft +[13:30:03] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event IMCEvent to mod kitsumedievalcraft +[13:30:03] [Client thread/INFO] [FML/]: Injecting itemstacks +[13:30:03] [Client thread/INFO] [FML/]: Itemstack injection complete +[13:30:03] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp +[13:30:03] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp +[13:30:03] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML +[13:30:03] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML +[13:30:03] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge +[13:30:03] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge +[13:30:03] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLPostInitializationEvent to mod kitsumedievalcraft +[13:30:03] [Client thread/INFO] [STDOUT/kitsumedievalcraft]: [com.kitsu.medievalcraft.Main:postInit:132]: U want some Body Massage? +[13:30:03] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLPostInitializationEvent to mod kitsumedievalcraft +[13:30:03] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp +[13:30:03] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp +[13:30:03] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML +[13:30:03] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML +[13:30:03] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge +[13:30:03] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking: +[13:30:03] [Client thread/DEBUG] [FML/Forge]: 11: RecipeEntry("Before", UNKNOWN, ) +[13:30:03] [Client thread/DEBUG] [FML/Forge]: 10: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless +[13:30:03] [Client thread/DEBUG] [FML/Forge]: 9: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped +[13:30:03] [Client thread/DEBUG] [FML/Forge]: 8: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped +[13:30:03] [Client thread/DEBUG] [FML/Forge]: 7: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped +[13:30:03] [Client thread/DEBUG] [FML/Forge]: 6: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless +[13:30:03] [Client thread/DEBUG] [FML/Forge]: 5: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless +[13:30:03] [Client thread/DEBUG] [FML/Forge]: 4: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless +[13:30:03] [Client thread/DEBUG] [FML/Forge]: 3: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless +[13:30:03] [Client thread/DEBUG] [FML/Forge]: 2: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless +[13:30:03] [Client thread/DEBUG] [FML/Forge]: 1: RecipeEntry("After", UNKNOWN, ) +[13:30:03] [Client thread/DEBUG] [FML/Forge]: Sorting recipies +[13:30:03] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge +[13:30:03] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLLoadCompleteEvent to mod kitsumedievalcraft +[13:30:03] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLLoadCompleteEvent to mod kitsumedievalcraft +[13:30:03] [Client thread/DEBUG] [FML/]: Freezing block and item id maps +[13:30:03] [Client thread/DEBUG] [FML/]: Registry consistency check successful +[13:30:03] [Client thread/DEBUG] [FML/]: Registry consistency check successful +[13:30:03] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods +[13:30:04] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[13:30:04] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... +[13:30:04] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com +[13:30:04] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[13:30:04] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[13:30:04] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... +[13:30:04] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one +[13:30:04] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one +[13:30:04] [Client thread/DEBUG] [ForgeCraft/]: Mod ForgeCraft is missing a pack.mcmeta file, substituting a dummy one +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: The following texture errors were found. +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: ================================================== +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: DOMAIN kitsumedievalcraft +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: -------------------------------------------------- +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: domain kitsumedievalcraft is missing 20 textures +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: domain kitsumedievalcraft has 1 location: +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: mod kitsumedievalcraft resources at /home/kitsudesktop/Development/ForgeCraft/bin +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: ------------------------- +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: The missing resources for domain kitsumedievalcraft are: +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/darkSplitLogIcon.png +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/slackWaterCrucible.png +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/customIronPickCase41.png +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/spruceSplitLogIcon.png +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/customIronPickCase52.png +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/gladius.png +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/boilingWaterCrucible.png +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/inlayHammer.png +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/itemTester.png +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/slottedTongs.png +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/itemIronTippedModelArrow.png +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/smallBarrel.png +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/jungleSplitLogIcon.png +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/battleAxe.png +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/testBlock.png +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/longbow.png +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/oakSplitLogIcon.png +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/smallBarrelLid.png +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/tanWaterCrucible.png +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/filledWaterCrucible.png +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: ------------------------- +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: No other errors exist for domain kitsumedievalcraft +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: ================================================== +[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= +[13:30:04] [Thread-9/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL +[13:30:04] [Thread-9/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) +[13:30:04] [Thread-9/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. +[13:30:05] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[13:30:06] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerAboutToStartEvent to mod mcp +[13:30:06] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerAboutToStartEvent to mod mcp +[13:30:06] [Server thread/TRACE] [FML/FML]: Sending event FMLServerAboutToStartEvent to mod FML +[13:30:06] [Server thread/TRACE] [FML/FML]: Sent event FMLServerAboutToStartEvent to mod FML +[13:30:06] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerAboutToStartEvent to mod Forge +[13:30:06] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerAboutToStartEvent to mod Forge +[13:30:06] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLServerAboutToStartEvent to mod kitsumedievalcraft +[13:30:06] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLServerAboutToStartEvent to mod kitsumedievalcraft +[13:30:06] [Server thread/INFO] [FML/]: Injecting existing block and item data into this server instance +[13:30:06] [Server thread/DEBUG] [FML/]: Registry consistency check successful +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:cleanSpruce: 193 (init) -> 194 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:smallBarrelLid: 200 (init) -> 201 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:cleanOak: 188 (init) -> 189 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:crucibleWootz: 210 (init) -> 211 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:refinedIron: 213 (init) -> 214 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:filledWaterCrucible: 204 (init) -> 205 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:emptyCookedCrucible: 203 (init) -> 204 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:myEmerald: 219 (init) -> 220 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:lapisIngot: 217 (init) -> 218 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:forge: 187 (init) -> 188 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:oakSplitLog: 198 (init) -> 199 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:crucibleIronIngot: 209 (init) -> 210 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:tanWaterCrucible: 206 (init) -> 207 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:smallBarrel: 201 (init) -> 202 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:crucibleIronOre: 208 (init) -> 209 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:forgeAnvil: 182 (init) -> 183 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:crucibleLapis: 211 (init) -> 212 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:ironPlate: 215 (init) -> 216 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:slackWaterCrucible: 207 (init) -> 208 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:redstoneIngot: 216 (init) -> 217 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:emptySoftCrucible: 202 (init) -> 203 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:damascus: 214 (init) -> 215 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:spruceSplitLog: 199 (init) -> 200 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:waterFilter: 183 (init) -> 184 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:acaciaSplitLog: 194 (init) -> 195 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:firebox: 186 (init) -> 187 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:shelfFour: 185 (init) -> 186 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:jungleSplitLog: 197 (init) -> 198 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:crucibleRedstone: 212 (init) -> 213 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:cleanBirch: 192 (init) -> 193 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:darkSplitLog: 196 (init) -> 197 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:cleanAcacia: 189 (init) -> 190 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:cleanJungle: 190 (init) -> 191 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:myDiamond: 218 (init) -> 219 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:boilingWaterCrucible: 205 (init) -> 206 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:birchSplitLog: 195 (init) -> 196 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:solidFilter: 184 (init) -> 185 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:cleanDarkOak: 191 (init) -> 192 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:ironPlate: 215 (init) -> 216 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleStrongIronPick: 4302 (init) -> 4255 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:damascus: 214 (init) -> 215 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:cleanBirch: 192 (init) -> 193 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:smallBarrelLid: 200 (init) -> 201 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronLumberAxe: 4370 (init) -> 4250 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:solidFilter: 184 (init) -> 185 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:crucibleLapis: 211 (init) -> 212 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronLumberAxe3: 4369 (init) -> 4267 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronLumberAxe1: 4367 (init) -> 4268 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronLumberAxe2: 4368 (init) -> 4269 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronLumberAxe0: 4366 (init) -> 4270 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:crucibleRedstone: 212 (init) -> 213 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPick2: 4241 (init) -> 4260 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPick1: 4240 (init) -> 4259 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleIronShovel: 4364 (init) -> 4248 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase00: 4308 (init) -> 4376 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:filledWaterCrucible: 204 (init) -> 205 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPick4: 4243 (init) -> 4262 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPick3: 4242 (init) -> 4261 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:shelfFour: 185 (init) -> 186 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:cleanAcacia: 189 (init) -> 190 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleStrongIronShovel: 4365 (init) -> 4249 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:slackWaterCrucible: 207 (init) -> 208 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase6: 4251 (init) -> 4278 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase43: 4351 (init) -> 4378 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase5: 4250 (init) -> 4277 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase44: 4352 (init) -> 4377 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase4: 4249 (init) -> 4276 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase45: 4353 (init) -> 4365 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase3: 4248 (init) -> 4275 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase46: 4354 (init) -> 4364 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase9: 4254 (init) -> 4281 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase40: 4348 (init) -> 4373 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase8: 4253 (init) -> 4280 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase41: 4349 (init) -> 4375 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase7: 4252 (init) -> 4279 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase42: 4350 (init) -> 4374 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase47: 4355 (init) -> 4367 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase48: 4356 (init) -> 4366 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customWeakIronShovel: 4363 (init) -> 4247 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase49: 4357 (init) -> 4370 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customStrongIronLumberAxe: 4371 (init) -> 4251 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase2: 4247 (init) -> 4273 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase1: 4246 (init) -> 4274 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase0: 4244 (init) -> 4271 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase32: 4340 (init) -> 4363 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase33: 4341 (init) -> 4361 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase30: 4338 (init) -> 4356 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase31: 4339 (init) -> 4355 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase38: 4346 (init) -> 4348 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customStrongIronPick: 4299 (init) -> 4241 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:crucibleIronIngot: 209 (init) -> 210 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:crucibleWootz: 210 (init) -> 211 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleIronPick: 4301 (init) -> 4256 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:spruceSplitLog: 199 (init) -> 200 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:cleanOak: 188 (init) -> 189 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:emptyCookedCrucible: 203 (init) -> 204 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovel: 4361 (init) -> 4245 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:emptySoftCrucible: 202 (init) -> 203 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:cleanJungle: 190 (init) -> 191 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:firebox: 186 (init) -> 187 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:lapisIngot: 217 (init) -> 218 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleIronLumberAxe: 4373 (init) -> 4253 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customStrongIronShovel: 4362 (init) -> 4246 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleIronPickCase0: 4245 (init) -> 4272 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovel3: 4306 (init) -> 4263 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovel2: 4305 (init) -> 4264 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovel1: 4304 (init) -> 4265 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovel0: 4303 (init) -> 4266 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customWeakIronLumberAxe: 4372 (init) -> 4252 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:boilingWaterCrucible: 205 (init) -> 206 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:acaciaSplitLog: 194 (init) -> 195 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronHoe: 4375 (init) -> 4258 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPick: 4298 (init) -> 4240 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:smallBarrel: 201 (init) -> 202 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:birchSplitLog: 195 (init) -> 196 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:redstoneIngot: 216 (init) -> 217 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase28: 4273 (init) -> 4300 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase27: 4272 (init) -> 4301 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase29: 4274 (init) -> 4299 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase20: 4265 (init) -> 4294 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase22: 4267 (init) -> 4292 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase21: 4266 (init) -> 4293 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase24: 4269 (init) -> 4297 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase23: 4268 (init) -> 4298 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase26: 4271 (init) -> 4295 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase25: 4270 (init) -> 4296 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:tanWaterCrucible: 206 (init) -> 207 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:darkSplitLog: 196 (init) -> 197 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase17: 4262 (init) -> 4290 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase16: 4261 (init) -> 4291 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase19: 4264 (init) -> 4288 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase18: 4263 (init) -> 4289 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase11: 4256 (init) -> 4283 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase10: 4255 (init) -> 4282 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase13: 4258 (init) -> 4285 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleStrongIronLumberAxe: 4374 (init) -> 4254 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase12: 4257 (init) -> 4284 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase15: 4260 (init) -> 4286 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase14: 4259 (init) -> 4287 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase49: 4294 (init) -> 4349 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase42: 4287 (init) -> 4357 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase41: 4286 (init) -> 4362 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase44: 4289 (init) -> 4350 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase43: 4288 (init) -> 4351 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase46: 4291 (init) -> 4352 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase45: 4290 (init) -> 4353 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase48: 4293 (init) -> 4341 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase47: 4292 (init) -> 4346 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase40: 4285 (init) -> 4354 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase39: 4284 (init) -> 4371 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase38: 4283 (init) -> 4372 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase31: 4276 (init) -> 4305 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase30: 4275 (init) -> 4306 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase33: 4278 (init) -> 4302 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase32: 4277 (init) -> 4303 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase35: 4280 (init) -> 4307 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase34: 4279 (init) -> 4304 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase37: 4282 (init) -> 4368 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase36: 4281 (init) -> 4369 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:crucibleIronOre: 208 (init) -> 209 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:waterFilter: 183 (init) -> 184 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase52: 4297 (init) -> 4310 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase51: 4296 (init) -> 4308 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase50: 4295 (init) -> 4309 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:forge: 187 (init) -> 188 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase5: 4313 (init) -> 4339 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase6: 4314 (init) -> 4340 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customWeakIronPick: 4300 (init) -> 4257 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase0: 4307 (init) -> 4311 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase1: 4309 (init) -> 4312 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase2: 4310 (init) -> 4313 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase3: 4311 (init) -> 4314 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase4: 4312 (init) -> 4338 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:cleanDarkOak: 191 (init) -> 192 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:oakSplitLog: 198 (init) -> 199 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:myDiamond: 218 (init) -> 219 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:forgeAnvil: 182 (init) -> 183 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:refinedIron: 213 (init) -> 214 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:jungleSplitLog: 197 (init) -> 198 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:cleanSpruce: 193 (init) -> 194 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:myEmerald: 219 (init) -> 220 (map). +[13:30:06] [Server thread/DEBUG] [FML/]: Registry consistency check successful +[13:30:06] [Server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp +[13:30:06] [Server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp +[13:30:06] [Server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML +[13:30:06] [Server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML +[13:30:06] [Server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge +[13:30:06] [Server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge +[13:30:06] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLModIdMappingEvent to mod kitsumedievalcraft +[13:30:06] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLModIdMappingEvent to mod kitsumedievalcraft +[13:30:06] [Server thread/INFO] [FML/]: Applying holder lookups +[13:30:06] [Server thread/INFO] [FML/]: Holder lookups applied +[13:30:06] [Server thread/DEBUG] [FML/]: Loading persistent fluid defaults from world +[13:30:06] [Server thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava +[13:30:06] [Server thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water +[13:30:06] [Server thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blockslackedlime has been selected as the default fluid for blockslackedlime +[13:30:06] [Server thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blockfilteredwater has been selected as the default fluid for blockfilteredwater +[13:30:06] [Server thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blocksmoke has been selected as the default fluid for blocksmoke +[13:30:06] [Server thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blocktannin has been selected as the default fluid for blocktannin +[13:30:06] [Server thread/INFO] [FML/]: Loading dimension 0 (Demo World) (net.minecraft.server.integrated.IntegratedServer@6d4ab2da) +[13:30:06] [Server thread/INFO] [FML/]: Loading dimension 1 (Demo World) (net.minecraft.server.integrated.IntegratedServer@6d4ab2da) +[13:30:07] [Server thread/INFO] [FML/]: Loading dimension -1 (Demo World) (net.minecraft.server.integrated.IntegratedServer@6d4ab2da) +[13:30:07] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartingEvent to mod mcp +[13:30:07] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartingEvent to mod mcp +[13:30:07] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStartingEvent to mod FML +[13:30:07] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStartingEvent to mod FML +[13:30:07] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartingEvent to mod Forge +[13:30:07] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartingEvent to mod Forge +[13:30:07] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLServerStartingEvent to mod kitsumedievalcraft +[13:30:07] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLServerStartingEvent to mod kitsumedievalcraft +[13:30:07] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartedEvent to mod mcp +[13:30:07] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartedEvent to mod mcp +[13:30:07] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStartedEvent to mod FML +[13:30:07] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStartedEvent to mod FML +[13:30:07] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartedEvent to mod Forge +[13:30:07] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartedEvent to mod Forge +[13:30:07] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLServerStartedEvent to mod kitsumedievalcraft +[13:30:07] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLServerStartedEvent to mod kitsumedievalcraft +[13:30:07] [Netty Client IO #0/DEBUG] [FML/]: Server FML protocol version 2, 4 byte dimension received 0 +[13:30:07] [Netty Client IO #0/TRACE] [FML/]: $ServerHello->FMLHandshakeClientState$2:HELLO +[13:30:07] [Netty Client IO #0/INFO] [FML/]: Server protocol version 2 +[13:30:07] [Netty Client IO #0/DEBUG] [FML/]: Received override dimension 0 +[13:30:07] [Netty IO #1/TRACE] [FML/]: $ClientHello->FMLHandshakeServerState$2:HELLO +[13:30:07] [Netty IO #1/INFO] [FML/]: Client protocol version 2 +[13:30:07] [Netty IO #1/TRACE] [FML/]: $ModList:4 mods->FMLHandshakeServerState$2:HELLO +[13:30:07] [Netty IO #1/INFO] [FML/]: Client attempting to join with 4 mods : FML@7.10.99.99,kitsumedievalcraft@2.2.5,Forge@10.13.4.1448,mcp@9.05 +[13:30:07] [Netty IO #1/INFO] [FML/]: Attempting connection with missing mods [] at CLIENT +[13:30:07] [Netty Client IO #0/TRACE] [FML/]: $ModList:4 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA +[13:30:07] [Netty Client IO #0/INFO] [FML/]: Attempting connection with missing mods [] at SERVER +[13:30:07] [Netty IO #1/TRACE] [FML/]: $HandshakeAck:{2}->FMLHandshakeServerState$3:WAITINGCACK +[13:30:07] [Netty Client IO #0/TRACE] [FML/]: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE +[13:30:07] [Netty IO #1/TRACE] [FML/]: $HandshakeAck:{4}->FMLHandshakeServerState$4:COMPLETE +[13:30:07] [Netty Client IO #0/TRACE] [FML/]: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE +[13:30:07] [Netty IO #1/TRACE] [FML/]: $HandshakeAck:{5}->FMLHandshakeServerState$5:DONE +[13:30:07] [Server thread/INFO] [FML/]: [Server thread] Server side modded connection established +[13:30:07] [Client thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava +[13:30:07] [Client thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water +[13:30:07] [Client thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blockslackedlime has been selected as the default fluid for blockslackedlime +[13:30:07] [Client thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blockfilteredwater has been selected as the default fluid for blockfilteredwater +[13:30:07] [Client thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blocksmoke has been selected as the default fluid for blocksmoke +[13:30:07] [Client thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blocktannin has been selected as the default fluid for blocktannin +[13:30:07] [Client thread/INFO] [FML/]: [Client thread] Client side modded connection established +[13:30:07] [Client thread/DEBUG] [FML/]: Overriding dimension: using 0 +[13:30:51] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[13:30:51] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... +[13:30:51] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppingEvent to mod mcp +[13:30:51] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppingEvent to mod mcp +[13:30:51] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStoppingEvent to mod FML +[13:30:51] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStoppingEvent to mod FML +[13:30:51] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppingEvent to mod Forge +[13:30:51] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppingEvent to mod Forge +[13:30:51] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLServerStoppingEvent to mod kitsumedievalcraft +[13:30:51] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLServerStoppingEvent to mod kitsumedievalcraft +[13:30:51] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Demo World +[13:30:51] [Server thread/INFO] [FML/]: Unloading dimension 0 +[13:30:51] [Server thread/INFO] [FML/]: Unloading dimension -1 +[13:30:51] [Server thread/INFO] [FML/]: Unloading dimension 1 +[13:30:51] [Server thread/DEBUG] [FML/]: Reverting to frozen data state. +[13:30:51] [Server thread/INFO] [FML/]: Applying holder lookups +[13:30:51] [Server thread/INFO] [FML/]: Holder lookups applied +[13:30:51] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppedEvent to mod mcp +[13:30:51] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppedEvent to mod mcp +[13:30:51] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStoppedEvent to mod FML +[13:30:51] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStoppedEvent to mod FML +[13:30:51] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppedEvent to mod Forge +[13:30:51] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppedEvent to mod Forge +[13:30:51] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLServerStoppedEvent to mod kitsumedievalcraft +[13:30:51] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLServerStoppedEvent to mod kitsumedievalcraft +[13:30:51] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com +[13:30:51] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: diff --git a/eclipse/logs/fml-client-latest.log b/eclipse/logs/fml-client-latest.log index 3328b6da..ac4df958 100644 --- a/eclipse/logs/fml-client-latest.log +++ b/eclipse/logs/fml-client-latest.log @@ -1,58 +1,58 @@ -[13:29:56] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR. -[13:29:56] [main/INFO] [FML/]: Forge Mod Loader version 7.99.16.1448 for Minecraft 1.7.10 loading -[13:29:56] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_45, running on Linux:amd64:3.13.0-37-generic, installed at /usr/lib/jvm/java-8-oracle/jre -[13:29:56] [main/DEBUG] [FML/]: Java classpath at launch is /home/kitsudesktop/Development/ForgeCraft/bin:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.11/9c0592c6e1e9ea296a70948081bd4cc84dda1289/launchwrapper-1.11.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/1.3.9/40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf/jsr305-1.3.9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.0.3/f9e364ae2a66ce2a543012a4668856e84e5dab74/asm-debug-all-5.0.3.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-xml_2.11/1.0.2/7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0/scala-xml_2.11-1.0.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.5/6065cc95c661255349c1d0756657be17c29a4fd3/jopt-simple-4.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.3.5/807ae355ee63583becd7ea60e76aab1532bb42e/realms-1.3.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.3.1/a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d/vecmath-1.3.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.10.Final/9e50bd52ffe257a0e2cd8d971688d6ce7d174325/netty-all-4.0.10.Final.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.16/ef1582b11fd0943d069cdcb72e99008ac209a283/authlib-1.5.16.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.1/f58c5aabcef0e41718a564be9f8e412fff8db847/lwjgl-2.9.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.1/290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e/lwjgl_util-2.9.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/5.16/1f55f009c61637c10c0acfb8b5ffc600f30044b4/twitch-5.16.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/7c6affe439099806a4f552da14c42f9d643d8b23/twitch-platform-5.16-natives-windows-32.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/39d0c3d363735b4785598e0e7fbf8297c706a9f9/twitch-platform-5.16-natives-windows-64.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/62503ee712766cf77f97252e5902786fd834b8c5/twitch-platform-5.16-natives-osx.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/4c517eca808522457dd95ee8fc1fbcdbb602efbe/lwjgl-platform-2.9.1-natives-windows.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/aa9aae879af8eb378e22cfc64db56ec2ca9a44d1/lwjgl-platform-2.9.1-natives-linux.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac/lwjgl-platform-2.9.1-natives-osx.jar:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/start -[13:29:56] [main/DEBUG] [FML/]: Java library path at launch is /usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraft/minecraft_natives/1.7.10 -[13:29:56] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation -[13:29:56] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin -[13:29:56] [main/DEBUG] [FML/]: Added access transformer class cpw.mods.fml.common.asm.transformers.AccessTransformer to enqueued access transformers -[13:29:56] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin -[13:29:56] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin -[13:29:56] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.transformers.ForgeAccessTransformer to enqueued access transformers -[13:29:56] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin -[13:29:56] [main/DEBUG] [FML/]: All fundamental core mods are successfully located -[13:29:56] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to /home/kitsudesktop/Development/ForgeCraft/eclipse/. -[13:29:56] [main/DEBUG] [FML/]: Discovering coremods -[13:29:56] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker -[13:29:56] [main/INFO] [GradleStart/]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin -[13:29:56] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin -[13:29:56] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker -[13:29:56] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker -[13:29:56] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker -[13:29:56] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker -[13:29:56] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker -[13:29:56] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper -[13:29:56] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} class transformers -[13:29:56] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.MarkerTransformer -[13:29:56] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.SideTransformer -[13:29:56] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.EventSubscriptionTransformer -[13:29:56] [main/DEBUG] [FML/]: Injection complete -[13:29:56] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} -[13:29:56] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin -[13:29:56] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! -[13:29:57] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing -[13:29:57] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully -[13:29:57] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper -[13:29:57] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers -[13:29:57] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.classloading.FluidIdTransformer -[13:29:57] [main/DEBUG] [FML/]: Injection complete -[13:29:57] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} -[13:29:57] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin -[13:29:57] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully -[13:29:57] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker -[13:29:57] [main/DEBUG] [FML/]: Loaded 57 rules from AccessTransformer config file fml_at.cfg -[13:29:57] [main/DEBUG] [FML/]: Loaded 89 rules from AccessTransformer config file forge_at.cfg -[13:29:57] [main/DEBUG] [FML/]: Validating minecraft -[13:29:57] [main/DEBUG] [FML/]: Minecraft validated, launching... -[13:29:57] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker -[13:29:57] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker -[13:29:57] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker -[13:29:57] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main} -[13:29:59] [Client thread/INFO] [STDOUT/]: [tv.twitch.StandardCoreAPI::16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's. -[13:29:59] [Client thread/INFO] [STDOUT/]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ---- -// Surprise! Haha. Well, this is awkward. +[18:56:07] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR. +[18:56:07] [main/INFO] [FML/]: Forge Mod Loader version 7.99.16.1448 for Minecraft 1.7.10 loading +[18:56:07] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_45, running on Linux:amd64:3.13.0-37-generic, installed at /usr/lib/jvm/java-8-oracle/jre +[18:56:07] [main/DEBUG] [FML/]: Java classpath at launch is /home/kitsudesktop/Development/ForgeCraft/bin:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.11/9c0592c6e1e9ea296a70948081bd4cc84dda1289/launchwrapper-1.11.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/1.3.9/40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf/jsr305-1.3.9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.0.3/f9e364ae2a66ce2a543012a4668856e84e5dab74/asm-debug-all-5.0.3.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-xml_2.11/1.0.2/7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0/scala-xml_2.11-1.0.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.5/6065cc95c661255349c1d0756657be17c29a4fd3/jopt-simple-4.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.3.5/807ae355ee63583becd7ea60e76aab1532bb42e/realms-1.3.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.3.1/a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d/vecmath-1.3.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.10.Final/9e50bd52ffe257a0e2cd8d971688d6ce7d174325/netty-all-4.0.10.Final.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.16/ef1582b11fd0943d069cdcb72e99008ac209a283/authlib-1.5.16.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.1/f58c5aabcef0e41718a564be9f8e412fff8db847/lwjgl-2.9.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.1/290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e/lwjgl_util-2.9.1.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/5.16/1f55f009c61637c10c0acfb8b5ffc600f30044b4/twitch-5.16.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar:/home/kitsudesktop/.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:/home/kitsudesktop/.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:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/7c6affe439099806a4f552da14c42f9d643d8b23/twitch-platform-5.16-natives-windows-32.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/39d0c3d363735b4785598e0e7fbf8297c706a9f9/twitch-platform-5.16-natives-windows-64.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/62503ee712766cf77f97252e5902786fd834b8c5/twitch-platform-5.16-natives-osx.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/4c517eca808522457dd95ee8fc1fbcdbb602efbe/lwjgl-platform-2.9.1-natives-windows.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/aa9aae879af8eb378e22cfc64db56ec2ca9a44d1/lwjgl-platform-2.9.1-natives-linux.jar:/home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac/lwjgl-platform-2.9.1-natives-osx.jar:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/start +[18:56:07] [main/DEBUG] [FML/]: Java library path at launch is /usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib:/home/kitsudesktop/.gradle/caches/minecraft/net/minecraft/minecraft_natives/1.7.10 +[18:56:07] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation +[18:56:07] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin +[18:56:07] [main/DEBUG] [FML/]: Added access transformer class cpw.mods.fml.common.asm.transformers.AccessTransformer to enqueued access transformers +[18:56:07] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin +[18:56:07] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin +[18:56:07] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.transformers.ForgeAccessTransformer to enqueued access transformers +[18:56:07] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin +[18:56:07] [main/DEBUG] [FML/]: All fundamental core mods are successfully located +[18:56:07] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to /home/kitsudesktop/Development/ForgeCraft/eclipse/. +[18:56:07] [main/DEBUG] [FML/]: Discovering coremods +[18:56:07] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker +[18:56:07] [main/INFO] [GradleStart/]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin +[18:56:07] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin +[18:56:07] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker +[18:56:07] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker +[18:56:07] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker +[18:56:07] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker +[18:56:07] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker +[18:56:07] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper +[18:56:07] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} class transformers +[18:56:07] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.MarkerTransformer +[18:56:07] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.SideTransformer +[18:56:07] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.EventSubscriptionTransformer +[18:56:07] [main/DEBUG] [FML/]: Injection complete +[18:56:07] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} +[18:56:07] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin +[18:56:07] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! +[18:56:08] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing +[18:56:08] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully +[18:56:08] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper +[18:56:08] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers +[18:56:08] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.classloading.FluidIdTransformer +[18:56:08] [main/DEBUG] [FML/]: Injection complete +[18:56:08] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} +[18:56:08] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin +[18:56:08] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully +[18:56:08] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker +[18:56:08] [main/DEBUG] [FML/]: Loaded 57 rules from AccessTransformer config file fml_at.cfg +[18:56:08] [main/DEBUG] [FML/]: Loaded 89 rules from AccessTransformer config file forge_at.cfg +[18:56:08] [main/DEBUG] [FML/]: Validating minecraft +[18:56:08] [main/DEBUG] [FML/]: Minecraft validated, launching... +[18:56:08] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker +[18:56:08] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker +[18:56:08] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker +[18:56:08] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main} +[18:56:10] [Client thread/INFO] [STDOUT/]: [tv.twitch.StandardCoreAPI::16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's. +[18:56:10] [Client thread/INFO] [STDOUT/]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ---- +// You should try our sister game, Minceraft! -Time: 7/25/15 1:29 PM +Time: 7/25/15 6:56 PM Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR @@ -67,725 +67,737 @@ Details: Operating System: Linux (amd64) version 3.13.0-37-generic Java Version: 1.8.0_45, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation - Memory: 806260080 bytes (768 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB) + Memory: 810179088 bytes (772 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.4.0 NVIDIA 331.113' Renderer: 'GeForce GTX 680/PCIe/SSE2' -[13:29:59] [Client thread/INFO] [MinecraftForge/]: Attempting early MinecraftForge initialization -[13:29:59] [Client thread/INFO] [FML/]: MinecraftForge v10.13.4.1448 Initialized -[13:29:59] [Client thread/INFO] [FML/]: Replaced 183 ore recipies -[13:29:59] [Client thread/INFO] [MinecraftForge/]: Completed early MinecraftForge initialization -[13:29:59] [Client thread/DEBUG] [FML/]: File /home/kitsudesktop/Development/ForgeCraft/eclipse/config/injectedDependencies.json not found. No dependencies injected -[13:29:59] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [cpw.mods.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer] -[13:29:59] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/kitsudesktop/Development/ForgeCraft/bin, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.11/9c0592c6e1e9ea296a70948081bd4cc84dda1289/launchwrapper-1.11.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/1.3.9/40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf/jsr305-1.3.9.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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 -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-xml_2.11/1.0.2/7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0/scala-xml_2.11-1.0.2.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.5/6065cc95c661255349c1d0756657be17c29a4fd3/jopt-simple-4.5.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.3.5/807ae355ee63583becd7ea60e76aab1532bb42e/realms-1.3.5.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.3.1/a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d/vecmath-1.3.1.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.10.Final/9e50bd52ffe257a0e2cd8d971688d6ce7d174325/netty-all-4.0.10.Final.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.16/ef1582b11fd0943d069cdcb72e99008ac209a283/authlib-1.5.16.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.1/f58c5aabcef0e41718a564be9f8e412fff8db847/lwjgl-2.9.1.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.1/290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e/lwjgl_util-2.9.1.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/5.16/1f55f009c61637c10c0acfb8b5ffc600f30044b4/twitch-5.16.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/7c6affe439099806a4f552da14c42f9d643d8b23/twitch-platform-5.16-natives-windows-32.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/39d0c3d363735b4785598e0e7fbf8297c706a9f9/twitch-platform-5.16-natives-windows-64.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/62503ee712766cf77f97252e5902786fd834b8c5/twitch-platform-5.16-natives-osx.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/4c517eca808522457dd95ee8fc1fbcdbb602efbe/lwjgl-platform-2.9.1-natives-windows.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/aa9aae879af8eb378e22cfc64db56ec2ca9a44d1/lwjgl-platform-2.9.1-natives-linux.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac/lwjgl-platform-2.9.1-natives-osx.jar, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/start, examining for mod candidates -[13:29:59] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully -[13:29:59] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer -[13:29:59] [Client thread/INFO] [FML/]: Searching /home/kitsudesktop/Development/ForgeCraft/eclipse/mods for mods -[13:29:59] [Client thread/DEBUG] [FML/]: Examining directory bin for potential mods -[13:29:59] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory bin -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package assets -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.lang -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.models -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.sounds -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.blocks -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.gui -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.items -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft -[13:29:59] [Client thread/DEBUG] [FML/]: Identified a mod of type Lcpw/mods/fml/common/Mod; (com.kitsu.medievalcraft.Main) - loading -[13:29:59] [Client thread/TRACE] [kitsumedievalcraft/]: Parsed dependency info : [] [] [] -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.crucible -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.crucible.empty -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.decorative -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.fluid -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.ingots -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.machines -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood.clean -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood.quartersplit -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.compat -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.contain -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.crafting -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.entity -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.entityAI -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.events -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.gui -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.craftingtools -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.craftingtools.filters -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms.clay -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms.iron -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.misc -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.throwable -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.tools -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.weapon -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.curedLeather -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.forge -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.forgeHammerParticles -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.sandFilterRender -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.shelf -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.player -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.crucibles -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.emptycrucibles -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.ingot -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.machine -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.crucibles -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.crucibles.empty -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.ingotsplates -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.longbow -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.machines -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.tongs -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.tools -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.weapons -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.crucible -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.crucible.empty -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.ingots -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.machine -[13:29:59] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.util -[13:29:59] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar for potential mods -[13:29:59] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file launchwrapper-1.11.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container launchwrapper-1.11.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file jsr305-1.3.9.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container jsr305-1.3.9.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file akka-actor_2.11-2.3.3.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container akka-actor_2.11-2.3.3.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file config-1.2.1.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container config-1.2.1.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file scala-actors-migration_2.11-1.1.0.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container scala-actors-migration_2.11-1.1.0.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file scala-compiler-2.11.1.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container scala-compiler-2.11.1.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-library_2.11-1.0.2.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-library_2.11-1.0.2.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-plugin_2.11.1-1.0.2.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-plugin_2.11.1-1.0.2.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file scala-library-2.11.1.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container scala-library-2.11.1.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file scala-reflect-2.11.1.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container scala-reflect-2.11.1.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file scala-swing_2.11-1.0.1.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container scala-swing_2.11-1.0.1.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file jopt-simple-4.5.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container jopt-simple-4.5.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file lzma-0.0.1.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container lzma-0.0.1.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file realms-1.3.5.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container realms-1.3.5.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file commons-compress-1.8.1.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container commons-compress-1.8.1.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file httpclient-4.3.3.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container httpclient-4.3.3.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file commons-logging-1.1.3.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container commons-logging-1.1.3.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file httpcore-4.3.2.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container httpcore-4.3.2.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file vecmath-1.3.1.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container vecmath-1.3.1.jar appears to be missing an mcmod.info file -[13:30:00] [Client thread/DEBUG] [FML/]: Examining file trove4j-3.0.3.jar for potential mods -[13:30:00] [Client thread/DEBUG] [FML/]: The mod container trove4j-3.0.3.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file icu4j-core-mojang-51.2.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container icu4j-core-mojang-51.2.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file codecjorbis-20101023.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container codecjorbis-20101023.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file codecwav-20101023.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container codecwav-20101023.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file librarylwjglopenal-20100824.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container librarylwjglopenal-20100824.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file soundsystem-20120107.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container soundsystem-20120107.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file netty-all-4.0.10.Final.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container netty-all-4.0.10.Final.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file guava-17.0.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container guava-17.0.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file commons-lang3-3.3.2.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container commons-lang3-3.3.2.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file commons-io-2.4.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container commons-io-2.4.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file commons-codec-1.9.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container commons-codec-1.9.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file jinput-2.0.5.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container jinput-2.0.5.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file jutils-1.0.0.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container jutils-1.0.0.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file gson-2.2.4.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container gson-2.2.4.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file authlib-1.5.16.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container authlib-1.5.16.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file log4j-api-2.0-beta9.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container log4j-api-2.0-beta9.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file log4j-core-2.0-beta9.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container log4j-core-2.0-beta9.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file lwjgl-2.9.1.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container lwjgl-2.9.1.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file lwjgl_util-2.9.1.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container lwjgl_util-2.9.1.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file twitch-5.16.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container twitch-5.16.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file scala-actors-2.11.0.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container scala-actors-2.11.0.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-linux.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-linux.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-windows.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-windows.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-osx.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-osx.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-32.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-32.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-64.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-64.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-osx.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-osx.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-32.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-32.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-64.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-64.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-windows.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-windows.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-linux.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-linux.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-osx.jar for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-osx.jar appears to be missing an mcmod.info file -[13:30:01] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods -[13:30:01] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start -[13:30:01] [Client thread/TRACE] [FML/]: Recursing into package net -[13:30:01] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge -[13:30:01] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle -[13:30:01] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers -[13:30:01] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load -[13:30:01] [Client thread/TRACE] [FML/]: Received a system property request '' -[13:30:01] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods -[13:30:01] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods -[13:30:01] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar [cs_CZ, uk_UA, pt_BR, nl_NL, pt_PT, fi_FI, nn_NO, br_FR, es_ES, zh_TW, sl_SI, it_IT, hu_HU, el_GR, en_US, ro_RO, de_DE, fr_FR, ko_KR, tr_TR, nb_NO, ja_JP, fa_IR, sr_SP, zh_CN, sv_SE, ca_ES, he_IL, lt_LT, da_DK, ar_SA, pl_PL, ru_RU, no_NO, af_ZA, vi_VN, en_US, en_US] -[13:30:01] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar [cs_CZ, uk_UA, pt_BR, nl_NL, pt_PT, fi_FI, nn_NO, br_FR, es_ES, zh_TW, sl_SI, it_IT, hu_HU, el_GR, en_US, ro_RO, de_DE, fr_FR, ko_KR, tr_TR, nb_NO, ja_JP, fa_IR, sr_SP, zh_CN, sv_SE, ca_ES, he_IL, lt_LT, da_DK, ar_SA, pl_PL, ru_RU, no_NO, af_ZA, vi_VN, en_US, en_US] -[13:30:01] [Client thread/DEBUG] [kitsumedievalcraft/]: Enabling mod kitsumedievalcraft -[13:30:01] [Client thread/DEBUG] [FML/]: Injecting found translation assets for lang en_US at assets/kitsumedievalcraft/lang/en_US.lang into language system -[13:30:01] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied -[13:30:01] [Client thread/TRACE] [FML/]: All mod requirements are satisfied -[13:30:01] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list -[13:30:01] [Client thread/TRACE] [FML/]: Mod sorting completed successfully -[13:30:01] [Client thread/DEBUG] [FML/]: Mod sorting data -[13:30:01] [Client thread/DEBUG] [FML/]: kitsumedievalcraft(ForgeCraft:2.2.5): bin () -[13:30:01] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp -[13:30:01] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp -[13:30:01] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML -[13:30:01] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists -[13:30:01] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection -[13:30:01] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (7.10.99.99) -[13:30:01] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, kitsumedievalcraft] at CLIENT -[13:30:01] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, kitsumedievalcraft] at SERVER -[13:30:02] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML -[13:30:02] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge -[13:30:02] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed -[13:30:02] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection -[13:30:02] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (10.13.4.1448) -[13:30:02] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge -[13:30:02] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLConstructionEvent to mod kitsumedievalcraft -[13:30:02] [Client thread/TRACE] [FML/kitsumedievalcraft]: Mod kitsumedievalcraft is using network checker : Accepting version 2.2.5 -[13:30:02] [Client thread/TRACE] [FML/kitsumedievalcraft]: Testing mod kitsumedievalcraft to verify it accepts its own version in a remote connection -[13:30:02] [Client thread/TRACE] [FML/kitsumedievalcraft]: The mod kitsumedievalcraft accepts its own version (2.2.5) -[13:30:02] [Client thread/DEBUG] [FML/kitsumedievalcraft]: Attempting to inject @SidedProxy classes into kitsumedievalcraft -[13:30:02] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLConstructionEvent to mod kitsumedievalcraft -[13:30:02] [Client thread/DEBUG] [FML/]: Mod signature data -[13:30:02] [Client thread/DEBUG] [FML/]: Valid Signatures: -[13:30:02] [Client thread/DEBUG] [FML/]: Missing Signatures: -[13:30:02] [Client thread/DEBUG] [FML/]: mcp (Minecraft Coder Pack 9.05) minecraft.jar -[13:30:02] [Client thread/DEBUG] [FML/]: FML (Forge Mod Loader 7.10.99.99) forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar -[13:30:02] [Client thread/DEBUG] [FML/]: Forge (Minecraft Forge 10.13.4.1448) forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar -[13:30:02] [Client thread/DEBUG] [FML/]: kitsumedievalcraft (ForgeCraft 2.2.5) bin -[13:30:02] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one -[13:30:02] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one -[13:30:02] [Client thread/DEBUG] [ForgeCraft/]: Mod ForgeCraft is missing a pack.mcmeta file, substituting a dummy one -[13:30:02] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations -[13:30:02] [Client thread/INFO] [FML/]: Found 341 ObjectHolder annotations -[13:30:02] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations -[13:30:02] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations -[13:30:02] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp -[13:30:02] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp -[13:30:02] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML -[13:30:02] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML -[13:30:02] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge -[13:30:02] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0 -[13:30:02] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge -[13:30:02] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLPreInitializationEvent to mod kitsumedievalcraft -[13:30:02] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLPreInitializationEvent to mod kitsumedievalcraft -[13:30:02] [Client thread/INFO] [FML/]: Applying holder lookups -[13:30:02] [Client thread/INFO] [FML/]: Holder lookups applied -[13:30:02] [Client thread/INFO] [FML/]: Injecting itemstacks -[13:30:02] [Client thread/INFO] [FML/]: Itemstack injection complete -[13:30:02] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: -[13:30:02] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... -[13:30:02] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL -[13:30:02] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) -[13:30:02] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. -[13:30:03] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: -[13:30:03] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp -[13:30:03] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp -[13:30:03] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML -[13:30:03] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML -[13:30:03] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge -[13:30:03] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge -[13:30:03] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLInitializationEvent to mod kitsumedievalcraft -[13:30:03] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemShit as kitsumedievalcraft.itemShit -[13:30:03] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemModelArrow as kitsumedievalcraft.itemModelArrow -[13:30:03] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemTester as kitsumedievalcraft.itemTester -[13:30:03] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLInitializationEvent to mod kitsumedievalcraft -[13:30:03] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp -[13:30:03] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp -[13:30:03] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp -[13:30:03] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML -[13:30:03] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML -[13:30:03] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML -[13:30:03] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge -[13:30:03] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge -[13:30:03] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge -[13:30:03] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod kitsumedievalcraft -[13:30:03] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event IMCEvent to mod kitsumedievalcraft -[13:30:03] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event IMCEvent to mod kitsumedievalcraft -[13:30:03] [Client thread/INFO] [FML/]: Injecting itemstacks -[13:30:03] [Client thread/INFO] [FML/]: Itemstack injection complete -[13:30:03] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp -[13:30:03] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp -[13:30:03] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML -[13:30:03] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML -[13:30:03] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge -[13:30:03] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge -[13:30:03] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLPostInitializationEvent to mod kitsumedievalcraft -[13:30:03] [Client thread/INFO] [STDOUT/kitsumedievalcraft]: [com.kitsu.medievalcraft.Main:postInit:132]: U want some Body Massage? -[13:30:03] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLPostInitializationEvent to mod kitsumedievalcraft -[13:30:03] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp -[13:30:03] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp -[13:30:03] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML -[13:30:03] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML -[13:30:03] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge -[13:30:03] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking: -[13:30:03] [Client thread/DEBUG] [FML/Forge]: 11: RecipeEntry("Before", UNKNOWN, ) -[13:30:03] [Client thread/DEBUG] [FML/Forge]: 10: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless -[13:30:03] [Client thread/DEBUG] [FML/Forge]: 9: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped -[13:30:03] [Client thread/DEBUG] [FML/Forge]: 8: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped -[13:30:03] [Client thread/DEBUG] [FML/Forge]: 7: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped -[13:30:03] [Client thread/DEBUG] [FML/Forge]: 6: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless -[13:30:03] [Client thread/DEBUG] [FML/Forge]: 5: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless -[13:30:03] [Client thread/DEBUG] [FML/Forge]: 4: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless -[13:30:03] [Client thread/DEBUG] [FML/Forge]: 3: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless -[13:30:03] [Client thread/DEBUG] [FML/Forge]: 2: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless -[13:30:03] [Client thread/DEBUG] [FML/Forge]: 1: RecipeEntry("After", UNKNOWN, ) -[13:30:03] [Client thread/DEBUG] [FML/Forge]: Sorting recipies -[13:30:03] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge -[13:30:03] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLLoadCompleteEvent to mod kitsumedievalcraft -[13:30:03] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLLoadCompleteEvent to mod kitsumedievalcraft -[13:30:03] [Client thread/DEBUG] [FML/]: Freezing block and item id maps -[13:30:03] [Client thread/DEBUG] [FML/]: Registry consistency check successful -[13:30:03] [Client thread/DEBUG] [FML/]: Registry consistency check successful -[13:30:03] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods -[13:30:04] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: -[13:30:04] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... -[13:30:04] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com -[13:30:04] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: -[13:30:04] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: -[13:30:04] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... -[13:30:04] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one -[13:30:04] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one -[13:30:04] [Client thread/DEBUG] [ForgeCraft/]: Mod ForgeCraft is missing a pack.mcmeta file, substituting a dummy one -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: The following texture errors were found. -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: ================================================== -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: DOMAIN kitsumedievalcraft -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: -------------------------------------------------- -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: domain kitsumedievalcraft is missing 20 textures -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: domain kitsumedievalcraft has 1 location: -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: mod kitsumedievalcraft resources at /home/kitsudesktop/Development/ForgeCraft/bin -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: ------------------------- -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: The missing resources for domain kitsumedievalcraft are: -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/darkSplitLogIcon.png -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/slackWaterCrucible.png -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/customIronPickCase41.png -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/spruceSplitLogIcon.png -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/customIronPickCase52.png -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/gladius.png -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/boilingWaterCrucible.png -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/inlayHammer.png -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/itemTester.png -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/slottedTongs.png -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/itemIronTippedModelArrow.png -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/smallBarrel.png -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/jungleSplitLogIcon.png -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/battleAxe.png -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/testBlock.png -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/longbow.png -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/oakSplitLogIcon.png -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/smallBarrelLid.png -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/tanWaterCrucible.png -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/filledWaterCrucible.png -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: ------------------------- -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: No other errors exist for domain kitsumedievalcraft -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: ================================================== -[13:30:04] [Client thread/ERROR] [TEXTURE ERRORS/]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= -[13:30:04] [Thread-9/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL -[13:30:04] [Thread-9/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) -[13:30:04] [Thread-9/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. -[13:30:05] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: -[13:30:06] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerAboutToStartEvent to mod mcp -[13:30:06] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerAboutToStartEvent to mod mcp -[13:30:06] [Server thread/TRACE] [FML/FML]: Sending event FMLServerAboutToStartEvent to mod FML -[13:30:06] [Server thread/TRACE] [FML/FML]: Sent event FMLServerAboutToStartEvent to mod FML -[13:30:06] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerAboutToStartEvent to mod Forge -[13:30:06] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerAboutToStartEvent to mod Forge -[13:30:06] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLServerAboutToStartEvent to mod kitsumedievalcraft -[13:30:06] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLServerAboutToStartEvent to mod kitsumedievalcraft -[13:30:06] [Server thread/INFO] [FML/]: Injecting existing block and item data into this server instance -[13:30:06] [Server thread/DEBUG] [FML/]: Registry consistency check successful -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:cleanSpruce: 193 (init) -> 194 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:smallBarrelLid: 200 (init) -> 201 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:cleanOak: 188 (init) -> 189 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:crucibleWootz: 210 (init) -> 211 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:refinedIron: 213 (init) -> 214 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:filledWaterCrucible: 204 (init) -> 205 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:emptyCookedCrucible: 203 (init) -> 204 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:myEmerald: 219 (init) -> 220 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:lapisIngot: 217 (init) -> 218 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:forge: 187 (init) -> 188 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:oakSplitLog: 198 (init) -> 199 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:crucibleIronIngot: 209 (init) -> 210 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:tanWaterCrucible: 206 (init) -> 207 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:smallBarrel: 201 (init) -> 202 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:crucibleIronOre: 208 (init) -> 209 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:forgeAnvil: 182 (init) -> 183 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:crucibleLapis: 211 (init) -> 212 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:ironPlate: 215 (init) -> 216 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:slackWaterCrucible: 207 (init) -> 208 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:redstoneIngot: 216 (init) -> 217 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:emptySoftCrucible: 202 (init) -> 203 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:damascus: 214 (init) -> 215 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:spruceSplitLog: 199 (init) -> 200 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:waterFilter: 183 (init) -> 184 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:acaciaSplitLog: 194 (init) -> 195 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:firebox: 186 (init) -> 187 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:shelfFour: 185 (init) -> 186 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:jungleSplitLog: 197 (init) -> 198 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:crucibleRedstone: 212 (init) -> 213 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:cleanBirch: 192 (init) -> 193 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:darkSplitLog: 196 (init) -> 197 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:cleanAcacia: 189 (init) -> 190 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:cleanJungle: 190 (init) -> 191 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:myDiamond: 218 (init) -> 219 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:boilingWaterCrucible: 205 (init) -> 206 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:birchSplitLog: 195 (init) -> 196 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:solidFilter: 184 (init) -> 185 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:cleanDarkOak: 191 (init) -> 192 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:ironPlate: 215 (init) -> 216 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleStrongIronPick: 4302 (init) -> 4255 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:damascus: 214 (init) -> 215 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:cleanBirch: 192 (init) -> 193 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:smallBarrelLid: 200 (init) -> 201 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronLumberAxe: 4370 (init) -> 4250 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:solidFilter: 184 (init) -> 185 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:crucibleLapis: 211 (init) -> 212 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronLumberAxe3: 4369 (init) -> 4267 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronLumberAxe1: 4367 (init) -> 4268 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronLumberAxe2: 4368 (init) -> 4269 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronLumberAxe0: 4366 (init) -> 4270 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:crucibleRedstone: 212 (init) -> 213 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPick2: 4241 (init) -> 4260 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPick1: 4240 (init) -> 4259 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleIronShovel: 4364 (init) -> 4248 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase00: 4308 (init) -> 4376 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:filledWaterCrucible: 204 (init) -> 205 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPick4: 4243 (init) -> 4262 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPick3: 4242 (init) -> 4261 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:shelfFour: 185 (init) -> 186 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:cleanAcacia: 189 (init) -> 190 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleStrongIronShovel: 4365 (init) -> 4249 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:slackWaterCrucible: 207 (init) -> 208 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase6: 4251 (init) -> 4278 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase43: 4351 (init) -> 4378 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase5: 4250 (init) -> 4277 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase44: 4352 (init) -> 4377 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase4: 4249 (init) -> 4276 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase45: 4353 (init) -> 4365 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase3: 4248 (init) -> 4275 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase46: 4354 (init) -> 4364 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase9: 4254 (init) -> 4281 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase40: 4348 (init) -> 4373 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase8: 4253 (init) -> 4280 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase41: 4349 (init) -> 4375 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase7: 4252 (init) -> 4279 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase42: 4350 (init) -> 4374 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase47: 4355 (init) -> 4367 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase48: 4356 (init) -> 4366 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customWeakIronShovel: 4363 (init) -> 4247 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase49: 4357 (init) -> 4370 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customStrongIronLumberAxe: 4371 (init) -> 4251 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase2: 4247 (init) -> 4273 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase1: 4246 (init) -> 4274 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase0: 4244 (init) -> 4271 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase32: 4340 (init) -> 4363 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase33: 4341 (init) -> 4361 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase30: 4338 (init) -> 4356 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase31: 4339 (init) -> 4355 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase38: 4346 (init) -> 4348 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customStrongIronPick: 4299 (init) -> 4241 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:crucibleIronIngot: 209 (init) -> 210 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:crucibleWootz: 210 (init) -> 211 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleIronPick: 4301 (init) -> 4256 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:spruceSplitLog: 199 (init) -> 200 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:cleanOak: 188 (init) -> 189 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:emptyCookedCrucible: 203 (init) -> 204 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovel: 4361 (init) -> 4245 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:emptySoftCrucible: 202 (init) -> 203 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:cleanJungle: 190 (init) -> 191 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:firebox: 186 (init) -> 187 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:lapisIngot: 217 (init) -> 218 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleIronLumberAxe: 4373 (init) -> 4253 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customStrongIronShovel: 4362 (init) -> 4246 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleIronPickCase0: 4245 (init) -> 4272 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovel3: 4306 (init) -> 4263 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovel2: 4305 (init) -> 4264 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovel1: 4304 (init) -> 4265 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovel0: 4303 (init) -> 4266 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customWeakIronLumberAxe: 4372 (init) -> 4252 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:boilingWaterCrucible: 205 (init) -> 206 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:acaciaSplitLog: 194 (init) -> 195 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronHoe: 4375 (init) -> 4258 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPick: 4298 (init) -> 4240 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:smallBarrel: 201 (init) -> 202 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:birchSplitLog: 195 (init) -> 196 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:redstoneIngot: 216 (init) -> 217 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase28: 4273 (init) -> 4300 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase27: 4272 (init) -> 4301 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase29: 4274 (init) -> 4299 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase20: 4265 (init) -> 4294 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase22: 4267 (init) -> 4292 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase21: 4266 (init) -> 4293 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase24: 4269 (init) -> 4297 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase23: 4268 (init) -> 4298 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase26: 4271 (init) -> 4295 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase25: 4270 (init) -> 4296 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:tanWaterCrucible: 206 (init) -> 207 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:darkSplitLog: 196 (init) -> 197 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase17: 4262 (init) -> 4290 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase16: 4261 (init) -> 4291 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase19: 4264 (init) -> 4288 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase18: 4263 (init) -> 4289 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase11: 4256 (init) -> 4283 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase10: 4255 (init) -> 4282 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase13: 4258 (init) -> 4285 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleStrongIronLumberAxe: 4374 (init) -> 4254 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase12: 4257 (init) -> 4284 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase15: 4260 (init) -> 4286 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase14: 4259 (init) -> 4287 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase49: 4294 (init) -> 4349 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase42: 4287 (init) -> 4357 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase41: 4286 (init) -> 4362 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase44: 4289 (init) -> 4350 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase43: 4288 (init) -> 4351 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase46: 4291 (init) -> 4352 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase45: 4290 (init) -> 4353 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase48: 4293 (init) -> 4341 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase47: 4292 (init) -> 4346 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase40: 4285 (init) -> 4354 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase39: 4284 (init) -> 4371 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase38: 4283 (init) -> 4372 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase31: 4276 (init) -> 4305 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase30: 4275 (init) -> 4306 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase33: 4278 (init) -> 4302 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase32: 4277 (init) -> 4303 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase35: 4280 (init) -> 4307 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase34: 4279 (init) -> 4304 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase37: 4282 (init) -> 4368 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase36: 4281 (init) -> 4369 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:crucibleIronOre: 208 (init) -> 209 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:waterFilter: 183 (init) -> 184 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase52: 4297 (init) -> 4310 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase51: 4296 (init) -> 4308 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase50: 4295 (init) -> 4309 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:forge: 187 (init) -> 188 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase5: 4313 (init) -> 4339 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase6: 4314 (init) -> 4340 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customWeakIronPick: 4300 (init) -> 4257 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase0: 4307 (init) -> 4311 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase1: 4309 (init) -> 4312 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase2: 4310 (init) -> 4313 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase3: 4311 (init) -> 4314 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase4: 4312 (init) -> 4338 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:cleanDarkOak: 191 (init) -> 192 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:oakSplitLog: 198 (init) -> 199 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:myDiamond: 218 (init) -> 219 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:forgeAnvil: 182 (init) -> 183 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:refinedIron: 213 (init) -> 214 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:jungleSplitLog: 197 (init) -> 198 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:cleanSpruce: 193 (init) -> 194 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:myEmerald: 219 (init) -> 220 (map). -[13:30:06] [Server thread/DEBUG] [FML/]: Registry consistency check successful -[13:30:06] [Server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp -[13:30:06] [Server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp -[13:30:06] [Server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML -[13:30:06] [Server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML -[13:30:06] [Server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge -[13:30:06] [Server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge -[13:30:06] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLModIdMappingEvent to mod kitsumedievalcraft -[13:30:06] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLModIdMappingEvent to mod kitsumedievalcraft -[13:30:06] [Server thread/INFO] [FML/]: Applying holder lookups -[13:30:06] [Server thread/INFO] [FML/]: Holder lookups applied -[13:30:06] [Server thread/DEBUG] [FML/]: Loading persistent fluid defaults from world -[13:30:06] [Server thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava -[13:30:06] [Server thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water -[13:30:06] [Server thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blockslackedlime has been selected as the default fluid for blockslackedlime -[13:30:06] [Server thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blockfilteredwater has been selected as the default fluid for blockfilteredwater -[13:30:06] [Server thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blocksmoke has been selected as the default fluid for blocksmoke -[13:30:06] [Server thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blocktannin has been selected as the default fluid for blocktannin -[13:30:06] [Server thread/INFO] [FML/]: Loading dimension 0 (Demo World) (net.minecraft.server.integrated.IntegratedServer@6d4ab2da) -[13:30:06] [Server thread/INFO] [FML/]: Loading dimension 1 (Demo World) (net.minecraft.server.integrated.IntegratedServer@6d4ab2da) -[13:30:07] [Server thread/INFO] [FML/]: Loading dimension -1 (Demo World) (net.minecraft.server.integrated.IntegratedServer@6d4ab2da) -[13:30:07] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartingEvent to mod mcp -[13:30:07] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartingEvent to mod mcp -[13:30:07] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStartingEvent to mod FML -[13:30:07] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStartingEvent to mod FML -[13:30:07] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartingEvent to mod Forge -[13:30:07] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartingEvent to mod Forge -[13:30:07] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLServerStartingEvent to mod kitsumedievalcraft -[13:30:07] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLServerStartingEvent to mod kitsumedievalcraft -[13:30:07] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartedEvent to mod mcp -[13:30:07] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartedEvent to mod mcp -[13:30:07] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStartedEvent to mod FML -[13:30:07] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStartedEvent to mod FML -[13:30:07] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartedEvent to mod Forge -[13:30:07] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartedEvent to mod Forge -[13:30:07] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLServerStartedEvent to mod kitsumedievalcraft -[13:30:07] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLServerStartedEvent to mod kitsumedievalcraft -[13:30:07] [Netty Client IO #0/DEBUG] [FML/]: Server FML protocol version 2, 4 byte dimension received 0 -[13:30:07] [Netty Client IO #0/TRACE] [FML/]: $ServerHello->FMLHandshakeClientState$2:HELLO -[13:30:07] [Netty Client IO #0/INFO] [FML/]: Server protocol version 2 -[13:30:07] [Netty Client IO #0/DEBUG] [FML/]: Received override dimension 0 -[13:30:07] [Netty IO #1/TRACE] [FML/]: $ClientHello->FMLHandshakeServerState$2:HELLO -[13:30:07] [Netty IO #1/INFO] [FML/]: Client protocol version 2 -[13:30:07] [Netty IO #1/TRACE] [FML/]: $ModList:4 mods->FMLHandshakeServerState$2:HELLO -[13:30:07] [Netty IO #1/INFO] [FML/]: Client attempting to join with 4 mods : FML@7.10.99.99,kitsumedievalcraft@2.2.5,Forge@10.13.4.1448,mcp@9.05 -[13:30:07] [Netty IO #1/INFO] [FML/]: Attempting connection with missing mods [] at CLIENT -[13:30:07] [Netty Client IO #0/TRACE] [FML/]: $ModList:4 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA -[13:30:07] [Netty Client IO #0/INFO] [FML/]: Attempting connection with missing mods [] at SERVER -[13:30:07] [Netty IO #1/TRACE] [FML/]: $HandshakeAck:{2}->FMLHandshakeServerState$3:WAITINGCACK -[13:30:07] [Netty Client IO #0/TRACE] [FML/]: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE -[13:30:07] [Netty IO #1/TRACE] [FML/]: $HandshakeAck:{4}->FMLHandshakeServerState$4:COMPLETE -[13:30:07] [Netty Client IO #0/TRACE] [FML/]: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE -[13:30:07] [Netty IO #1/TRACE] [FML/]: $HandshakeAck:{5}->FMLHandshakeServerState$5:DONE -[13:30:07] [Server thread/INFO] [FML/]: [Server thread] Server side modded connection established -[13:30:07] [Client thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava -[13:30:07] [Client thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water -[13:30:07] [Client thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blockslackedlime has been selected as the default fluid for blockslackedlime -[13:30:07] [Client thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blockfilteredwater has been selected as the default fluid for blockfilteredwater -[13:30:07] [Client thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blocksmoke has been selected as the default fluid for blocksmoke -[13:30:07] [Client thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blocktannin has been selected as the default fluid for blocktannin -[13:30:07] [Client thread/INFO] [FML/]: [Client thread] Client side modded connection established -[13:30:07] [Client thread/DEBUG] [FML/]: Overriding dimension: using 0 -[13:30:51] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: -[13:30:51] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... -[13:30:51] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppingEvent to mod mcp -[13:30:51] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppingEvent to mod mcp -[13:30:51] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStoppingEvent to mod FML -[13:30:51] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStoppingEvent to mod FML -[13:30:51] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppingEvent to mod Forge -[13:30:51] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppingEvent to mod Forge -[13:30:51] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLServerStoppingEvent to mod kitsumedievalcraft -[13:30:51] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLServerStoppingEvent to mod kitsumedievalcraft -[13:30:51] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Demo World -[13:30:51] [Server thread/INFO] [FML/]: Unloading dimension 0 -[13:30:51] [Server thread/INFO] [FML/]: Unloading dimension -1 -[13:30:51] [Server thread/INFO] [FML/]: Unloading dimension 1 -[13:30:51] [Server thread/DEBUG] [FML/]: Reverting to frozen data state. -[13:30:51] [Server thread/INFO] [FML/]: Applying holder lookups -[13:30:51] [Server thread/INFO] [FML/]: Holder lookups applied -[13:30:51] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppedEvent to mod mcp -[13:30:51] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppedEvent to mod mcp -[13:30:51] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStoppedEvent to mod FML -[13:30:51] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStoppedEvent to mod FML -[13:30:51] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppedEvent to mod Forge -[13:30:51] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppedEvent to mod Forge -[13:30:51] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLServerStoppedEvent to mod kitsumedievalcraft -[13:30:51] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLServerStoppedEvent to mod kitsumedievalcraft -[13:30:51] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com -[13:30:51] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[18:56:10] [Client thread/INFO] [MinecraftForge/]: Attempting early MinecraftForge initialization +[18:56:10] [Client thread/INFO] [FML/]: MinecraftForge v10.13.4.1448 Initialized +[18:56:10] [Client thread/INFO] [FML/]: Replaced 183 ore recipies +[18:56:10] [Client thread/INFO] [MinecraftForge/]: Completed early MinecraftForge initialization +[18:56:10] [Client thread/DEBUG] [FML/]: File /home/kitsudesktop/Development/ForgeCraft/eclipse/config/injectedDependencies.json not found. No dependencies injected +[18:56:10] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [cpw.mods.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer] +[18:56:10] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/kitsudesktop/Development/ForgeCraft/bin, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.11/9c0592c6e1e9ea296a70948081bd4cc84dda1289/launchwrapper-1.11.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/1.3.9/40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf/jsr305-1.3.9.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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 +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-xml_2.11/1.0.2/7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0/scala-xml_2.11-1.0.2.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.5/6065cc95c661255349c1d0756657be17c29a4fd3/jopt-simple-4.5.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.3.5/807ae355ee63583becd7ea60e76aab1532bb42e/realms-1.3.5.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.3.1/a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d/vecmath-1.3.1.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.10.Final/9e50bd52ffe257a0e2cd8d971688d6ce7d174325/netty-all-4.0.10.Final.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.16/ef1582b11fd0943d069cdcb72e99008ac209a283/authlib-1.5.16.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.1/f58c5aabcef0e41718a564be9f8e412fff8db847/lwjgl-2.9.1.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.1/290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e/lwjgl_util-2.9.1.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/5.16/1f55f009c61637c10c0acfb8b5ffc600f30044b4/twitch-5.16.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.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, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/7c6affe439099806a4f552da14c42f9d643d8b23/twitch-platform-5.16-natives-windows-32.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/39d0c3d363735b4785598e0e7fbf8297c706a9f9/twitch-platform-5.16-natives-windows-64.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/5.16/62503ee712766cf77f97252e5902786fd834b8c5/twitch-platform-5.16-natives-osx.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/4c517eca808522457dd95ee8fc1fbcdbb602efbe/lwjgl-platform-2.9.1-natives-windows.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/aa9aae879af8eb378e22cfc64db56ec2ca9a44d1/lwjgl-platform-2.9.1-natives-linux.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/kitsudesktop/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.1/2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac/lwjgl-platform-2.9.1-natives-osx.jar, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/start, examining for mod candidates +[18:56:10] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully +[18:56:10] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer +[18:56:10] [Client thread/INFO] [FML/]: Searching /home/kitsudesktop/Development/ForgeCraft/eclipse/mods for mods +[18:56:10] [Client thread/DEBUG] [FML/]: Examining directory bin for potential mods +[18:56:10] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory bin +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package assets +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.lang +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.models +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.sounds +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.blocks +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.gui +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package assets.kitsumedievalcraft.textures.items +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft +[18:56:10] [Client thread/DEBUG] [FML/]: Identified a mod of type Lcpw/mods/fml/common/Mod; (com.kitsu.medievalcraft.Main) - loading +[18:56:10] [Client thread/TRACE] [kitsumedievalcraft/]: Parsed dependency info : [] [] [] +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.crucible +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.crucible.empty +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.decorative +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.fluid +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.ingots +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.machines +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood.clean +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.block.wood.quartersplit +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.compat +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.contain +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.crafting +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.entity +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.entityAI +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.events +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.gui +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.craftingtools +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.craftingtools.filters +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms.clay +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.forms.iron +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.misc +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.throwable +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.tools +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.item.weapon +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.curedLeather +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.forge +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.forgeHammerParticles +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.sandFilterRender +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.packethandle.shelf +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.player +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.crucibles +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.emptycrucibles +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.ingot +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.blocks.machine +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.crucibles +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.crucibles.empty +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.ingotsplates +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.longbow +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.machines +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.tongs +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.tools +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.renderer.itemrenderer.weapons +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.crucible +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.crucible.empty +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.ingots +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.tileents.machine +[18:56:10] [Client thread/TRACE] [FML/]: Recursing into package com.kitsu.medievalcraft.util +[18:56:10] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar for potential mods +[18:56:10] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar appears to be missing an mcmod.info file +[18:56:10] [Client thread/DEBUG] [FML/]: Examining file launchwrapper-1.11.jar for potential mods +[18:56:10] [Client thread/DEBUG] [FML/]: The mod container launchwrapper-1.11.jar appears to be missing an mcmod.info file +[18:56:10] [Client thread/DEBUG] [FML/]: Examining file jsr305-1.3.9.jar for potential mods +[18:56:10] [Client thread/DEBUG] [FML/]: The mod container jsr305-1.3.9.jar appears to be missing an mcmod.info file +[18:56:10] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods +[18:56:10] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file +[18:56:10] [Client thread/DEBUG] [FML/]: Examining file akka-actor_2.11-2.3.3.jar for potential mods +[18:56:10] [Client thread/DEBUG] [FML/]: The mod container akka-actor_2.11-2.3.3.jar appears to be missing an mcmod.info file +[18:56:10] [Client thread/DEBUG] [FML/]: Examining file config-1.2.1.jar for potential mods +[18:56:10] [Client thread/DEBUG] [FML/]: The mod container config-1.2.1.jar appears to be missing an mcmod.info file +[18:56:10] [Client thread/DEBUG] [FML/]: Examining file scala-actors-migration_2.11-1.1.0.jar for potential mods +[18:56:10] [Client thread/DEBUG] [FML/]: The mod container scala-actors-migration_2.11-1.1.0.jar appears to be missing an mcmod.info file +[18:56:10] [Client thread/DEBUG] [FML/]: Examining file scala-compiler-2.11.1.jar for potential mods +[18:56:10] [Client thread/DEBUG] [FML/]: The mod container scala-compiler-2.11.1.jar appears to be missing an mcmod.info file +[18:56:10] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-library_2.11-1.0.2.jar for potential mods +[18:56:10] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-library_2.11-1.0.2.jar appears to be missing an mcmod.info file +[18:56:10] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-plugin_2.11.1-1.0.2.jar for potential mods +[18:56:10] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-plugin_2.11.1-1.0.2.jar appears to be missing an mcmod.info file +[18:56:10] [Client thread/DEBUG] [FML/]: Examining file scala-library-2.11.1.jar for potential mods +[18:56:10] [Client thread/DEBUG] [FML/]: The mod container scala-library-2.11.1.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file scala-reflect-2.11.1.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container scala-reflect-2.11.1.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file scala-swing_2.11-1.0.1.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container scala-swing_2.11-1.0.1.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file jopt-simple-4.5.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container jopt-simple-4.5.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file lzma-0.0.1.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container lzma-0.0.1.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file realms-1.3.5.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container realms-1.3.5.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file commons-compress-1.8.1.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container commons-compress-1.8.1.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file httpclient-4.3.3.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container httpclient-4.3.3.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file commons-logging-1.1.3.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container commons-logging-1.1.3.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file httpcore-4.3.2.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container httpcore-4.3.2.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file vecmath-1.3.1.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container vecmath-1.3.1.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file trove4j-3.0.3.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container trove4j-3.0.3.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file icu4j-core-mojang-51.2.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container icu4j-core-mojang-51.2.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file codecjorbis-20101023.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container codecjorbis-20101023.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file codecwav-20101023.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container codecwav-20101023.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file librarylwjglopenal-20100824.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container librarylwjglopenal-20100824.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file soundsystem-20120107.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container soundsystem-20120107.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file netty-all-4.0.10.Final.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container netty-all-4.0.10.Final.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file guava-17.0.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container guava-17.0.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file commons-lang3-3.3.2.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container commons-lang3-3.3.2.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file commons-io-2.4.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container commons-io-2.4.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file commons-codec-1.9.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container commons-codec-1.9.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file jinput-2.0.5.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container jinput-2.0.5.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file jutils-1.0.0.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container jutils-1.0.0.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file gson-2.2.4.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container gson-2.2.4.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file authlib-1.5.16.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container authlib-1.5.16.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file log4j-api-2.0-beta9.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container log4j-api-2.0-beta9.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file log4j-core-2.0-beta9.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container log4j-core-2.0-beta9.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file lwjgl-2.9.1.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container lwjgl-2.9.1.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file lwjgl_util-2.9.1.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container lwjgl_util-2.9.1.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file twitch-5.16.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container twitch-5.16.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file scala-actors-2.11.0.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container scala-actors-2.11.0.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-linux.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-linux.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-windows.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-windows.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-osx.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-osx.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-32.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-32.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-64.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-64.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-osx.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-osx.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-32.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-32.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-64.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-64.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-windows.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-windows.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-linux.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-linux.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-osx.jar for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-osx.jar appears to be missing an mcmod.info file +[18:56:11] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods +[18:56:11] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start +[18:56:11] [Client thread/TRACE] [FML/]: Recursing into package net +[18:56:11] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge +[18:56:11] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle +[18:56:11] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers +[18:56:11] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load +[18:56:11] [Client thread/TRACE] [FML/]: Received a system property request '' +[18:56:11] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods +[18:56:11] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods +[18:56:11] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar [cs_CZ, uk_UA, pt_BR, nl_NL, pt_PT, fi_FI, nn_NO, br_FR, es_ES, zh_TW, sl_SI, it_IT, hu_HU, el_GR, en_US, ro_RO, de_DE, fr_FR, ko_KR, tr_TR, nb_NO, ja_JP, fa_IR, sr_SP, zh_CN, sv_SE, ca_ES, he_IL, lt_LT, da_DK, ar_SA, pl_PL, ru_RU, no_NO, af_ZA, vi_VN, en_US, en_US] +[18:56:11] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar [cs_CZ, uk_UA, pt_BR, nl_NL, pt_PT, fi_FI, nn_NO, br_FR, es_ES, zh_TW, sl_SI, it_IT, hu_HU, el_GR, en_US, ro_RO, de_DE, fr_FR, ko_KR, tr_TR, nb_NO, ja_JP, fa_IR, sr_SP, zh_CN, sv_SE, ca_ES, he_IL, lt_LT, da_DK, ar_SA, pl_PL, ru_RU, no_NO, af_ZA, vi_VN, en_US, en_US] +[18:56:11] [Client thread/DEBUG] [kitsumedievalcraft/]: Enabling mod kitsumedievalcraft +[18:56:11] [Client thread/DEBUG] [FML/]: Injecting found translation assets for lang en_US at assets/kitsumedievalcraft/lang/en_US.lang into language system +[18:56:11] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied +[18:56:11] [Client thread/TRACE] [FML/]: All mod requirements are satisfied +[18:56:11] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list +[18:56:11] [Client thread/TRACE] [FML/]: Mod sorting completed successfully +[18:56:11] [Client thread/DEBUG] [FML/]: Mod sorting data +[18:56:11] [Client thread/DEBUG] [FML/]: kitsumedievalcraft(ForgeCraft:2.2.5): bin () +[18:56:11] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp +[18:56:11] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp +[18:56:11] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML +[18:56:11] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists +[18:56:11] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection +[18:56:11] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (7.10.99.99) +[18:56:11] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, kitsumedievalcraft] at CLIENT +[18:56:11] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, kitsumedievalcraft] at SERVER +[18:56:11] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML +[18:56:11] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge +[18:56:11] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed +[18:56:11] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection +[18:56:11] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (10.13.4.1448) +[18:56:11] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge +[18:56:11] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLConstructionEvent to mod kitsumedievalcraft +[18:56:11] [Client thread/TRACE] [FML/kitsumedievalcraft]: Mod kitsumedievalcraft is using network checker : Accepting version 2.2.5 +[18:56:11] [Client thread/TRACE] [FML/kitsumedievalcraft]: Testing mod kitsumedievalcraft to verify it accepts its own version in a remote connection +[18:56:11] [Client thread/TRACE] [FML/kitsumedievalcraft]: The mod kitsumedievalcraft accepts its own version (2.2.5) +[18:56:11] [Client thread/DEBUG] [FML/kitsumedievalcraft]: Attempting to inject @SidedProxy classes into kitsumedievalcraft +[18:56:11] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLConstructionEvent to mod kitsumedievalcraft +[18:56:11] [Client thread/DEBUG] [FML/]: Mod signature data +[18:56:11] [Client thread/DEBUG] [FML/]: Valid Signatures: +[18:56:11] [Client thread/DEBUG] [FML/]: Missing Signatures: +[18:56:11] [Client thread/DEBUG] [FML/]: mcp (Minecraft Coder Pack 9.05) minecraft.jar +[18:56:11] [Client thread/DEBUG] [FML/]: FML (Forge Mod Loader 7.10.99.99) forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar +[18:56:11] [Client thread/DEBUG] [FML/]: Forge (Minecraft Forge 10.13.4.1448) forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar +[18:56:11] [Client thread/DEBUG] [FML/]: kitsumedievalcraft (ForgeCraft 2.2.5) bin +[18:56:11] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one +[18:56:11] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one +[18:56:11] [Client thread/DEBUG] [ForgeCraft/]: Mod ForgeCraft is missing a pack.mcmeta file, substituting a dummy one +[18:56:11] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations +[18:56:11] [Client thread/INFO] [FML/]: Found 341 ObjectHolder annotations +[18:56:11] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations +[18:56:11] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations +[18:56:11] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp +[18:56:11] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp +[18:56:11] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML +[18:56:11] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML +[18:56:11] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge +[18:56:12] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0 +[18:56:12] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge +[18:56:12] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLPreInitializationEvent to mod kitsumedievalcraft +[18:56:12] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLPreInitializationEvent to mod kitsumedievalcraft +[18:56:12] [Client thread/INFO] [FML/]: Applying holder lookups +[18:56:12] [Client thread/INFO] [FML/]: Holder lookups applied +[18:56:12] [Client thread/INFO] [FML/]: Injecting itemstacks +[18:56:12] [Client thread/INFO] [FML/]: Itemstack injection complete +[18:56:12] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[18:56:12] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... +[18:56:12] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL +[18:56:12] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) +[18:56:12] [Thread-7/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. +[18:56:12] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[18:56:13] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp +[18:56:13] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp +[18:56:13] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML +[18:56:13] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML +[18:56:13] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge +[18:56:13] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge +[18:56:13] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLInitializationEvent to mod kitsumedievalcraft +[18:56:13] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemShit as kitsumedievalcraft.itemShit +[18:56:13] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemModelArrow as kitsumedievalcraft.itemModelArrow +[18:56:13] [Client thread/TRACE] [FML/kitsumedievalcraft]: Automatically registered mod kitsumedievalcraft entity itemTester as kitsumedievalcraft.itemTester +[18:56:13] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLInitializationEvent to mod kitsumedievalcraft +[18:56:13] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp +[18:56:13] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp +[18:56:13] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp +[18:56:13] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML +[18:56:13] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML +[18:56:13] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML +[18:56:13] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge +[18:56:13] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge +[18:56:13] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge +[18:56:13] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod kitsumedievalcraft +[18:56:13] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event IMCEvent to mod kitsumedievalcraft +[18:56:13] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event IMCEvent to mod kitsumedievalcraft +[18:56:13] [Client thread/INFO] [FML/]: Injecting itemstacks +[18:56:13] [Client thread/INFO] [FML/]: Itemstack injection complete +[18:56:13] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp +[18:56:13] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp +[18:56:13] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML +[18:56:13] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML +[18:56:13] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge +[18:56:13] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge +[18:56:13] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLPostInitializationEvent to mod kitsumedievalcraft +[18:56:13] [Client thread/INFO] [STDOUT/kitsumedievalcraft]: [com.kitsu.medievalcraft.Main:postInit:132]: U want some Body Massage? +[18:56:13] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLPostInitializationEvent to mod kitsumedievalcraft +[18:56:13] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp +[18:56:13] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp +[18:56:13] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML +[18:56:13] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML +[18:56:13] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge +[18:56:13] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking: +[18:56:13] [Client thread/DEBUG] [FML/Forge]: 11: RecipeEntry("Before", UNKNOWN, ) +[18:56:13] [Client thread/DEBUG] [FML/Forge]: 10: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless +[18:56:13] [Client thread/DEBUG] [FML/Forge]: 9: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped +[18:56:13] [Client thread/DEBUG] [FML/Forge]: 8: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped +[18:56:13] [Client thread/DEBUG] [FML/Forge]: 7: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped +[18:56:13] [Client thread/DEBUG] [FML/Forge]: 6: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless +[18:56:13] [Client thread/DEBUG] [FML/Forge]: 5: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless +[18:56:13] [Client thread/DEBUG] [FML/Forge]: 4: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless +[18:56:13] [Client thread/DEBUG] [FML/Forge]: 3: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless +[18:56:13] [Client thread/DEBUG] [FML/Forge]: 2: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless +[18:56:13] [Client thread/DEBUG] [FML/Forge]: 1: RecipeEntry("After", UNKNOWN, ) +[18:56:13] [Client thread/DEBUG] [FML/Forge]: Sorting recipies +[18:56:13] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge +[18:56:13] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLLoadCompleteEvent to mod kitsumedievalcraft +[18:56:13] [Client thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLLoadCompleteEvent to mod kitsumedievalcraft +[18:56:13] [Client thread/DEBUG] [FML/]: Freezing block and item id maps +[18:56:13] [Client thread/DEBUG] [FML/]: Registry consistency check successful +[18:56:13] [Client thread/DEBUG] [FML/]: Registry consistency check successful +[18:56:13] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods +[18:56:13] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[18:56:13] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... +[18:56:14] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com +[18:56:14] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[18:56:14] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[18:56:14] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... +[18:56:14] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one +[18:56:14] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one +[18:56:14] [Client thread/DEBUG] [ForgeCraft/]: Mod ForgeCraft is missing a pack.mcmeta file, substituting a dummy one +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: The following texture errors were found. +[18:56:14] [Thread-9/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL +[18:56:14] [Thread-9/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: ================================================== +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: DOMAIN kitsumedievalcraft +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: -------------------------------------------------- +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: domain kitsumedievalcraft is missing 20 textures +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: domain kitsumedievalcraft has 1 location: +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: mod kitsumedievalcraft resources at /home/kitsudesktop/Development/ForgeCraft/bin +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: ------------------------- +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: The missing resources for domain kitsumedievalcraft are: +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/darkSplitLogIcon.png +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/slackWaterCrucible.png +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/customIronPickCase41.png +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/spruceSplitLogIcon.png +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/customIronPickCase52.png +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/gladius.png +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/boilingWaterCrucible.png +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/inlayHammer.png +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/itemTester.png +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/slottedTongs.png +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/itemIronTippedModelArrow.png +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/smallBarrel.png +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/jungleSplitLogIcon.png +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/battleAxe.png +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/testBlock.png +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/items/longbow.png +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/oakSplitLogIcon.png +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/smallBarrelLid.png +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/tanWaterCrucible.png +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: textures/blocks/filledWaterCrucible.png +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: ------------------------- +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: No other errors exist for domain kitsumedievalcraft +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: ================================================== +[18:56:14] [Client thread/ERROR] [TEXTURE ERRORS/]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= +[18:56:14] [Thread-9/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. +[18:56:14] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[18:56:18] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerAboutToStartEvent to mod mcp +[18:56:18] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerAboutToStartEvent to mod mcp +[18:56:18] [Server thread/TRACE] [FML/FML]: Sending event FMLServerAboutToStartEvent to mod FML +[18:56:18] [Server thread/TRACE] [FML/FML]: Sent event FMLServerAboutToStartEvent to mod FML +[18:56:18] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerAboutToStartEvent to mod Forge +[18:56:18] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerAboutToStartEvent to mod Forge +[18:56:18] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLServerAboutToStartEvent to mod kitsumedievalcraft +[18:56:18] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLServerAboutToStartEvent to mod kitsumedievalcraft +[18:56:18] [Server thread/INFO] [FML/]: Injecting existing block and item data into this server instance +[18:56:18] [Server thread/DEBUG] [FML/]: Registry consistency check successful +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:cleanSpruce: 193 (init) -> 194 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:smallBarrelLid: 200 (init) -> 201 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:cleanOak: 188 (init) -> 189 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:crucibleWootz: 210 (init) -> 211 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:refinedIron: 213 (init) -> 214 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:filledWaterCrucible: 204 (init) -> 205 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:emptyCookedCrucible: 203 (init) -> 204 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:myEmerald: 219 (init) -> 220 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:lapisIngot: 217 (init) -> 218 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:forge: 187 (init) -> 188 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:oakSplitLog: 198 (init) -> 199 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:crucibleIronIngot: 209 (init) -> 210 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:tanWaterCrucible: 206 (init) -> 207 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:smallBarrel: 201 (init) -> 202 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:crucibleIronOre: 208 (init) -> 209 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:forgeAnvil: 182 (init) -> 183 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:crucibleLapis: 211 (init) -> 212 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:ironPlate: 215 (init) -> 216 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:slackWaterCrucible: 207 (init) -> 208 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:redstoneIngot: 216 (init) -> 217 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:emptySoftCrucible: 202 (init) -> 203 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:damascus: 214 (init) -> 215 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:spruceSplitLog: 199 (init) -> 200 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:waterFilter: 183 (init) -> 184 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:acaciaSplitLog: 194 (init) -> 195 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:firebox: 186 (init) -> 187 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:shelfFour: 185 (init) -> 186 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:jungleSplitLog: 197 (init) -> 198 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:crucibleRedstone: 212 (init) -> 213 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:cleanBirch: 192 (init) -> 193 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:darkSplitLog: 196 (init) -> 197 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:cleanAcacia: 189 (init) -> 190 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:cleanJungle: 190 (init) -> 191 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:myDiamond: 218 (init) -> 219 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:boilingWaterCrucible: 205 (init) -> 206 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:birchSplitLog: 195 (init) -> 196 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:solidFilter: 184 (init) -> 185 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed block id mismatch kitsumedievalcraft:cleanDarkOak: 191 (init) -> 192 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:ironPlate: 215 (init) -> 216 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleStrongIronPick: 4302 (init) -> 4255 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:damascus: 214 (init) -> 215 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:cleanBirch: 192 (init) -> 193 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:smallBarrelLid: 200 (init) -> 201 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronLumberAxe: 4370 (init) -> 4250 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:solidFilter: 184 (init) -> 185 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:crucibleLapis: 211 (init) -> 212 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronLumberAxe3: 4369 (init) -> 4267 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronLumberAxe1: 4367 (init) -> 4268 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronLumberAxe2: 4368 (init) -> 4269 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronLumberAxe0: 4366 (init) -> 4270 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:crucibleRedstone: 212 (init) -> 213 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPick2: 4241 (init) -> 4260 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPick1: 4240 (init) -> 4259 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleIronShovel: 4364 (init) -> 4248 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase00: 4308 (init) -> 4376 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:filledWaterCrucible: 204 (init) -> 205 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPick4: 4243 (init) -> 4262 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPick3: 4242 (init) -> 4261 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:shelfFour: 185 (init) -> 186 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:cleanAcacia: 189 (init) -> 190 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleStrongIronShovel: 4365 (init) -> 4249 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:slackWaterCrucible: 207 (init) -> 208 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase6: 4251 (init) -> 4278 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase43: 4351 (init) -> 4378 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase5: 4250 (init) -> 4277 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase44: 4352 (init) -> 4377 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase4: 4249 (init) -> 4276 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase45: 4353 (init) -> 4365 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase3: 4248 (init) -> 4275 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase46: 4354 (init) -> 4364 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase9: 4254 (init) -> 4281 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase40: 4348 (init) -> 4373 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase8: 4253 (init) -> 4280 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase41: 4349 (init) -> 4375 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase7: 4252 (init) -> 4279 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase42: 4350 (init) -> 4374 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase47: 4355 (init) -> 4367 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase48: 4356 (init) -> 4366 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customWeakIronShovel: 4363 (init) -> 4247 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase49: 4357 (init) -> 4370 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customStrongIronLumberAxe: 4371 (init) -> 4251 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase2: 4247 (init) -> 4273 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase1: 4246 (init) -> 4274 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase0: 4244 (init) -> 4271 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase32: 4340 (init) -> 4363 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase33: 4341 (init) -> 4361 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase30: 4338 (init) -> 4356 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase31: 4339 (init) -> 4355 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase38: 4346 (init) -> 4348 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customStrongIronPick: 4299 (init) -> 4241 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:crucibleIronIngot: 209 (init) -> 210 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:crucibleWootz: 210 (init) -> 211 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleIronPick: 4301 (init) -> 4256 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:spruceSplitLog: 199 (init) -> 200 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:cleanOak: 188 (init) -> 189 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:emptyCookedCrucible: 203 (init) -> 204 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovel: 4361 (init) -> 4245 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:emptySoftCrucible: 202 (init) -> 203 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:cleanJungle: 190 (init) -> 191 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:firebox: 186 (init) -> 187 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:lapisIngot: 217 (init) -> 218 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleIronLumberAxe: 4373 (init) -> 4253 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customStrongIronShovel: 4362 (init) -> 4246 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleIronPickCase0: 4245 (init) -> 4272 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovel3: 4306 (init) -> 4263 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovel2: 4305 (init) -> 4264 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovel1: 4304 (init) -> 4265 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovel0: 4303 (init) -> 4266 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customWeakIronLumberAxe: 4372 (init) -> 4252 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:boilingWaterCrucible: 205 (init) -> 206 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:acaciaSplitLog: 194 (init) -> 195 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronHoe: 4375 (init) -> 4258 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPick: 4298 (init) -> 4240 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:smallBarrel: 201 (init) -> 202 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:birchSplitLog: 195 (init) -> 196 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:redstoneIngot: 216 (init) -> 217 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase28: 4273 (init) -> 4300 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase27: 4272 (init) -> 4301 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase29: 4274 (init) -> 4299 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase20: 4265 (init) -> 4294 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase22: 4267 (init) -> 4292 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase21: 4266 (init) -> 4293 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase24: 4269 (init) -> 4297 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase23: 4268 (init) -> 4298 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase26: 4271 (init) -> 4295 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase25: 4270 (init) -> 4296 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:tanWaterCrucible: 206 (init) -> 207 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:darkSplitLog: 196 (init) -> 197 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase17: 4262 (init) -> 4290 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase16: 4261 (init) -> 4291 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase19: 4264 (init) -> 4288 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase18: 4263 (init) -> 4289 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase11: 4256 (init) -> 4283 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase10: 4255 (init) -> 4282 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase13: 4258 (init) -> 4285 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customHandleStrongIronLumberAxe: 4374 (init) -> 4254 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase12: 4257 (init) -> 4284 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase15: 4260 (init) -> 4286 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase14: 4259 (init) -> 4287 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase49: 4294 (init) -> 4349 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase42: 4287 (init) -> 4357 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase41: 4286 (init) -> 4362 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase44: 4289 (init) -> 4350 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase43: 4288 (init) -> 4351 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase46: 4291 (init) -> 4352 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase45: 4290 (init) -> 4353 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase48: 4293 (init) -> 4341 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase47: 4292 (init) -> 4346 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase40: 4285 (init) -> 4354 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase39: 4284 (init) -> 4371 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase38: 4283 (init) -> 4372 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase31: 4276 (init) -> 4305 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase30: 4275 (init) -> 4306 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase33: 4278 (init) -> 4302 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase32: 4277 (init) -> 4303 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase35: 4280 (init) -> 4307 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase34: 4279 (init) -> 4304 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase37: 4282 (init) -> 4368 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase36: 4281 (init) -> 4369 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:crucibleIronOre: 208 (init) -> 209 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:waterFilter: 183 (init) -> 184 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase52: 4297 (init) -> 4310 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase51: 4296 (init) -> 4308 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronPickCase50: 4295 (init) -> 4309 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:forge: 187 (init) -> 188 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase5: 4313 (init) -> 4339 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase6: 4314 (init) -> 4340 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customWeakIronPick: 4300 (init) -> 4257 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase0: 4307 (init) -> 4311 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase1: 4309 (init) -> 4312 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase2: 4310 (init) -> 4313 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase3: 4311 (init) -> 4314 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:customIronShovelCase4: 4312 (init) -> 4338 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:cleanDarkOak: 191 (init) -> 192 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:oakSplitLog: 198 (init) -> 199 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:myDiamond: 218 (init) -> 219 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:forgeAnvil: 182 (init) -> 183 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:refinedIron: 213 (init) -> 214 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:jungleSplitLog: 197 (init) -> 198 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:cleanSpruce: 193 (init) -> 194 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Fixed item id mismatch kitsumedievalcraft:myEmerald: 219 (init) -> 220 (map). +[18:56:18] [Server thread/DEBUG] [FML/]: Registry consistency check successful +[18:56:18] [Server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp +[18:56:18] [Server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp +[18:56:18] [Server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML +[18:56:18] [Server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML +[18:56:18] [Server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge +[18:56:18] [Server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge +[18:56:18] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLModIdMappingEvent to mod kitsumedievalcraft +[18:56:18] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLModIdMappingEvent to mod kitsumedievalcraft +[18:56:18] [Server thread/INFO] [FML/]: Applying holder lookups +[18:56:18] [Server thread/INFO] [FML/]: Holder lookups applied +[18:56:18] [Server thread/DEBUG] [FML/]: Loading persistent fluid defaults from world +[18:56:18] [Server thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava +[18:56:18] [Server thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water +[18:56:18] [Server thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blockslackedlime has been selected as the default fluid for blockslackedlime +[18:56:18] [Server thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blockfilteredwater has been selected as the default fluid for blockfilteredwater +[18:56:18] [Server thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blocksmoke has been selected as the default fluid for blocksmoke +[18:56:18] [Server thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blocktannin has been selected as the default fluid for blocktannin +[18:56:18] [Server thread/INFO] [FML/]: Loading dimension 0 (Demo World) (net.minecraft.server.integrated.IntegratedServer@3b9212c4) +[18:56:18] [Server thread/INFO] [FML/]: Loading dimension 1 (Demo World) (net.minecraft.server.integrated.IntegratedServer@3b9212c4) +[18:56:18] [Server thread/INFO] [FML/]: Loading dimension -1 (Demo World) (net.minecraft.server.integrated.IntegratedServer@3b9212c4) +[18:56:19] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartingEvent to mod mcp +[18:56:19] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartingEvent to mod mcp +[18:56:19] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStartingEvent to mod FML +[18:56:19] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStartingEvent to mod FML +[18:56:19] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartingEvent to mod Forge +[18:56:19] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartingEvent to mod Forge +[18:56:19] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLServerStartingEvent to mod kitsumedievalcraft +[18:56:19] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLServerStartingEvent to mod kitsumedievalcraft +[18:56:19] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartedEvent to mod mcp +[18:56:19] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartedEvent to mod mcp +[18:56:19] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStartedEvent to mod FML +[18:56:19] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStartedEvent to mod FML +[18:56:19] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartedEvent to mod Forge +[18:56:19] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartedEvent to mod Forge +[18:56:19] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLServerStartedEvent to mod kitsumedievalcraft +[18:56:19] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLServerStartedEvent to mod kitsumedievalcraft +[18:56:19] [Netty Client IO #0/DEBUG] [FML/]: Server FML protocol version 2, 4 byte dimension received 0 +[18:56:19] [Netty Client IO #0/TRACE] [FML/]: $ServerHello->FMLHandshakeClientState$2:HELLO +[18:56:19] [Netty Client IO #0/INFO] [FML/]: Server protocol version 2 +[18:56:19] [Netty Client IO #0/DEBUG] [FML/]: Received override dimension 0 +[18:56:19] [Netty IO #1/TRACE] [FML/]: $ClientHello->FMLHandshakeServerState$2:HELLO +[18:56:19] [Netty IO #1/INFO] [FML/]: Client protocol version 2 +[18:56:19] [Netty IO #1/TRACE] [FML/]: $ModList:4 mods->FMLHandshakeServerState$2:HELLO +[18:56:19] [Netty IO #1/INFO] [FML/]: Client attempting to join with 4 mods : FML@7.10.99.99,kitsumedievalcraft@2.2.5,Forge@10.13.4.1448,mcp@9.05 +[18:56:19] [Netty IO #1/INFO] [FML/]: Attempting connection with missing mods [] at CLIENT +[18:56:19] [Netty Client IO #0/TRACE] [FML/]: $ModList:4 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA +[18:56:19] [Netty Client IO #0/INFO] [FML/]: Attempting connection with missing mods [] at SERVER +[18:56:19] [Netty IO #1/TRACE] [FML/]: $HandshakeAck:{2}->FMLHandshakeServerState$3:WAITINGCACK +[18:56:19] [Netty Client IO #0/TRACE] [FML/]: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE +[18:56:19] [Netty IO #1/TRACE] [FML/]: $HandshakeAck:{4}->FMLHandshakeServerState$4:COMPLETE +[18:56:19] [Netty Client IO #0/TRACE] [FML/]: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE +[18:56:19] [Netty IO #1/TRACE] [FML/]: $HandshakeAck:{5}->FMLHandshakeServerState$5:DONE +[18:56:19] [Server thread/INFO] [FML/]: [Server thread] Server side modded connection established +[18:56:19] [Client thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava +[18:56:19] [Client thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water +[18:56:19] [Client thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blockslackedlime has been selected as the default fluid for blockslackedlime +[18:56:19] [Client thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blockfilteredwater has been selected as the default fluid for blockfilteredwater +[18:56:19] [Client thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blocksmoke has been selected as the default fluid for blocksmoke +[18:56:19] [Client thread/DEBUG] [FML/]: The fluid kitsumedievalcraft:blocktannin has been selected as the default fluid for blocktannin +[18:56:19] [Client thread/INFO] [FML/]: [Client thread] Client side modded connection established +[18:56:19] [Client thread/DEBUG] [FML/]: Overriding dimension: using 0 +[18:57:04] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Demo World +[18:57:49] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Demo World +[18:58:34] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Demo World +[18:59:19] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Demo World +[19:00:04] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Demo World +[19:00:49] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Demo World +[19:01:34] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Demo World +[19:02:19] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Demo World +[19:03:04] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Demo World +[19:03:49] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Demo World +[19:04:34] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Demo World +[19:05:19] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Demo World +[19:05:27] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppingEvent to mod mcp +[19:05:27] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppingEvent to mod mcp +[19:05:27] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStoppingEvent to mod FML +[19:05:27] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStoppingEvent to mod FML +[19:05:27] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppingEvent to mod Forge +[19:05:27] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppingEvent to mod Forge +[19:05:27] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLServerStoppingEvent to mod kitsumedievalcraft +[19:05:27] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLServerStoppingEvent to mod kitsumedievalcraft +[19:05:27] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: +[19:05:27] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... +[19:05:27] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Demo World +[19:05:27] [Server thread/INFO] [FML/]: Unloading dimension 0 +[19:05:27] [Server thread/INFO] [FML/]: Unloading dimension -1 +[19:05:27] [Server thread/INFO] [FML/]: Unloading dimension 1 +[19:05:27] [Server thread/DEBUG] [FML/]: Reverting to frozen data state. +[19:05:27] [Server thread/INFO] [FML/]: Applying holder lookups +[19:05:27] [Server thread/INFO] [FML/]: Holder lookups applied +[19:05:27] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppedEvent to mod mcp +[19:05:27] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppedEvent to mod mcp +[19:05:27] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStoppedEvent to mod FML +[19:05:27] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStoppedEvent to mod FML +[19:05:27] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppedEvent to mod Forge +[19:05:27] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppedEvent to mod Forge +[19:05:27] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sending event FMLServerStoppedEvent to mod kitsumedievalcraft +[19:05:27] [Server thread/TRACE] [kitsumedievalcraft/kitsumedievalcraft]: Sent event FMLServerStoppedEvent to mod kitsumedievalcraft +[19:05:28] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com +[19:05:28] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: diff --git a/eclipse/logs/fml-junk-earlystartup.log b/eclipse/logs/fml-junk-earlystartup.log index 60606d2a..2e96c124 100644 --- a/eclipse/logs/fml-junk-earlystartup.log +++ b/eclipse/logs/fml-junk-earlystartup.log @@ -1480,3 +1480,9 @@ [13:29:56] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker [13:29:56] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [13:29:56] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker +[18:56:07] [main/INFO] [GradleStart]: Extra: [] +[18:56:07] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, /home/kitsudesktop/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] +[18:56:07] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker +[18:56:07] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker +[18:56:07] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker +[18:56:07] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker diff --git a/eclipse/logs/latest.log b/eclipse/logs/latest.log index 7e3f9d92..f4ddf544 100644 --- a/eclipse/logs/latest.log +++ b/eclipse/logs/latest.log @@ -1,28 +1,26 @@ -[13:29:57] [main/INFO]: Setting user: Player692 -[13:29:58] [Client thread/INFO]: LWJGL Version: 2.9.1 -[13:29:59] [Client thread/ERROR]: Couldn't initialize twitch stream -[13:30:02] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:ForgeCraft -[13:30:03] [Sound Library Loader/INFO]: Sound engine started -[13:30:03] [Client thread/INFO]: Created: 1024x512 textures/blocks-atlas -[13:30:03] [Client thread/INFO]: Created: 512x512 textures/items-atlas -[13:30:03] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:ForgeCraft -[13:30:04] [Client thread/INFO]: Created: 1024x512 textures/blocks-atlas -[13:30:04] [Client thread/INFO]: Created: 512x512 textures/items-atlas -[13:30:05] [Sound Library Loader/INFO]: Sound engine started -[13:30:06] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10 -[13:30:06] [Server thread/INFO]: Generating keypair -[13:30:07] [Server thread/INFO]: Preparing start region for level 0 -[13:30:07] [Server thread/INFO]: Changing view distance to 12, from 10 -[13:30:07] [Server thread/INFO]: Player692[local:E:3d1176b5] logged in with entity id 86 at (-243.18071290580363, 71.0, 64.87583910846845) -[13:30:07] [Server thread/INFO]: Player692 joined the game -[13:30:08] [Server thread/INFO]: Player692 has just earned the achievement [Taking Inventory] -[13:30:08] [Client thread/INFO]: [CHAT] Player692 has just earned the achievement [Taking Inventory] -[13:30:20] [Server thread/INFO]: [Player692: Set own game mode to Creative Mode] -[13:30:20] [Client thread/INFO]: [CHAT] Your game mode has been updated -[13:30:51] [Client thread/INFO]: Stopping! -[13:30:51] [Server thread/INFO]: Stopping server -[13:30:51] [Server thread/INFO]: Saving players -[13:30:51] [Server thread/INFO]: Saving worlds -[13:30:51] [Server thread/INFO]: Saving chunks for level 'Demo World'/Overworld -[13:30:51] [Server thread/INFO]: Saving chunks for level 'Demo World'/Nether -[13:30:51] [Server thread/INFO]: Saving chunks for level 'Demo World'/The End +[18:56:08] [main/INFO]: Setting user: Player764 +[18:56:09] [Client thread/INFO]: LWJGL Version: 2.9.1 +[18:56:10] [Client thread/ERROR]: Couldn't initialize twitch stream +[18:56:11] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:ForgeCraft +[18:56:12] [Sound Library Loader/INFO]: Sound engine started +[18:56:13] [Client thread/INFO]: Created: 1024x512 textures/blocks-atlas +[18:56:13] [Client thread/INFO]: Created: 512x512 textures/items-atlas +[18:56:13] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:ForgeCraft +[18:56:13] [Client thread/INFO]: Created: 1024x512 textures/blocks-atlas +[18:56:13] [Client thread/INFO]: Created: 512x512 textures/items-atlas +[18:56:14] [Sound Library Loader/INFO]: Sound engine started +[18:56:18] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10 +[18:56:18] [Server thread/INFO]: Generating keypair +[18:56:18] [Server thread/INFO]: Preparing start region for level 0 +[18:56:19] [Server thread/INFO]: Changing view distance to 12, from 10 +[18:56:19] [Server thread/INFO]: Player764[local:E:02750152] logged in with entity id 80 at (-243.18071290580363, 71.0, 64.87583910846845) +[18:56:19] [Server thread/INFO]: Player764 joined the game +[18:56:21] [Server thread/INFO]: Player764 has just earned the achievement [Taking Inventory] +[18:56:21] [Client thread/INFO]: [CHAT] Player764 has just earned the achievement [Taking Inventory] +[19:05:27] [Client thread/INFO]: Stopping! +[19:05:27] [Server thread/INFO]: Stopping server +[19:05:27] [Server thread/INFO]: Saving players +[19:05:27] [Server thread/INFO]: Saving worlds +[19:05:27] [Server thread/INFO]: Saving chunks for level 'Demo World'/Overworld +[19:05:27] [Server thread/INFO]: Saving chunks for level 'Demo World'/Nether +[19:05:27] [Server thread/INFO]: Saving chunks for level 'Demo World'/The End diff --git a/eclipse/saves/Demo World/DIM-1/data/villages.dat b/eclipse/saves/Demo World/DIM-1/data/villages.dat index 6c10e2a7..3c60e735 100644 Binary files a/eclipse/saves/Demo World/DIM-1/data/villages.dat and b/eclipse/saves/Demo World/DIM-1/data/villages.dat differ diff --git a/eclipse/saves/Demo World/DIM1/data/villages.dat b/eclipse/saves/Demo World/DIM1/data/villages.dat index 6c10e2a7..3c60e735 100644 Binary files a/eclipse/saves/Demo World/DIM1/data/villages.dat and b/eclipse/saves/Demo World/DIM1/data/villages.dat differ diff --git a/eclipse/saves/Demo World/data/villages.dat b/eclipse/saves/Demo World/data/villages.dat index 6c10e2a7..3c60e735 100644 Binary files a/eclipse/saves/Demo World/data/villages.dat and b/eclipse/saves/Demo World/data/villages.dat differ diff --git a/eclipse/saves/Demo World/level.dat b/eclipse/saves/Demo World/level.dat index aa291b92..e65893a9 100644 Binary files a/eclipse/saves/Demo World/level.dat and b/eclipse/saves/Demo World/level.dat differ diff --git a/eclipse/saves/Demo World/level.dat_old b/eclipse/saves/Demo World/level.dat_old index 50e8e5c6..c2cdc667 100644 Binary files a/eclipse/saves/Demo World/level.dat_old and b/eclipse/saves/Demo World/level.dat_old differ diff --git a/eclipse/saves/Demo World/playerdata/07f066df-e334-33b1-a24c-2ec414c5ef02.dat b/eclipse/saves/Demo World/playerdata/07f066df-e334-33b1-a24c-2ec414c5ef02.dat new file mode 100644 index 00000000..7cf8d535 Binary files /dev/null and b/eclipse/saves/Demo World/playerdata/07f066df-e334-33b1-a24c-2ec414c5ef02.dat differ diff --git a/eclipse/saves/Demo World/region/r.-1.-1.mca b/eclipse/saves/Demo World/region/r.-1.-1.mca index a91498bb..0e483cbf 100644 Binary files a/eclipse/saves/Demo World/region/r.-1.-1.mca and b/eclipse/saves/Demo World/region/r.-1.-1.mca differ diff --git a/eclipse/saves/Demo World/region/r.-1.0.mca b/eclipse/saves/Demo World/region/r.-1.0.mca index 2361bf75..3fd71d78 100644 Binary files a/eclipse/saves/Demo World/region/r.-1.0.mca and b/eclipse/saves/Demo World/region/r.-1.0.mca differ diff --git a/eclipse/saves/Demo World/session.lock b/eclipse/saves/Demo World/session.lock index 7a05b685..cd89910f 100644 Binary files a/eclipse/saves/Demo World/session.lock and b/eclipse/saves/Demo World/session.lock differ diff --git a/eclipse/saves/Demo World/stats/07f066df-e334-33b1-a24c-2ec414c5ef02.json b/eclipse/saves/Demo World/stats/07f066df-e334-33b1-a24c-2ec414c5ef02.json new file mode 100644 index 00000000..a106cd95 --- /dev/null +++ b/eclipse/saves/Demo World/stats/07f066df-e334-33b1-a24c-2ec414c5ef02.json @@ -0,0 +1 @@ +{"stat.playOneMinute":10945,"achievement.openInventory":1,"achievement.exploreAllBiomes":{"value":0,"progress":["Savanna"]}} \ No newline at end of file diff --git a/eclipse/usernamecache.json b/eclipse/usernamecache.json index f4e77c58..d7d8a55c 100644 --- a/eclipse/usernamecache.json +++ b/eclipse/usernamecache.json @@ -193,5 +193,6 @@ "19b458ba-c952-3dc3-bceb-bb32067d178f": "Player213", "dbc69dc4-5cc0-3e17-977d-029c3370c88b": "Player202", "2854591c-b60f-3cde-b807-30391bb3ef3d": "Player655", - "92bdd514-4796-3d7d-b2d4-a03fc9628bd4": "Player779" + "92bdd514-4796-3d7d-b2d4-a03fc9628bd4": "Player779", + "07f066df-e334-33b1-a24c-2ec414c5ef02": "Player764" } \ No newline at end of file diff --git a/push.sh b/push.sh deleted file mode 100755 index 922814c9..00000000 --- a/push.sh +++ /dev/null @@ -1,9 +0,0 @@ -#Test Script - -clear -git status -git add --all -echo "Enter commit message" -read COM -git commit -m $COM -git push diff --git a/src/main/java/com/kitsu/medievalcraft/item/ModItems.java b/src/main/java/com/kitsu/medievalcraft/item/ModItems.java index 9247e561..af94df51 100644 --- a/src/main/java/com/kitsu/medievalcraft/item/ModItems.java +++ b/src/main/java/com/kitsu/medievalcraft/item/ModItems.java @@ -1004,8 +1004,6 @@ public final class ModItems { GameRegistry.registerItem(customIronShovelCase51 = new CustomIronShovel("customIronShovelCase51", customWoodNormal), "customIronShovelCase51"); GameRegistry.registerItem(customIronShovelCase52 = new CustomIronShovel("customIronShovelCase52", customIronToolRodWeak), "customIronShovelCase52"); - - GameRegistry.registerItem(customIronShovel = new CustomIronShovel("customIronShovel", customWoodNormal), "customIronShovel"); GameRegistry.registerItem(customStrongIronShovel = new CustomIronShovel("customStrongIronShovel", customWoodStrong), "customStrongIronShovel"); GameRegistry.registerItem(customWeakIronShovel = new CustomIronShovel("customWeakIronShovel", customWoodWeak), "customWeakIronShovel");