Jump to content

PlayerNerd

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by PlayerNerd

  1. I need to know how to make command with arguments, export a addon (When i try export it give me a error) and make it run i server without the mod needs to be in client.
  2. I´m trying to create a addon mod, that it runs in server withou a client, but i need help to make a command with arguments and export it. My addon only add commands to minecraft. Main.class package com.playernerd.PlayerNerd.Nerdmon.Main; import net.minecraft.command.ICommandManager; import net.minecraft.command.ServerCommandManager; import net.minecraft.init.Blocks; import net.minecraft.server.MinecraftServer; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.EventHandler; import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw.mods.fml.common.event.FMLServerStartingEvent; @Mod(modid = Main.MODID, version = Main.VERSION) public class Main { public static final String MODID = "PlayerNerdMon"; public static final String VERSION = "1.0"; @EventHandler public void init(FMLInitializationEvent event) { } @EventHandler public void onServerStart(FMLServerStartingEvent event) { MinecraftServer server = MinecraftServer.getServer(); // single player only? // This is line 62 as shown below in the error. ICommandManager command = server.getCommandManager(); ServerCommandManager manager = (ServerCommandManager) command; manager.registerCommand(new CommandSpawn()); } } I only try to make one command, the code: package com.playernerd.PlayerNerd.Nerdmon.Main; import net.minecraft.command.CommandBase; import net.minecraft.command.ICommandSender; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.server.MinecraftServer; import net.minecraft.world.WorldServer; import com.pixelmonmod.pixelmon.config.PixelmonEntityList; import com.pixelmonmod.pixelmon.entities.pixelmon.EntityPixelmon; import com.pixelmonmod.pixelmon.enums.EnumGrowth; import com.pixelmonmod.pixelmon.enums.EnumNature; import com.pixelmonmod.pixelmon.enums.EnumPokemon; public class CommandSpawn extends CommandBase { @Override public String getCommandName() { return "pnspawn"; } @Override public String getCommandUsage(ICommandSender icommandsender) { return "/pnspawn <nome> <level> <s/ns> <tamanho> <nature>"; } @Override public void processCommand(ICommandSender icommandsender, String[] args) { if(icommandsender instanceof EntityPlayer) { EntityPlayer p = (EntityPlayer) icommandsender; EntityPixelmon pkm; String name; WorldServer world; name = args[0]; if(EnumPokemon.hasPokemon(name)) { pkm = (EntityPixelmon) PixelmonEntityList.createEntityByName(name, p.worldObj); String lvl = args[1]; pkm.getLvl().setLevel(Integer.valueOf(lvl)); String shiny = args[2]; switch(shiny) { case "s": pkm.setIsShiny(true); break; case "ns": pkm.setIsShiny(false); break; } String growth = args[3]; switch(growth) { case "ginormous": pkm.setGrowth(EnumGrowth.Ginormous); break; case "enormous": pkm.setGrowth(EnumGrowth.Enormous); break; case "giant": pkm.setGrowth(EnumGrowth.Giant); break; case "huge": pkm.setGrowth(EnumGrowth.Huge); break; case "ordinary": pkm.setGrowth(EnumGrowth.Ordinary); break; case "runt": pkm.setGrowth(EnumGrowth.Runt); break; case "small": pkm.setGrowth(EnumGrowth.Small); break; case "pygmy": pkm.setGrowth(EnumGrowth.Pygmy); break; case "microscopic": pkm.setGrowth(EnumGrowth.Microscopic); break; } p.worldObj.spawnEntityInWorld(pkm); } else { } } } } Could anyone help me??
  3. I was making a server for i play with my friends in my modpack, but it crash: 2014-08-17 22:03:27 [iNFO] [ForgeModLoader] Forge Mod Loader version 6.4.49.965 for Minecraft 1.6.4 loading 2014-08-17 22:03:27 [iNFO] [ForgeModLoader] Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_25, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jdk1.7.0_25\jre 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Java classpath at launch is Server_TheLastCraft.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Java library path at launch is C:\Program Files\Java\jdk1.7.0_25\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Program Files\Java\jdk1.7.0_25\bin;C:\Program Files\Java\jdk1.8.0_05\bin;C:\Program Files\Java\jdk1.7.0_25\bin;C:\Program Files\Java\jdk1.8.0_05\bin;. 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enabling runtime deobfuscation 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class FMLCorePlugin 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod FMLCorePlugin 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class FMLForgePlugin 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod FMLForgePlugin 2014-08-17 22:03:27 [FINE] [ForgeModLoader] All fundamental core mods are successfully located 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Discovering coremods 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy CodeChickenLib-universal-1.6.4-1.0.0.62.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Not found coremod data in CodeChickenLib-universal-1.6.4-1.0.0.62.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy ForgeMultipart-universal-1.6.4-1.0.0.219.jar 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Found FMLCorePluginContainsFMLMod marker in ForgeMultipart-universal-1.6.4-1.0.0.219.jar, it will be examined later for regular @Mod instances 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class DepLoader 2014-08-17 22:03:27 [WARNING] [ForgeModLoader] The coremod codechicken.core.launch.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod DepLoader 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy WorldCore-universal-1.6.4-1.1.0.17.jar 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Adding WorldCore-universal-1.6.4-1.1.0.17.jar to the list of known coremods, it will not be examined again 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class WCFMLLoadingPlugin 2014-08-17 22:03:27 [WARNING] [ForgeModLoader] The coremod worldcore.asm.WCFMLLoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod WCFMLLoadingPlugin 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy AdvancedThaumaturgy-1.6.4-0.0.28.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Not found coremod data in AdvancedThaumaturgy-1.6.4-0.0.28.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy aether.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Not found coremod data in aether.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy AM2_1.2.0.018.jar 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Found FMLCorePluginContainsFMLMod marker in AM2_1.2.0.018.jar, it will be examined later for regular @Mod instances 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class AM2PreloaderContainer 2014-08-17 22:03:27 [WARNING] [ForgeModLoader] The coremod am2.preloader.AM2PreloaderContainer does not have a MCVersion annotation, it may cause issues with this version of Minecraft 2014-08-17 22:03:27 [iNFO] [ForgeModLoader] AMCore initializing...stand back! I'm going to try MAGIC! 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod AM2PreloaderContainer 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy appeng-rv14-finale3-mc16x.jar 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Found FMLCorePluginContainsFMLMod marker in appeng-rv14-finale3-mc16x.jar, it will be examined later for regular @Mod instances 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class AppEngCore 2014-08-17 22:03:27 [WARNING] [ForgeModLoader] The coremod appeng.transformer.AppEngCore does not have a MCVersion annotation, it may cause issues with this version of Minecraft 2014-08-17 22:03:27 [iNFO] [ForgeModLoader] [AppEng] Core Init 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod AppEngCore 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy BiomesOPlenty-universal-1.6.4-1.2.1.434.jar 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Found FMLCorePluginContainsFMLMod marker in BiomesOPlenty-universal-1.6.4-1.2.1.434.jar, it will be examined later for regular @Mod instances 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class BOPFMLLoadingPlugin 2014-08-17 22:03:27 [WARNING] [ForgeModLoader] The coremod biomesoplenty.asm.BOPFMLLoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod BOPFMLLoadingPlugin 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy buildcraft-A-1.6.4-4.2.2.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Not found coremod data in buildcraft-A-1.6.4-4.2.2.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy Calclavia-Core-1.2.0.324-universal.jar 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Found FMLCorePluginContainsFMLMod marker in Calclavia-Core-1.2.0.324-universal.jar, it will be examined later for regular @Mod instances 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class CalclaviaPluginLoader 2014-08-17 22:03:27 [WARNING] [ForgeModLoader] The coremod calclavia.lib.CalclaviaPluginLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod CalclaviaPluginLoader 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy CodeChickenCore 0.9.0.9.jar 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Adding CodeChickenCore 0.9.0.9.jar to the list of known coremods, it will not be examined again 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class CodeChickenCorePlugin 2014-08-17 22:03:27 [WARNING] [ForgeModLoader] The coremod codechicken.core.launch.CodeChickenCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod CodeChickenCorePlugin 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy CoFHCore-2.0.0.5.jar 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Found FMLCorePluginContainsFMLMod marker in CoFHCore-2.0.0.5.jar, it will be examined later for regular @Mod instances 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class LoadingPlugin 2014-08-17 22:03:27 [WARNING] [ForgeModLoader] The coremod cofh.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod LoadingPlugin 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy DartCraft Beta 0.2.20v2.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Not found coremod data in DartCraft Beta 0.2.20v2.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy ElectroMagicTools-1.0.9d.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Not found coremod data in ElectroMagicTools-1.0.9d.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy EnderStorage 1.4.3.6.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy FlansMod-4.1.1.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Not found coremod data in FlansMod-4.1.1.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy ForbiddenMagic pr0.35a.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Not found coremod data in ForbiddenMagic pr0.35a.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy Galacticraft-1.6.4-2.0.2.800.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy Galacticraft-Planets-1.6.4-2.0.2.800.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy Idfix-Mod-1.6.4.jar 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Adding Idfix-Mod-1.6.4.jar to the list of known coremods, it will not be examined again 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class IdfixCore 2014-08-17 22:03:27 [FINE] [ForgeModLoader] The coremod info.jbcs.minecraft.idfix.IdfixCore requested minecraft version 1.6.4 and minecraft is 1.6.4. It will be loaded. 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod IdfixCore 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy industrialcraft-2_2.0.397-experimental[Optimized].jar 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Found FMLCorePluginContainsFMLMod marker in industrialcraft-2_2.0.397-experimental[Optimized].jar, it will be examined later for regular @Mod instances 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class IC2core 2014-08-17 22:03:27 [WARNING] [ForgeModLoader] The coremod ic2.core.coremod.IC2core does not have a MCVersion annotation, it may cause issues with this version of Minecraft 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod IC2core 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy InventoryTweaks-MC1.6.2-1.56-b77.jar 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Found FMLCorePluginContainsFMLMod marker in InventoryTweaks-MC1.6.2-1.56-b77.jar, it will be examined later for regular @Mod instances 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class FMLPlugin 2014-08-17 22:03:27 [WARNING] [ForgeModLoader] The coremod invtweaks.forge.asm.FMLPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod FMLPlugin 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy LogisticsPipes-MC1.6.4-0.7.4.dev.290.jar 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Found FMLCorePluginContainsFMLMod marker in LogisticsPipes-MC1.6.4-0.7.4.dev.290.jar, it will be examined later for regular @Mod instances 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class LogisticsPipesCoreLoader 2014-08-17 22:03:27 [WARNING] [ForgeModLoader] The coremod logisticspipes.asm.LogisticsPipesCoreLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod LogisticsPipesCoreLoader 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy Mekanism-6.0.5.46[Optimized].jar 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Found FMLCorePluginContainsFMLMod marker in Mekanism-6.0.5.46[Optimized].jar, it will be examined later for regular @Mod instances 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class LoadingHook 2014-08-17 22:03:27 [WARNING] [ForgeModLoader] The coremod mekanism.common.asm.LoadingHook does not have a MCVersion annotation, it may cause issues with this version of Minecraft 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod LoadingHook 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy MekanismGenerators-6.0.5.46.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Not found coremod data in MekanismGenerators-6.0.5.46.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy MekanismTools-6.0.5.46.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Not found coremod data in MekanismTools-6.0.5.46.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy MicdoodleCore-1.6.4-2.0.2.800.jar 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Adding MicdoodleCore-1.6.4-2.0.2.800.jar to the list of known coremods, it will not be examined again 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class MicdoodlePlugin 2014-08-17 22:03:27 [WARNING] [ForgeModLoader] The coremod micdoodle8.mods.miccore.MicdoodlePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod MicdoodlePlugin 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy MineFactoryReloaded-2.7.9-final.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Not found coremod data in MineFactoryReloaded-2.7.9-final.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy Modular-Force-Field-System-3.6.3.91-core.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Not found coremod data in Modular-Force-Field-System-3.6.3.91-core.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy Natura_mc1.6.X_2.1.14.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Not found coremod data in Natura_mc1.6.X_2.1.14.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy NetherOres-2.2.2-55.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Not found coremod data in NetherOres-2.2.2-55.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy OpenBlocks-1.2.5.jar 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Found FMLCorePluginContainsFMLMod marker in OpenBlocks-1.2.5.jar, it will be examined later for regular @Mod instances 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class OpenBlocksCorePlugin 2014-08-17 22:03:27 [WARNING] [ForgeModLoader] The coremod openblocks.OpenBlocksCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod OpenBlocksCorePlugin 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy OpenModsLib-0.2.jar 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Found FMLCorePluginContainsFMLMod marker in OpenModsLib-0.2.jar, it will be examined later for regular @Mod instances 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class OpenModsCorePlugin 2014-08-17 22:03:27 [WARNING] [ForgeModLoader] The coremod openmods.OpenModsCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod OpenModsCorePlugin 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy PowerCrystalsCore-1.1.8-9.jar 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Adding PowerCrystalsCore-1.1.8-9.jar to the list of known coremods, it will not be examined again 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class CoreLoader 2014-08-17 22:03:27 [FINE] [ForgeModLoader] The coremod powercrystals.core.CoreLoader requested minecraft version 1.6.4 and minecraft is 1.6.4. It will be loaded. 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod CoreLoader 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy Railcraft_1.6.4-8.3.2.0.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Not found coremod data in Railcraft_1.6.4-8.3.2.0.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy RedstoneArsenal-1.0.0.0.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Not found coremod data in RedstoneArsenal-1.0.0.0.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy Resonant-Engine-Development-1.2.0.266-universal.jar 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Found FMLCorePluginContainsFMLMod marker in Resonant-Engine-Development-1.2.0.266-universal.jar, it will be examined later for regular @Mod instances 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class ResonantPluginLoader 2014-08-17 22:03:27 [WARNING] [ForgeModLoader] The coremod resonant.core.ResonantPluginLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod ResonantPluginLoader 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy TConstruct_mc1.6.4_1.5.5.7.jar 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Found FMLCorePluginContainsFMLMod marker in TConstruct_mc1.6.4_1.5.5.7.jar, it will be examined later for regular @Mod instances 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class TConstructLoaderContainer 2014-08-17 22:03:27 [WARNING] [ForgeModLoader] The coremod tconstruct.preloader.TConstructLoaderContainer does not have a MCVersion annotation, it may cause issues with this version of Minecraft 2014-08-17 22:03:27 [iNFO] [TCon-Preloader] Scalpel. Suction. Lumber axe. CLEAR! *zap* 2014-08-17 22:03:27 [iNFO] [TCon-Preloader] Constructing preloader (Modules: [tconstruct.preloader.AccessTransformers, tconstruct.preloader.ASMInterfaceRepair]) 2014-08-17 22:03:27 [iNFO] [TCon-Preloader] Found a properties file. Attempting load... 2014-08-17 22:03:27 [iNFO] [TCon-Preloader] Loaded properties successfully. Using specified settings. 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod TConstructLoaderContainer 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy ThaumcraftExtras-1.6.4-1.0.0.4.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Not found coremod data in ThaumcraftExtras-1.6.4-1.0.0.4.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy Thaumic Exploration 0.5.2.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy ThaumicTinkerer-2.3-140.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Not found coremod data in ThaumicTinkerer-2.3-140.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy ThermalExpansion-3.0.0.7.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Not found coremod data in ThermalExpansion-3.0.0.7.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy twilightforest-1.6.4-1.20.4.jar 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy Universal-Electricity-3.1.0.115-core.jar 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Found FMLCorePluginContainsFMLMod marker in Universal-Electricity-3.1.0.115-core.jar, it will be examined later for regular @Mod instances 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Instantiating coremod class UELoader 2014-08-17 22:03:27 [WARNING] [ForgeModLoader] The coremod universalelectricity.core.UELoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Enqueued coremod UELoader 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Examining for coremod candidacy Yet-Another-Leather-Smelting-Mod-1.6.4.jar 2014-08-17 22:03:27 [iNFO] [ForgeModLoader] Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker 2014-08-17 22:03:27 [iNFO] [ForgeModLoader] Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker 2014-08-17 22:03:27 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker 2014-08-17 22:03:27 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker 2014-08-17 22:03:27 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Injecting coremod FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} class transformers 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Registering transformer cpw.mods.fml.common.asm.transformers.AccessTransformer 2014-08-17 22:03:27 [iNFO] [sTDOUT] Loaded 40 rules from AccessTransformer config file fml_at.cfg 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Registering transformer cpw.mods.fml.common.asm.transformers.MarkerTransformer 2014-08-17 22:03:27 [FINEST] [ForgeModLoader] Registering transformer cpw.mods.fml.common.asm.transformers.SideTransformer 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Running coremod plugin for FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} 2014-08-17 22:03:27 [FINE] [ForgeModLoader] Running coremod plugin FMLCorePlugin 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.Block.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockBaseRailLogic.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockButton.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockCactus.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockChest.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockCocoa.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockComparator.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockCrops.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockDoor.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockFarmland.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockFire.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockFlower.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockFlowing.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockFluid.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockGrass.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockLadder.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockLeaves.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockLever.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockLog.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockMobSpawner.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockMushroom.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockMycelium.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockNetherStalk.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockOre.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockPane.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockPistonBase.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockPortal.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockPumpkin.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockRailBase.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockRedstoneOre.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockRedstoneWire.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockReed.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockSand.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockSapling.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockSkull.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockSnow.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockStem.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockTallGrass.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockTorch.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockTrapDoor.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockTripWireSource.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.block.BlockVine.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.ClientBrandRetriever.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.Minecraft.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.audio.SoundManager.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.entity.EntityOtherPlayerMP.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.entity.EntityPlayerSP.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.gui.GuiChat.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.gui.GuiControls.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.gui.GuiCreateWorld.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.gui.GuiIngame.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.gui.GuiMainMenu.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.gui.GuiSlot.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.gui.achievement.GuiAchievements.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.gui.inventory.GuiContainer.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.gui.inventory.GuiContainerCreative.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.model.ModelBase.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.model.ModelBox.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.model.ModelRenderer.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.model.PositionTextureVertex.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.model.TexturedQuad.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.multiplayer.ChunkProviderClient.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.multiplayer.GuiConnecting.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.multiplayer.NetClientHandler.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.multiplayer.PlayerControllerMP.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.multiplayer.WorldClient.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.particle.EffectRenderer.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.particle.EntityDiggingFX.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.particle.EntityFireworkStarterFX.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.renderer.EntityRenderer.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.renderer.ItemRenderer.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.renderer.OpenGlHelper.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.renderer.RenderBlocks.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.renderer.RenderGlobal.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.renderer.Tessellator.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.renderer.WorldRenderer.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.renderer.entity.RenderBiped.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.renderer.entity.RenderItem.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.renderer.entity.RenderManager.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.renderer.entity.RenderPlayer.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.renderer.entity.RenderSnowMan.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.renderer.entity.RenderVillager.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.renderer.entity.RendererLivingEntity.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.renderer.texture.Stitcher.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.renderer.texture.TextureAtlasSprite.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.renderer.texture.TextureMap.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.renderer.tileentity.TileEntityChestRenderer.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.resources.LanguageManager.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.client.settings.GameSettings.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.command.CommandHandler.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.crash.CallableSuspiciousClasses.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.crash.CrashReport.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.crash.CrashReportCategory.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.creativetab.CreativeTabs.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.enchantment.Enchantment.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.enchantment.EnchantmentHelper.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.Entity.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.EntityList.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.EntityLiving.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.EntityLivingBase.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.EntityTracker.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.EntityTrackerEntry.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.ai.EntityAIAttackOnCollide.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.boss.EntityDragon.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.boss.EntityWither.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.boss.IBossDisplayData.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.effect.EntityLightningBolt.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.item.EntityEnderPearl.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.item.EntityItem.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.item.EntityMinecart.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.item.EntityMinecartContainer.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.item.EntityMinecartEmpty.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.item.EntityMinecartFurnace.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.item.EntityMinecartHopper.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.monster.EntityEnderman.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.monster.EntitySlime.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.monster.EntityZombie.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.passive.EntityMooshroom.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.passive.EntityOcelot.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.passive.EntitySheep.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.passive.EntityVillager.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.player.EntityPlayer.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.player.EntityPlayerMP.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.entity.player.InventoryPlayer.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.inventory.ContainerEnchantment.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.inventory.ContainerFurnace.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.inventory.ContainerRepair.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.inventory.Slot.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.inventory.SlotArmor.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.inventory.SlotBrewingStandIngredient.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.inventory.SlotBrewingStandPotion.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.inventory.SlotCrafting.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.inventory.SlotFurnace.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.BehaviorDispenseArmor.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.EnumArmorMaterial.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.EnumRarity.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.EnumToolMaterial.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.Item.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.ItemArmor.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.ItemBlock.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.ItemBow.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.ItemBucket.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.ItemBucketMilk.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.ItemDye.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.ItemEmptyMap.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.ItemFlintAndSteel.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.ItemHoe.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.ItemInWorldManager.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.ItemMap.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.ItemSeedFood.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.ItemSeeds.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.ItemShears.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.ItemStack.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.ItemTool.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.crafting.CraftingManager.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.crafting.FurnaceRecipes.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.item.crafting.RecipeFireworks.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.logging.LogAgent.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.nbt.CompressedStreamTools.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.nbt.NBTTagList.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.network.MemoryConnection.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.network.NetLoginHandler.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.network.NetServerHandler.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.network.NetworkListenThread.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.network.TcpConnection.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.network.packet.NetHandler.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.network.packet.Packet.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.network.packet.Packet1Login.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.network.packet.Packet51MapChunk.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.network.packet.Packet52MultiBlockChange.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.network.packet.Packet56MapChunks.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.potion.PotionEffect.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.server.MinecraftServer.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.server.ServerListenThread.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.server.dedicated.DedicatedServer.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.server.gui.StatsComponent.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.server.integrated.IntegratedServer.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.server.integrated.IntegratedServerListenThread.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.server.management.PlayerInstance.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.server.management.ServerConfigurationManager.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.stats.StatFileWriter.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.stats.StatList.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.tileentity.TileEntity.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.tileentity.TileEntityBeacon.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.tileentity.TileEntityBrewingStand.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.tileentity.TileEntityFurnace.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.tileentity.TileEntityHopper.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.util.CryptManager.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.util.MovingObjectPosition.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.util.ResourceLocation.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.util.Session.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.util.StringTranslate.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.util.WeightedRandomChestContent.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.village.VillageCollection.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.ChunkCache.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.Explosion.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.IBlockAccess.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.SpawnerAnimals.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.World.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.WorldProvider.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.WorldServer.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.WorldServerMulti.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.WorldType.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.biome.BiomeDecorator.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.biome.BiomeGenBase.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.biome.WorldChunkManager.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.chunk.Chunk.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.chunk.storage.AnvilChunkLoader.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.chunk.storage.AnvilSaveHandler.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.ChunkProviderEnd.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.ChunkProviderGenerate.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.ChunkProviderHell.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.ChunkProviderServer.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.MapGenCaves.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.MapGenRavine.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.feature.WorldGenBigMushroom.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.feature.WorldGenBigTree.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.feature.WorldGenDeadBush.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.feature.WorldGenDungeons.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.feature.WorldGenForest.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.feature.WorldGenHugeTrees.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.feature.WorldGenMinable.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.feature.WorldGenShrub.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.feature.WorldGenSwamp.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.feature.WorldGenTaiga1.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.feature.WorldGenTaiga2.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.feature.WorldGenTallGrass.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.feature.WorldGenTrees.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.layer.GenLayer.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.layer.GenLayerBiome.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.structure.ComponentMineshaftCorridor.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.structure.ComponentScatteredFeatureDesertPyramid.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.structure.ComponentScatteredFeatureJunglePyramid.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.structure.ComponentStrongholdChestCorridor.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.structure.ComponentStrongholdLibrary.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.structure.ComponentStrongholdRoomCrossing.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.structure.ComponentVillage.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.structure.ComponentVillageHouse2.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.structure.ComponentVillageStartPiece.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.structure.MapGenStronghold.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.structure.MapGenStructure.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.structure.StructureComponent.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.structure.StructureStart.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.gen.structure.StructureVillagePieces.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.storage.MapData.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.storage.SaveHandler.binpatch 2014-08-17 22:03:28 [FINEST] [ForgeModLoader] Reading patch data from binpatch/server/net.minecraft.world.storage.WorldInfo.binpatch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Read 247 binary patches 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Patch list : xj=[xj : xj => net.minecraft.item.ItemTool (true) size 2598] bkd=[bkd : bkd => net.minecraft.client.resources.LanguageManager (false) size 3876] xn=[xn : xn => net.minecraft.item.ItemEmptyMap (true) size 1467] xl=[xl : xl => net.minecraft.item.ItemDye (true) size 7308] xw=[xw : xw => net.minecraft.item.ItemFlintAndSteel (true) size 1193] aji=[aji : aji => net.minecraft.world.gen.structure.ComponentVillageHouse2 (true) size 4409] ajj=[ajj : ajj => net.minecraft.world.gen.structure.ComponentVillageStartPiece (true) size 1193] ww=[ww : ww => net.minecraft.creativetab.CreativeTabs (true) size 5700] ajm=[ajm : ajm => net.minecraft.world.gen.structure.ComponentVillage (true) size 5767] bjo=[bjo : bjo => net.minecraft.util.ResourceLocation (false) size 1758] aiy=[aiy : aiy => net.minecraft.world.gen.structure.StructureVillagePieces (true) size 5470] wh=[wh : wh => net.minecraft.item.ItemArmor (true) size 4126] wi=[wi : wi => net.minecraft.item.BehaviorDispenseArmor (true) size 1467] wj=[wj : wj => net.minecraft.item.EnumArmorMaterial (true) size 1903] wp=[wp : wp => net.minecraft.item.ItemBow (true) size 3997] wr=[wr : wr => net.minecraft.item.ItemBucket (true) size 3600] vw=[vw : vw => net.minecraft.inventory.SlotArmor (true) size 1097] biv=[biv : biv => net.minecraft.client.renderer.tileentity.TileEntityChestRenderer (false) size 3664] ain=[ain : ain => net.minecraft.world.gen.structure.MapGenStructure (true) size 5700] bik=[bik : bik => net.minecraft.client.renderer.texture.TextureMap (false) size 7125] bil=[bil : bil => net.minecraft.client.renderer.texture.TextureAtlasSprite (false) size 6732] ait=[ait : ait => net.minecraft.world.gen.structure.StructureComponent (true) size 11241] big=[big : big => net.minecraft.client.renderer.texture.Stitcher (false) size 4856] wd=[wd : wd => net.minecraft.inventory.SlotCrafting (true) size 3028] aiv=[aiv : aiv => net.minecraft.world.gen.structure.StructureStart (true) size 4075] we=[we : we => net.minecraft.inventory.Slot (true) size 2806] vm=[vm : vm => net.minecraft.inventory.ContainerEnchantment (true) size 4995] vh=[vh : vh => net.minecraft.inventory.SlotBrewingStandPotion (true) size 1088] ahw=[ahw : ahw => net.minecraft.world.gen.structure.ComponentStrongholdChestCorridor (true) size 3351] axm=[axm : axm => net.minecraft.client.gui.inventory.GuiContainerCreative (false) size 15977] vg=[vg : vg => net.minecraft.inventory.SlotBrewingStandIngredient (true) size 739] aif=[aif : aif => net.minecraft.world.gen.structure.ComponentStrongholdRoomCrossing (true) size 4150] vp=[vp : vp => net.minecraft.inventory.ContainerFurnace (true) size 2743] bma=[bma : bma => net.minecraft.client.renderer.OpenGlHelper (false) size 1596] vq=[vq : vq => net.minecraft.inventory.SlotFurnace (true) size 2057] aia=[aia : aia => net.minecraft.world.gen.structure.ComponentStrongholdLibrary (true) size 4382] ahm=[ahm : ahm => net.minecraft.world.gen.structure.ComponentScatteredFeatureJunglePyramid (true) size 6124] blt=[blt : blt => net.minecraft.client.gui.GuiMainMenu (false) size 14859] ahl=[ahl : ahl => net.minecraft.world.gen.structure.ComponentScatteredFeatureDesertPyramid (true) size 6695] awy=[awy : awy => net.minecraft.client.gui.inventory.GuiContainer (false) size 14220] blv=[blv : blv => net.minecraft.stats.StatFileWriter (false) size 7174] dn=[dn : dn => net.minecraft.network.packet.Packet52MultiBlockChange (true) size 2759] ahq=[ahq : ahq => net.minecraft.world.gen.structure.MapGenStronghold (true) size 4003] va=[va : va => net.minecraft.inventory.ContainerRepair (true) size 7574] bln=[bln : bln => net.minecraft.client.audio.SoundManager (false) size 12620] blc=[blc : blc => net.minecraft.server.integrated.IntegratedServerListenThread (false) size 2478] b=[b : b => net.minecraft.crash.CrashReport (true) size 6428] uf=[uf : uf => net.minecraft.entity.player.EntityPlayer (true) size 37458] ey=[ey : ey => net.minecraft.network.packet.Packet (true) size 7765] ez=[ez : ez => net.minecraft.network.packet.NetHandler (true) size 9724] bkz=[bkz : bkz => net.minecraft.server.integrated.IntegratedServer (false) size 7494] us=[us : us => net.minecraft.entity.item.EntityEnderPearl (true) size 2222] m=[m : m => net.minecraft.crash.CrashReportCategory (true) size 4750] j=[j : j => net.minecraft.crash.CallableSuspiciousClasses (true) size 3261] el=[el : el => net.minecraft.network.packet.Packet56MapChunks (true) size 4541] tw=[tw : tw => net.minecraft.entity.monster.EntityZombie (true) size 11945] ej=[ej : ej => net.minecraft.network.packet.Packet51MapChunk (true) size 4556] agi=[agi : agi => net.minecraft.world.gen.structure.ComponentMineshaftCorridor (true) size 6198] ub=[ub : ub => net.minecraft.entity.passive.EntityVillager (true) size 16745] ep=[ep : ep => net.minecraft.network.packet.Packet1Login (true) size 2313] ud=[ud : ud => net.minecraft.entity.player.InventoryPlayer (true) size 9352] aoi=[aoi : aoi => net.minecraft.block.BlockFire (true) size 9418] aof=[aof : aof => net.minecraft.block.BlockFarmland (true) size 3926] ts=[ts : ts => net.minecraft.entity.monster.EntitySlime (true) size 5904] tg=[tg : tg => net.minecraft.entity.monster.EntityEnderman (true) size 9412] bv=[bv : bv => net.minecraft.util.StringTranslate (true) size 3070] anz=[anz : anz => net.minecraft.block.BlockDoor (true) size 6791] anp=[anp : anp => net.minecraft.block.BlockComparator (true) size 6127] sv=[sv : sv => net.minecraft.entity.item.EntityMinecartContainer (true) size 5210] ss=[ss : ss => net.minecraft.entity.item.EntityItem (true) size 8020] anm=[anm : anm => net.minecraft.block.BlockCocoa (true) size 5336] st=[st : st => net.minecraft.entity.item.EntityMinecart (true) size 20506] sy=[sy : sy => net.minecraft.entity.item.EntityMinecartEmpty (true) size 1152] anr=[anr : anr => net.minecraft.block.BlockCrops (true) size 4882] sw=[sw : sw => net.minecraft.entity.item.EntityMinecartFurnace (true) size 4071] sx=[sx : sx => net.minecraft.entity.item.EntityMinecartHopper (true) size 3390] ane=[ane : ane => net.minecraft.block.BlockFlower (true) size 3559] anf=[anf : anf => net.minecraft.block.BlockButton (true) size 6984] sk=[sk : sk => net.minecraft.entity.boss.EntityDragon (true) size 12805] ang=[ang : ang => net.minecraft.block.BlockCactus (true) size 4079] net.minecraft.client.ClientBrandRetriever=[net/minecraft/client/ClientBrandRetriever : net.minecraft.client.ClientBrandRetriever => net.minecraft.client.ClientBrandRetriever (false) size 694] sm=[sm : sm => net.minecraft.entity.boss.EntityWither (true) size 11139] sp=[sp : sp => net.minecraft.entity.effect.EntityLightningBolt (true) size 3177] ank=[ank : ank => net.minecraft.block.BlockChest (true) size 9099] sg=[sg : sg => net.minecraft.entity.boss.IBossDisplayData (false) size 182] rz=[rz : rz => net.minecraft.entity.passive.EntitySheep (true) size 7348] co=[co : co => net.minecraft.network.TcpConnection (true) size 8309] amy=[amy : amy => net.minecraft.block.BlockRailBase (true) size 4263] cn=[cn : cn => net.minecraft.network.MemoryConnection (true) size 3236] amz=[amz : amz => net.minecraft.block.BlockBaseRailLogic (true) size 5680] ci=[ci : ci => net.minecraft.nbt.CompressedStreamTools (true) size 3478] cg=[cg : cg => net.minecraft.nbt.NBTTagList (true) size 2959] rw=[rw : rw => net.minecraft.entity.passive.EntityMooshroom (true) size 2488] rx=[rx : rx => net.minecraft.entity.passive.EntityOcelot (true) size 6568] rm=[rm : rm => net.minecraft.village.VillageCollection (true) size 5751] als=[als : als => net.minecraft.world.storage.WorldInfo (true) size 9344] alq=[alq : alq => net.minecraft.world.storage.SaveHandler (true) size 5737] alm=[alm : alm => net.minecraft.world.chunk.storage.AnvilSaveHandler (true) size 1234] ali=[ali : ali => net.minecraft.world.storage.MapData (true) size 5560] qa=[qa : qa => net.minecraft.entity.ai.EntityAIAttackOnCollide (true) size 2784] akq=[akq : akq => net.minecraft.world.gen.layer.GenLayer (true) size 3731] aa=[aa : aa => net.minecraft.command.CommandHandler (true) size 4742] akj=[akj : akj => net.minecraft.world.gen.layer.GenLayerBiome (true) size 1122] aqv=[aqv : aqv => net.minecraft.block.BlockTallGrass (true) size 3905] nt=[nt : nt => net.minecraft.entity.EntityList (true) size 6113] bbo=[bbo : bbo => net.minecraft.client.model.ModelBase (false) size 1808] aqq=[aqq : aqq => net.minecraft.block.BlockStem (true) size 6133] nn=[nn : nn => net.minecraft.entity.Entity (true) size 36908] net.minecraft.server.MinecraftServer=[net/minecraft/server/MinecraftServer : net.minecraft.server.MinecraftServer => net.minecraft.server.MinecraftServer (true) size 25426] aqz=[aqz : aqz => net.minecraft.block.Block (true) size 48770] aqy=[aqy : aqy => net.minecraft.block.BlockPane (true) size 4245] abr=[abr : abr => net.minecraft.world.Explosion (true) size 5891] arg=[arg : arg => net.minecraft.block.BlockTorch (true) size 4626] of=[of : of => net.minecraft.entity.EntityLivingBase (true) size 32443] arf=[arf : arf => net.minecraft.block.BlockSnow (true) size 3705] abw=[abw : abw => net.minecraft.world.World (true) size 63177] arm=[arm : arm => net.minecraft.block.BlockVine (true) size 6542] ark=[ark : ark => net.minecraft.block.BlockTripWireSource (true) size 7037] bbs=[bbs : bbs => net.minecraft.client.model.TexturedQuad (false) size 1758] arj=[arj : arj => net.minecraft.block.BlockLog (true) size 3030] og=[og : og => net.minecraft.entity.EntityLiving (true) size 19031] ari=[ari : ari => net.minecraft.block.BlockTrapDoor (true) size 4639] aab=[aab : aab => net.minecraft.item.crafting.FurnaceRecipes (true) size 4015] arw=[arw : arw => net.minecraft.tileentity.TileEntityBeacon (true) size 6111] arx=[arx : arx => net.minecraft.tileentity.TileEntityBrewingStand (true) size 6074] aaf=[aaf : aaf => net.minecraft.item.crafting.CraftingManager (true) size 13127] asg=[asg : asg => net.minecraft.tileentity.TileEntityFurnace (true) size 6408] asi=[asi : asi => net.minecraft.tileentity.TileEntityHopper (true) size 8525] aaw=[aaw : aaw => net.minecraft.enchantment.EnchantmentHelper (true) size 7690] aau=[aau : aau => net.minecraft.enchantment.Enchantment (true) size 3897] asp=[asp : asp => net.minecraft.tileentity.TileEntity (true) size 6911] aon=[aon : aon => net.minecraft.block.BlockGrass (true) size 3471] aos=[aos : aos => net.minecraft.block.BlockSand (true) size 2351] bdb=[bdb : bdb => net.minecraft.client.multiplayer.ChunkProviderClient (false) size 3158] bdc=[bdc : bdc => net.minecraft.client.multiplayer.PlayerControllerMP (false) size 9008] aoy=[aoy : aoy => net.minecraft.block.BlockLadder (true) size 3071] bdd=[bdd : bdd => net.minecraft.client.multiplayer.WorldClient (false) size 9625] aoz=[aoz : aoz => net.minecraft.block.BlockLeaves (true) size 7719] apb=[apb : apb => net.minecraft.block.BlockLever (true) size 5734] apd=[apd : apd => net.minecraft.block.BlockFlowing (true) size 5090] apc=[apc : apc => net.minecraft.block.BlockFluid (true) size 9565] apj=[apj : apj => net.minecraft.block.BlockMushroom (true) size 2377] api=[api : api => net.minecraft.block.BlockMobSpawner (true) size 1469] mk=[mk : mk => net.minecraft.util.WeightedRandomChestContent (true) size 2389] bdy=[bdy : bdy => net.minecraft.client.particle.EntityFireworkStarterFX (false) size 7125] apl=[apl : apl => net.minecraft.block.BlockNetherStalk (true) size 3610] apk=[apk : apk => net.minecraft.block.BlockMycelium (true) size 2821] apr=[apr : apr => net.minecraft.block.BlockOre (true) size 1954] aps=[aps : aps => net.minecraft.block.BlockPortal (true) size 5263] bcp=[bcp : bcp => net.minecraft.client.model.ModelBox (false) size 2728] apy=[apy : apy => net.minecraft.block.BlockPumpkin (true) size 3730] bcf=[bcf : bcf => net.minecraft.client.model.PositionTextureVertex (false) size 923] aqc=[aqc : aqc => net.minecraft.block.BlockRedstoneOre (true) size 3410] bcy=[bcy : bcy => net.minecraft.client.multiplayer.GuiConnecting (false) size 3661] aqb=[aqb : aqb => net.minecraft.block.BlockRedstoneWire (true) size 8715] aqe=[aqe : aqe => net.minecraft.block.BlockReed (true) size 3191] aqi=[aqi : aqi => net.minecraft.block.BlockSapling (true) size 3749] aqk=[aqk : aqk => net.minecraft.block.BlockSkull (true) size 6422] nj=[nj : nj => net.minecraft.potion.PotionEffect (true) size 5122] bcw=[bcw : bcw => net.minecraft.client.multiplayer.NetClientHandler (false) size 38773] bcu=[bcu : bcu => net.minecraft.client.model.ModelRenderer (false) size 4948] jx=[jx : jx => net.minecraft.entity.EntityTrackerEntry (true) size 11005] jy=[jy : jy => net.minecraft.network.NetLoginHandler (true) size 6525] afp=[afp : afp => net.minecraft.world.gen.feature.WorldGenDungeons (true) size 3585] avb=[avb : avb => net.minecraft.client.gui.GuiCreateWorld (false) size 9641] jv=[jv : jv => net.minecraft.entity.player.EntityPlayerMP (true) size 20120] afo=[afo : afo => net.minecraft.world.gen.feature.WorldGenHugeTrees (true) size 4707] bfj=[bfj : bfj => net.minecraft.client.renderer.ItemRenderer (false) size 14333] jw=[jw : jw => net.minecraft.item.ItemInWorldManager (true) size 8353] afr=[afr : afr => net.minecraft.world.gen.feature.WorldGenTaiga1 (true) size 2467] bfe=[bfe : bfe => net.minecraft.client.renderer.EntityRenderer (false) size 29195] afq=[afq : afq => net.minecraft.world.gen.feature.WorldGenMinable (true) size 2544] jr=[jr : jr => net.minecraft.world.gen.ChunkProviderServer (true) size 6996] js=[js : js => net.minecraft.world.WorldServer (true) size 20002] bfq=[bfq : bfq => net.minecraft.client.renderer.Tessellator (false) size 7865] jq=[jq : jq => net.minecraft.server.management.PlayerInstance (true) size 4525] auy=[auy : auy => net.minecraft.client.gui.GuiControls (false) size 2085] afg=[afg : afg => net.minecraft.world.gen.feature.WorldGenShrub (true) size 1493] bfr=[bfr : bfr => net.minecraft.client.renderer.RenderBlocks (false) size 128087] jl=[jl : jl => net.minecraft.world.WorldServerMulti (true) size 913] auw=[auw : auw => net.minecraft.client.gui.GuiChat (false) size 6893] bfl=[bfl : bfl => net.minecraft.client.renderer.RenderGlobal (false) size 42545] jm=[jm : jm => net.minecraft.entity.EntityTracker (true) size 5493] afl=[afl : afl => net.minecraft.world.gen.feature.WorldGenBigMushroom (true) size 2806] aga=[aga : aga => net.minecraft.world.gen.feature.WorldGenTrees (true) size 4297] kd=[kd : kd => net.minecraft.network.NetworkListenThread (true) size 2427] ka=[ka : ka => net.minecraft.network.NetServerHandler (true) size 23196] afx=[afx : afx => net.minecraft.world.gen.feature.WorldGenTaiga2 (true) size 2803] avj=[avj : avj => net.minecraft.client.gui.GuiIngame (false) size 20808] afy=[afy : afy => net.minecraft.world.gen.feature.WorldGenSwamp (true) size 3186] afz=[afz : afz => net.minecraft.world.gen.feature.WorldGenTallGrass (true) size 1109] aem=[aem : aem => net.minecraft.world.gen.MapGenRavine (true) size 5323] beh=[beh : beh => net.minecraft.client.particle.EffectRenderer (false) size 5867] aeq=[aeq : aeq => net.minecraft.world.gen.MapGenCaves (true) size 5736] aep=[aep : aep => net.minecraft.world.gen.ChunkProviderHell (true) size 12943] aee=[aee : aee => net.minecraft.world.chunk.storage.AnvilChunkLoader (true) size 10370] zz=[zz : zz => net.minecraft.item.crafting.RecipeFireworks (true) size 3773] aei=[aei : aei => net.minecraft.world.WorldProvider (true) size 9602] bey=[bey : bey => net.minecraft.client.entity.EntityOtherPlayerMP (false) size 3764] bex=[bex : bex => net.minecraft.client.entity.EntityPlayerSP (false) size 12314] afc=[afc : afc => net.minecraft.world.gen.feature.WorldGenDeadBush (true) size 1040] bes=[bes : bes => net.minecraft.client.particle.EntityDiggingFX (false) size 3027] lg=[lg : lg => net.minecraft.util.CryptManager (true) size 5160] awq=[awq : awq => net.minecraft.client.gui.achievement.GuiAchievements (false) size 10370] la=[la : la => net.minecraft.stats.StatList (true) size 6252] aew=[aew : aew => net.minecraft.world.gen.feature.WorldGenBigTree (true) size 7442] aet=[aet : aet => net.minecraft.world.gen.ChunkProviderGenerate (true) size 13463] lc=[lc : lc => net.minecraft.logging.LogAgent (true) size 2719] aeu=[aeu : aeu => net.minecraft.world.gen.ChunkProviderEnd (true) size 8482] bfa=[bfa : bfa => net.minecraft.client.renderer.WorldRenderer (false) size 5346] awg=[awg : awg => net.minecraft.client.gui.GuiSlot (false) size 7228] aex=[aex : aex => net.minecraft.world.gen.feature.WorldGenForest (true) size 2586] adr=[adr : adr => net.minecraft.world.chunk.Chunk (true) size 21606] zh=[zh : zh => net.minecraft.item.ItemBlock (true) size 3994] bhj=[bhj : bhj => net.minecraft.client.renderer.entity.RenderPlayer (false) size 13774] ata=[ata : ata => net.minecraft.util.MovingObjectPosition (true) size 1081] bho=[bho : bho => net.minecraft.client.renderer.entity.RenderSnowMan (false) size 2816] ast=[ast : ast => net.minecraft.block.BlockPistonBase (true) size 9462] hn=[hn : hn => net.minecraft.server.management.ServerConfigurationManager (true) size 19703] bhu=[bhu : bhu => net.minecraft.client.renderer.entity.RenderVillager (false) size 3112] acq=[acq : acq => net.minecraft.world.biome.BiomeGenBase (true) size 8746] yh=[yh : yh => net.minecraft.item.ItemMap (true) size 6122] ye=[ye : ye => net.minecraft.item.ItemStack (true) size 15004] is=[is : is => net.minecraft.server.dedicated.DedicatedServer (true) size 10207] bgl=[bgl : bgl => net.minecraft.client.renderer.entity.RenderManager (false) size 9834] yc=[yc : yc => net.minecraft.item.Item (true) size 30913] acl=[acl : acl => net.minecraft.world.ChunkCache (true) size 6615] yd=[yd : yd => net.minecraft.item.EnumToolMaterial (true) size 2100] yb=[yb : yb => net.minecraft.item.ItemHoe (true) size 2424] aci=[aci : aci => net.minecraft.world.SpawnerAnimals (true) size 7002] acg=[acg : acg => net.minecraft.world.WorldType (true) size 5543] atv=[atv : atv => net.minecraft.client.Minecraft (false) size 41736] acf=[acf : acf => net.minecraft.world.IBlockAccess (true) size 752] aul=[aul : aul => net.minecraft.client.settings.GameSettings (false) size 17130] bgw=[bgw : bgw => net.minecraft.client.renderer.entity.RenderItem (false) size 12018] yx=[yx : yx => net.minecraft.item.ItemShears (true) size 3596] yw=[yw : yw => net.minecraft.item.ItemSeeds (true) size 2008] bgu=[bgu : bgu => net.minecraft.client.renderer.entity.RenderBiped (false) size 9700] yv=[yv : yv => net.minecraft.item.ItemSeedFood (true) size 1895] je=[je : je => net.minecraft.server.gui.StatsComponent (true) size 4045] yq=[yq : yq => net.minecraft.item.EnumRarity (false) size 1204] aus=[aus : aus => net.minecraft.util.Session (false) size 1419] iy=[iy : iy => net.minecraft.server.ServerListenThread (true) size 3680] acv=[acv : acv => net.minecraft.world.biome.WorldChunkManager (true) size 5312] acu=[acu : acu => net.minecraft.world.biome.BiomeDecorator (true) size 9242] bhb=[bhb : bhb => net.minecraft.client.renderer.entity.RendererLivingEntity (false) size 11928] yi=[yi : yi => net.minecraft.item.ItemBucketMilk (true) size 1145] 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aa (input size 3939), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aa (new size 5482) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aab (input size 2402), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aab (new size 4143) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aaf (input size 12619), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aaf (new size 13568) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aau (input size 3121), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aau (new size 4238) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aaw (input size 6149), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aaw (new size 8100) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class abr (input size 5179), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for abr (new size 6217) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class abw (input size 41161), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for abw (new size 65948) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class acg (input size 1466), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for acg (new size 5736) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aci (input size 5307), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aci (new size 7609) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class acl (input size 1872), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for acl (new size 6698) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class acq (input size 5752), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for acq (new size 8976) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class acu (input size 5564), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for acu (new size 9450) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class acv (input size 3334), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for acv (new size 5661) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class adr (input size 14285), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for adr (new size 22474) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aee (input size 8059), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aee (new size 11187) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aei (input size 2328), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aei (new size 9679) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aem (input size 3290), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aem (new size 5438) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aep (input size 8054), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aep (new size 13481) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aet (input size 8910), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aet (new size 13864) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aeu (input size 5462), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aeu (new size 8907) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aew (input size 5987), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aew (new size 8127) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class afc (input size 745), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for afc (new size 1069) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class afg (input size 990), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for afg (new size 1543) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class afl (input size 1924), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for afl (new size 2847) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class afo (input size 2993), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for afo (new size 4778) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class afp (input size 3392), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for afp (new size 3981) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class afq (input size 1534), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for afq (new size 2563) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class afz (input size 782), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for afz (new size 1124) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aga (input size 2816), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aga (new size 4373) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class agi (input size 5425), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for agi (new size 6676) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class ahl (input size 6228), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for ahl (new size 6896) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class ahm (input size 5886), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for ahm (new size 6501) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class ahq (input size 3334), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for ahq (new size 4358) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class ahw (input size 3017), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for ahw (new size 3717) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aia (input size 4054), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aia (new size 4765) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aif (input size 3882), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aif (new size 4536) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class ain (input size 4861), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for ain (new size 6289) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class ait (input size 9150), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for ait (new size 12326) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aiv (input size 3127), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aiv (new size 4464) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aji (input size 3806), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aji (new size 4648) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class ajj (input size 870), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for ajj (new size 1271) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class ajm (input size 3385), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for ajm (new size 5961) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class akj (input size 1054), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for akj (new size 1205) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class akq (input size 2163), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for akq (new size 3742) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class ali (input size 4285), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for ali (new size 6010) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class alq (input size 4811), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for alq (new size 6395) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class als (input size 6986), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for als (new size 9831) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class amy (input size 2404), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for amy (new size 4363) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class amz (input size 5119), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for amz (new size 6158) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class anf (input size 4927), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for anf (new size 7195) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class ang (input size 1726), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for ang (new size 4171) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class ank (input size 6965), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for ank (new size 9237) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class anm (input size 2518), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for anm (new size 5439) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class anr (input size 2499), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for anr (new size 4989) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class anz (input size 3708), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for anz (new size 7081) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aof (input size 2166), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aof (new size 4018) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aoi (input size 4755), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aoi (new size 9610) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aon (input size 980), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aon (new size 3500) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aos (input size 1643), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aos (new size 2370) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aoz (input size 4080), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aoz (new size 8191) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class apc (input size 3752), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for apc (new size 9810) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class apd (input size 4256), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for apd (new size 5156) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class apk (input size 940), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for apk (new size 2864) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class apl (input size 1361), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for apl (new size 3680) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class apy (input size 2224), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for apy (new size 3783) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aqb (input size 5257), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aqb (new size 8844) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aqc (input size 2234), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aqc (new size 3650) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aqi (input size 2194), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aqi (new size 3914) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aqq (input size 2925), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aqq (new size 6288) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aqv (input size 1288), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aqv (new size 3946) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aqy (input size 2263), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aqy (new size 4351) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aqz (input size 28719), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aqz (new size 50101) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class arj (input size 1184), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for arj (new size 3135) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class arw (input size 4505), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for arw (new size 6306) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class arx (input size 4808), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for arx (new size 6439) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class asg (input size 5214), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for asg (new size 6635) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class asi (input size 6979), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for asi (new size 8906) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class asp (input size 4426), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for asp (new size 7518) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class ast (input size 6492), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for ast (new size 9704) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class ata (input size 777), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for ata (new size 1109) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class atv (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for atv (new size 41724) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aul (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aul (new size 17121) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class aus (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for aus (new size 1410) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class auw (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for auw (new size 6884) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class auy (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for auy (new size 2076) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class avb (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for avb (new size 9632) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class avj (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for avj (new size 20799) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class awg (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for awg (new size 7219) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class awq (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for awq (new size 10361) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class awy (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for awy (new size 14211) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class axm (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for axm (new size 15968) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class b (input size 6336), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for b (new size 7918) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class bbo (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for bbo (new size 1799) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class bbs (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for bbs (new size 1749) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class bcf (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for bcf (new size 914) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class bcp (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for bcp (new size 2719) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class bcu (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for bcu (new size 4939) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class bcw (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for bcw (new size 38761) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class bcy (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for bcy (new size 3652) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class bdb (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for bdb (new size 3149) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class bdc (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for bdc (new size 8999) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class bdd (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for bdd (new size 9616) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class bdy (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for bdy (new size 7116) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class beh (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for beh (new size 5858) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class bes (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for bes (new size 3018) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class bex (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for bex (new size 12305) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class bey (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for bey (new size 3755) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class bfa (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for bfa (new size 5337) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class bfe (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for bfe (new size 29186) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class bfj (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for bfj (new size 14324) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class bfl (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for bfl (new size 42533) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class bfq (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for bfq (new size 7856) 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Runtime patching class bfr (input size 0), found 1 patch 2014-08-17 22:03:28 [FINE] [ForgeModLoader] Successfully applied runtime patches for bfr (new size 128069) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class bgl (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for bgl (new size 9825) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class bgu (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for bgu (new size 9691) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class bgw (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for bgw (new size 12009) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class bhb (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for bhb (new size 11919) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class bhj (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for bhj (new size 13765) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class bho (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for bho (new size 2807) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class bhu (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for bhu (new size 3103) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class big (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for big (new size 4847) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class bik (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for bik (new size 7116) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class bil (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for bil (new size 6723) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class biv (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for biv (new size 3655) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class bjo (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for bjo (new size 1749) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class bkd (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for bkd (new size 3867) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class bkz (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for bkz (new size 7485) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class blc (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for blc (new size 2469) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class bln (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for bln (new size 12611) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class blt (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for blt (new size 14850) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class blv (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for blv (new size 7165) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class bma (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for bma (new size 1587) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class bv (input size 2953), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for bv (new size 3941) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class cg (input size 2387), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for cg (new size 3235) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class cn (input size 1907), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for cn (new size 3551) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class co (input size 7538), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for co (new size 9577) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class dn (input size 2341), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for dn (new size 3047) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class ej (input size 3592), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for ej (new size 4927) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class el (input size 3184), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for el (new size 4773) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class ep (input size 1643), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for ep (new size 2505) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class ey (input size 7307), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for ey (new size 8741) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class hn (input size 16339), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for hn (new size 21139) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class is (input size 9596), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for is (new size 11773) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class iy (input size 3120), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for iy (new size 4327) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class j (input size 3241), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for j (new size 3877) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class je (input size 3529), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for je (new size 4594) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class jm (input size 4614), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for jm (new size 5995) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class jq (input size 3641), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for jq (new size 4748) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class jr (input size 5049), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for jr (new size 7487) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class js (input size 14788), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for js (new size 20910) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class jv (input size 16266), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for jv (new size 21056) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class jw (input size 4441), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for jw (new size 8382) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class jx (input size 9464), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for jx (new size 11376) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class jy (input size 5611), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for jy (new size 7578) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class ka (input size 19447), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for ka (new size 24602) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class kd (input size 2100), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for kd (new size 2964) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class la (input size 5653), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for la (new size 6557) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class lc (input size 2403), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for lc (new size 3405) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class m (input size 3954), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for m (new size 5656) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class mk (input size 1496), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for mk (new size 2532) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class nj (input size 2949), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for nj (new size 5363) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class nn (input size 25323), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for nn (new size 38606) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class nt (input size 5436), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for nt (new size 6703) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class of (input size 25356), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for of (new size 33399) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class og (input size 15924), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for og (new size 19692) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class qa (input size 2127), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for qa (new size 2854) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class rm (input size 4626), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for rm (new size 6014) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class rx (input size 5673), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for rx (new size 6765) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class rz (input size 5400), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for rz (new size 7520) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class sk (input size 10934), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for sk (new size 13165) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class sm (input size 8780), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for sm (new size 11364) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class sp (input size 2246), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for sp (new size 3264) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class ss (input size 5611), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for ss (new size 8314) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class st (input size 13682), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for st (new size 21348) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class sv (input size 3861), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for sv (new size 5287) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class sw (input size 3102), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for sw (new size 4143) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class sx (input size 2385), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for sx (new size 3481) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class tg (input size 7849), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for tg (new size 9720) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class ts (input size 5154), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for ts (new size 6088) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class tw (input size 9443), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for tw (new size 12430) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class ub (input size 14277), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for ub (new size 17376) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class ud (input size 6842), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for ud (new size 9890) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class uf (input size 24208), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for uf (new size 38309) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class va (input size 6521), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for va (new size 7890) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class vg (input size 450), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for vg (new size 743) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class vh (input size 739), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for vh (new size 1093) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class vm (input size 4161), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for vm (new size 5110) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class vp (input size 2191), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for vp (new size 2795) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class vq (input size 1548), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for vq (new size 2083) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class vw (input size 640), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for vw (new size 1088) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class wd (input size 2022), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for wd (new size 3019) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class we (input size 1361), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for we (new size 2806) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class wh (input size 2781), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for wh (new size 4454) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class wj (input size 1536), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for wj (new size 2073) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class wp (input size 2077), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for wp (new size 4035) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class wr (input size 2578), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for wr (new size 3684) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class ww (input size 1879), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for ww (new size 5751) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class xj (input size 1612), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for xj (new size 2748) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class xl (input size 4249), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for xl (new size 7521) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class yb (input size 1161), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for yb (new size 2467) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class yc (input size 21098), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for yc (new size 32042) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class yd (input size 1646), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for yd (new size 2216) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class ye (input size 8938), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for ye (new size 15901) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class yq (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for yq (new size 1195) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class yv (input size 625), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for yv (new size 1911) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class yw (input size 679), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for yw (new size 2023) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class zh (input size 1655), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for zh (new size 4088) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class zz (input size 3419), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for zz (new size 3972) 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.ClientBrandRetriever (input size 0), found 1 patch 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.ClientBrandRetriever (new size 685) 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class FMLCorePlugin run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer net.minecraftforge.transformers.ForgeAccessTransformer 2014-08-17 22:03:29 [iNFO] [sTDOUT] Loaded 110 rules from AccessTransformer config file forge_at.cfg 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer net.minecraftforge.transformers.EventTransformer 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin FMLForgePlugin 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class FMLForgePlugin run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod DepLoader {codechicken.core.launch.DepLoader} class transformers 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for DepLoader {codechicken.core.launch.DepLoader} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin DepLoader 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class DepLoader run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod WCFMLLoadingPlugin {worldcore.asm.WCFMLLoadingPlugin} class transformers 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for WCFMLLoadingPlugin {worldcore.asm.WCFMLLoadingPlugin} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin WCFMLLoadingPlugin 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class WCFMLLoadingPlugin run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod AM2PreloaderContainer {am2.preloader.AM2PreloaderContainer} class transformers 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer am2.preloader.AccessTransformers 2014-08-17 22:03:29 [iNFO] [sTDOUT] Loaded 6 rules from AccessTransformer config file AM2_at.cfg 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer am2.preloader.BytecodeTransformers 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for AM2PreloaderContainer {am2.preloader.AM2PreloaderContainer} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin AM2PreloaderContainer 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] MC located at: C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\. 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] AMCore >> Located Thaumcraft 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class AM2PreloaderContainer run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod AppEngCore {appeng.transformer.AppEngCore} class transformers 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer appeng.transformer.AppEngASMTransformer 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for AppEngCore {appeng.transformer.AppEngCore} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin AppEngCore 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class AppEngCore run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod BOPFMLLoadingPlugin {biomesoplenty.asm.BOPFMLLoadingPlugin} class transformers 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for BOPFMLLoadingPlugin {biomesoplenty.asm.BOPFMLLoadingPlugin} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin BOPFMLLoadingPlugin 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class BOPFMLLoadingPlugin run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod CalclaviaPluginLoader {calclavia.lib.CalclaviaPluginLoader} class transformers 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer calclavia.lib.asm.CalclaviaTransformer 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer calclavia.lib.asm.ConfigTransformer 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for CalclaviaPluginLoader {calclavia.lib.CalclaviaPluginLoader} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin CalclaviaPluginLoader 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class CalclaviaPluginLoader run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod CodeChickenCorePlugin {codechicken.core.launch.CodeChickenCorePlugin} class transformers 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer codechicken.lib.asm.ClassHeirachyManager 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer codechicken.core.asm.CodeChickenAccessTransformer 2014-08-17 22:03:29 [iNFO] [sTDOUT] Loaded 40 rules from AccessTransformer config file fml_at.cfg 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer codechicken.core.asm.InterfaceDependancyTransformer 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer codechicken.core.asm.TweakTransformer 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer codechicken.core.asm.FeatureHackTransformer 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer codechicken.core.asm.DelegatedTransformer 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer codechicken.core.asm.DefaultImplementationTransformer 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for CodeChickenCorePlugin {codechicken.core.launch.CodeChickenCorePlugin} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin CodeChickenCorePlugin 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class CodeChickenCorePlugin run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod LoadingPlugin {cofh.asm.LoadingPlugin} class transformers 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer cofh.asm.TransformerCore 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer cofh.asm.TransformerMasquerade 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for LoadingPlugin {cofh.asm.LoadingPlugin} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin LoadingPlugin 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class LoadingPlugin run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod IdfixCore {info.jbcs.minecraft.idfix.IdfixCore} class transformers 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer info.jbcs.minecraft.idfix.Transformer 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for IdfixCore {info.jbcs.minecraft.idfix.IdfixCore} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin IdfixCore 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class IdfixCore run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod IC2core {ic2.core.coremod.IC2core} class transformers 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for IC2core {ic2.core.coremod.IC2core} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin IC2core 2014-08-17 22:03:29 [iNFO] [iC2-core] Loaded library ejml-0.23.jar. 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class IC2core run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod FMLPlugin {invtweaks.forge.asm.FMLPlugin} class transformers 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer invtweaks.forge.asm.ContainerTransformer 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for FMLPlugin {invtweaks.forge.asm.FMLPlugin} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin FMLPlugin 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class FMLPlugin run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod LogisticsPipesCoreLoader {logisticspipes.asm.LogisticsPipesCoreLoader} class transformers 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer logisticspipes.asm.LogisticsClassTransformer 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer logisticspipes.asm.LogisticsAccessTransformer 2014-08-17 22:03:29 [iNFO] [sTDOUT] Loaded 18 rules from AccessTransformer config file lp_at_1.6.4.cfg 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for LogisticsPipesCoreLoader {logisticspipes.asm.LogisticsPipesCoreLoader} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin LogisticsPipesCoreLoader 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class LogisticsPipesCoreLoader run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod LoadingHook {mekanism.common.asm.LoadingHook} class transformers 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for LoadingHook {mekanism.common.asm.LoadingHook} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin LoadingHook 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class LoadingHook run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod MicdoodlePlugin {micdoodle8.mods.miccore.MicdoodlePlugin} class transformers 2014-08-17 22:03:29 [iNFO] [sTDOUT] Successfully Registered Transformer 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer micdoodle8.mods.miccore.MicdoodleTransformer 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for MicdoodlePlugin {micdoodle8.mods.miccore.MicdoodlePlugin} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin MicdoodlePlugin 2014-08-17 22:03:29 [iNFO] [sTDOUT] [Micdoodle8Core]: Patching game... 2014-08-17 22:03:29 [iNFO] [sTDOUT] [Micdoodle8Core]: Patching game... 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class MicdoodlePlugin run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod OpenBlocksCorePlugin {openblocks.OpenBlocksCorePlugin} class transformers 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer openblocks.asm.OpenBlocksClassTransformer 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for OpenBlocksCorePlugin {openblocks.OpenBlocksCorePlugin} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin OpenBlocksCorePlugin 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class OpenBlocksCorePlugin run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod OpenModsCorePlugin {openmods.OpenModsCorePlugin} class transformers 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer openmods.OpenModsClassTransformer 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for OpenModsCorePlugin {openmods.OpenModsCorePlugin} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin OpenModsCorePlugin 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class OpenModsCorePlugin run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod CoreLoader {powercrystals.core.CoreLoader} class transformers 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer powercrystals.core.at.PCCAccessTransformer 2014-08-17 22:03:29 [iNFO] [sTDOUT] Loaded 40 rules from AccessTransformer config file fml_at.cfg 2014-08-17 22:03:29 [iNFO] [sTDOUT] Adding Accesstransformer map: pcc_at.cfg 2014-08-17 22:03:29 [iNFO] [sTDOUT] Loaded 57 rules from AccessTransformer config file pcc_at.cfg 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer powercrystals.core.asm.PCCASMTransformer 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for CoreLoader {powercrystals.core.CoreLoader} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin CoreLoader 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class CoreLoader run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod ResonantPluginLoader {resonant.core.ResonantPluginLoader} class transformers 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer resonant.core.asm.Transformer 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for ResonantPluginLoader {resonant.core.ResonantPluginLoader} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin ResonantPluginLoader 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class ResonantPluginLoader run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod TConstructLoaderContainer {tconstruct.preloader.TConstructLoaderContainer} class transformers 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer tconstruct.preloader.AccessTransformers 2014-08-17 22:03:29 [iNFO] [sTDOUT] Loaded 40 rules from AccessTransformer config file fml_at.cfg 2014-08-17 22:03:29 [iNFO] [TCon-Preloader] [AT] Loading AT file: TConstruct_AT.cfg 2014-08-17 22:03:29 [iNFO] [sTDOUT] Loaded 58 rules from AccessTransformer config file TConstruct_AT.cfg 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer tconstruct.preloader.ASMInterfaceRepair 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for TConstructLoaderContainer {tconstruct.preloader.TConstructLoaderContainer} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin TConstructLoaderContainer 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Coremod plugin class TConstructLoaderContainer run successfully 2014-08-17 22:03:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injecting coremod UELoader {universalelectricity.core.UELoader} class transformers 2014-08-17 22:03:29 [FINEST] [ForgeModLoader] Registering transformer universalelectricity.core.asm.UniversalTransformer 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Injection complete 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin for UELoader {universalelectricity.core.UELoader} 2014-08-17 22:03:29 [FINE] [ForgeModLoader] Running coremod plugin UELoader 2014-08-17 22:03:30 [FINE] [ForgeModLoader] Coremod plugin class UELoader run successfully 2014-08-17 22:03:30 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker 2014-08-17 22:03:30 [FINE] [ForgeModLoader] Validating minecraft 2014-08-17 22:03:30 [FINE] [ForgeModLoader] Minecraft validated, launching... 2014-08-17 22:03:30 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.server.MinecraftServer (input size 20475), found 1 patch 2014-08-17 22:03:30 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.server.MinecraftServer (new size 27501) 2014-08-17 22:03:30 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/world/IBlockAccess (input size 224), found 1 patch 2014-08-17 22:03:30 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/world/IBlockAccess (new size 743) 2014-08-17 22:03:30 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/world/WorldServerMulti (input size 573), found 1 patch 2014-08-17 22:03:30 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/world/WorldServerMulti (new size 1076) 2014-08-17 22:03:30 [iNFO] [ForgeModLoader] AMCore >> Altering definition of net.minecraft.world.World 2014-08-17 22:03:30 [FINE] [ForgeModLoader] AMCore >> Located target method a(Lnn;Ljava/lang/String;FF)V 2014-08-17 22:03:30 [FINE] [ForgeModLoader] AMCore >> Located target method insn node: nameLjava/lang/String; 2014-08-17 22:03:30 [FINE] [ForgeModLoader] AMCore >> Success! Inserted operations! 2014-08-17 22:03:30 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/network/packet/NetHandler (input size 4778), found 1 patch 2014-08-17 22:03:30 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/network/packet/NetHandler (new size 9784) 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/nbt/CompressedStreamTools (input size 1689), found 1 patch 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/nbt/CompressedStreamTools (new size 3869) 2014-08-17 22:03:31 [iNFO] [sTDOUT] Galacticraft successfully injected bytecode into: hn (4 / 6) 2014-08-17 22:03:31 [iNFO] [ForgeModLoader] [OpenBlocks] Trying to patch EntityPlayer.isInBed (class: uf) 2014-08-17 22:03:31 [iNFO] [ForgeModLoader] [OpenBlocks] isInBed patch applied. Enabling sleeping bags 2014-08-17 22:03:31 [iNFO] [sTDOUT] Galacticraft successfully injected bytecode into: of (1 / 1) 2014-08-17 22:03:31 [iNFO] [ForgeModLoader] Launching wrapped minecraft {net.minecraft.server.MinecraftServer} 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/block/BlockFlower (input size 1521), found 1 patch 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/block/BlockFlower (new size 3588) 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/block/BlockOre (input size 1563), found 1 patch 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/block/BlockOre (new size 2039) 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/block/BlockMushroom (input size 1825), found 1 patch 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/block/BlockMushroom (new size 2645) 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/block/BlockTorch (input size 2798), found 1 patch 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/block/BlockTorch (new size 4781) 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/block/BlockMobSpawner (input size 732), found 1 patch 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/block/BlockMobSpawner (new size 1487) 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/block/BlockLadder (input size 1677), found 1 patch 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/block/BlockLadder (new size 3071) 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/block/BlockLever (input size 4434), found 1 patch 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/block/BlockLever (new size 5947) 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/block/BlockSnow (input size 2225), found 1 patch 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/block/BlockSnow (new size 3787) 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/block/BlockReed (input size 1736), found 1 patch 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/block/BlockReed (new size 3227) 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/block/BlockPortal (input size 2847), found 1 patch 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/block/BlockPortal (new size 5427) 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/block/BlockTrapDoor (input size 2767), found 1 patch 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/block/BlockTrapDoor (new size 4791) 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/block/BlockVine (input size 4868), found 1 patch 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/block/BlockVine (new size 6985) 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/block/BlockTripWireSource (input size 5544), found 1 patch 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/block/BlockTripWireSource (new size 7403) 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/block/BlockSkull (input size 4373), found 1 patch 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/block/BlockSkull (new size 6663) 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/block/BlockComparator (input size 3837), found 1 patch 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/block/BlockComparator (new size 6288) 2014-08-17 22:03:31 [iNFO] [sTDOUT] Galacticraft successfully injected bytecode into: ss (2 / 2) 2014-08-17 22:03:31 [iNFO] [ForgeModLoader] AMCore >> Altering definition of net.minecraft.entity.item.EntityXPOrb 2014-08-17 22:03:31 [FINE] [ForgeModLoader] AMCore >> Located target method b_(Luf;)V 2014-08-17 22:03:31 [FINE] [ForgeModLoader] AMCore >> Success! Inserted opcodes! 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/world/gen/feature/WorldGenTaiga2 (input size 1629), found 1 patch 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/world/gen/feature/WorldGenTaiga2 (new size 2822) 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/world/gen/feature/WorldGenForest (input size 1421), found 1 patch 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/world/gen/feature/WorldGenForest (new size 2612) 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/item/ItemShears (input size 1037), found 1 patch 2014-08-17 22:03:31 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/item/ItemShears (new size 3599) 2014-08-17 22:03:32 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/item/ItemFlintAndSteel (input size 952), found 1 patch 2014-08-17 22:03:32 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/item/ItemFlintAndSteel (new size 1283) 2014-08-17 22:03:32 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/item/ItemBucketMilk (input size 828), found 1 patch 2014-08-17 22:03:32 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/item/ItemBucketMilk (new size 1153) 2014-08-17 22:03:32 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/item/ItemMap (input size 5122), found 1 patch 2014-08-17 22:03:32 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/item/ItemMap (new size 6631) 2014-08-17 22:03:32 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/item/ItemEmptyMap (input size 1301), found 1 patch 2014-08-17 22:03:32 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/item/ItemEmptyMap (new size 1643) 2014-08-17 22:03:32 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/entity/boss/IBossDisplayData (input size 0), found 1 patch 2014-08-17 22:03:32 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/entity/boss/IBossDisplayData (new size 175) 2014-08-17 22:03:32 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/item/BehaviorDispenseArmor (input size 1099), found 1 patch 2014-08-17 22:03:32 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/item/BehaviorDispenseArmor (new size 1521) 2014-08-17 22:03:32 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/entity/item/EntityMinecartEmpty (input size 551), found 1 patch 2014-08-17 22:03:32 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/entity/item/EntityMinecartEmpty (new size 1143) 2014-08-17 22:03:32 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/entity/item/EntityEnderPearl (input size 1168), found 1 patch 2014-08-17 22:03:32 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/entity/item/EntityEnderPearl (new size 2245) 2014-08-17 22:03:33 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/util/CryptManager (input size 4572), found 1 patch 2014-08-17 22:03:33 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/util/CryptManager (new size 7176) 2014-08-17 22:03:33 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/world/chunk/storage/AnvilSaveHandler (input size 967), found 1 patch 2014-08-17 22:03:33 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/world/chunk/storage/AnvilSaveHandler (new size 1359) 2014-08-17 22:03:33 [iNFO] [Minecraft-Server] Starting minecraft server version 1.6.4 2014-08-17 22:03:33 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization 2014-08-17 22:03:33 [iNFO] [sTDOUT] MinecraftForge v9.11.1.965 Initialized 2014-08-17 22:03:33 [iNFO] [ForgeModLoader] MinecraftForge v9.11.1.965 Initialized 2014-08-17 22:03:34 [iNFO] [sTDOUT] Replaced 111 ore recipies 2014-08-17 22:03:34 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization 2014-08-17 22:03:34 [iNFO] [ForgeModLoader] Reading custom logging properties from C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\config\logging.properties 2014-08-17 22:03:34 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer, am2.preloader.AM2PreloaderContainer, appeng.transformer.AppEngCore, codechicken.core.asm.CodeChickenCoreModContainer, micdoodle8.mods.miccore.MicdoodleModContainer, openmods.OpenModsCore, powercrystals.core.CoreCore, tconstruct.preloader.TConstructLoaderContainer] 2014-08-17 22:03:34 [WARNING] [ForgeModLoader] Disabling forced crashes on duplicate Fluid Blocks - USE AT YOUR OWN RISK 2014-08-17 22:03:34 [iNFO] [ForgeModLoader] AMCore initializing...stand back! I'm going to try MAGIC! 2014-08-17 22:03:34 [iNFO] [ForgeModLoader] [AppEng] Core Init 2014-08-17 22:03:34 [iNFO] [TCon-Preloader] Scalpel. Suction. Lumber axe. CLEAR! *zap* 2014-08-17 22:03:34 [iNFO] [TCon-Preloader] Constructing preloader (Modules: [tconstruct.preloader.AccessTransformers, tconstruct.preloader.ASMInterfaceRepair]) 2014-08-17 22:03:34 [iNFO] [TCon-Preloader] Found a properties file. Attempting load... 2014-08-17 22:03:34 [iNFO] [TCon-Preloader] Loaded properties successfully. Using specified settings. 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\Server_TheLastCraft.jar, examining for mod candidates 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping known library file C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\1.6.4\ForgeMultipart-universal-1.6.4-1.0.0.219.jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping known library file C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\1.6.4\WorldCore-universal-1.6.4-1.1.0.17.jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping known library file C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\AM2_1.2.0.018.jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping known library file C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\appeng-rv14-finale3-mc16x.jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping known library file C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\BiomesOPlenty-universal-1.6.4-1.2.1.434.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\.\mods\1.6.4\CodeChickenLib-universal-1.6.4-1.0.0.62.jar, examining for mod candidates 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping known library file C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\Calclavia-Core-1.2.0.324-universal.jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping known library file C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\CodeChickenCore 0.9.0.9.jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping known library file C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\CoFHCore-2.0.0.5.jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping known library file C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\Idfix-Mod-1.6.4.jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping known library file C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\industrialcraft-2_2.0.397-experimental[Optimized].jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping known library file C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\InventoryTweaks-MC1.6.2-1.56-b77.jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping known library file C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\LogisticsPipes-MC1.6.4-0.7.4.dev.290.jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping known library file C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\Mekanism-6.0.5.46[Optimized].jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping known library file C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\MicdoodleCore-1.6.4-2.0.2.800.jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping known library file C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\OpenBlocks-1.2.5.jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping known library file C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\OpenModsLib-0.2.jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping known library file C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\PowerCrystalsCore-1.1.8-9.jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping known library file C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\Resonant-Engine-Development-1.2.0.266-universal.jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping known library file C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\TConstruct_mc1.6.4_1.5.5.7.jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping known library file C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\Universal-Electricity-3.1.0.115-core.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\.\mods\ic2\ejml-0.23.jar, examining for mod candidates 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully 2014-08-17 22:03:34 [iNFO] [ForgeModLoader] Searching C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods for mods 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate mod directory 1.6.4 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file [1.6.4] Hats2.1.8.zip 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file [1.6.4] iChunUtil2.4.0.zip 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file [1.6.4] Morph-Beta-0.7.2.zip 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file [1.6.4] PortalGun2.0.2.zip 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file AdvancedThaumaturgy-1.6.4-0.0.28.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file aether.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file AM2_1.2.0.018.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file AnimationAPI v1.1.2 mc1.6.4.zip 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file appeng-rv14-finale3-mc16x.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file archimedesships.zip 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file BiblioCraft[v1.5.5].zip 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file BiomesOPlenty-universal-1.6.4-1.2.1.434.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file Blood Magic v1.0.1g.zip 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file buildcraft-A-1.6.4-4.2.2.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file Calclavia-Core-1.2.0.324-universal.jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping already parsed coremod or tweaker CodeChickenCore 0.9.0.9.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file CoFHCore-2.0.0.5.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file CustomMobSpawner 3.0.0.zip 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file DartCraft Beta 0.2.20v2.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file DrZharks MoCreatures Mod v6.1.0.zip 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file ElectroMagicTools-1.0.9d.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file EnderStorage 1.4.3.6.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file FlansMod-4.1.1.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file ForbiddenMagic pr0.35a.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file Galacticraft-1.6.4-2.0.2.800.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file Galacticraft-Planets-1.6.4-2.0.2.800.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file GraviSuite_1_9_8_MC_1_6_4_IC_EXP.zip 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file HatStand2.1.0.zip 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate mod directory ic2 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping already parsed coremod or tweaker Idfix-Mod-1.6.4.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file industrialcraft-2_2.0.397-experimental[Optimized].jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file InventoryTweaks-MC1.6.2-1.56-b77.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file ironchest-universal-1.6.4-5.4.1.676.zip 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file JABBA_1.0.3.zip 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file LogisticsPipes-MC1.6.4-0.7.4.dev.290.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file Mekanism-6.0.5.46[Optimized].jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file MekanismGenerators-6.0.5.46.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file MekanismTools-6.0.5.46.jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping already parsed coremod or tweaker MicdoodleCore-1.6.4-2.0.2.800.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file MineFactoryReloaded-2.7.9-final.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file Modular-Force-Field-System-3.6.3.91-core.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file MorePlayerModels_1.6.2-1.6.4.zip 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file Natura_mc1.6.X_2.1.14.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file NetherOres-2.2.2-55.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file OpenBlocks-1.2.5.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file OpenModsLib-0.2.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Ignoring unknown file PortalGunSounds.pak in mods directory 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping already parsed coremod or tweaker PowerCrystalsCore-1.1.8-9.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate mod directory railcraft 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file Railcraft_1.6.4-8.3.2.0.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file RedstoneArsenal-1.0.0.0.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file Resonant-Engine-Development-1.2.0.266-universal.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file TConstruct_mc1.6.4_1.5.5.7.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file Thaumcraft4.1.0g.zip 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file ThaumcraftExtras-1.6.4-1.0.0.4.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file Thaumic Exploration 0.5.2.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file ThaumicTinkerer-2.3-140.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file ThermalExpansion-3.0.0.7.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file twilightforest-1.6.4-1.20.4.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file Universal-Electricity-3.1.0.115-core.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file witchery-1.6.4-0.19.2.zip 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file Yet-Another-Leather-Smelting-Mod-1.6.4.jar 2014-08-17 22:03:34 [iNFO] [ForgeModLoader] Also searching C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\mods\1.6.4 for mods 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file CodeChickenLib-universal-1.6.4-1.0.0.62.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Found a candidate zip or jar file ForgeMultipart-universal-1.6.4-1.0.0.219.jar 2014-08-17 22:03:34 [FINER] [ForgeModLoader] Skipping already parsed coremod or tweaker WorldCore-universal-1.6.4-1.1.0.17.jar 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Examining file Server_TheLastCraft.jar for potential mods 2014-08-17 22:03:34 [FINE] [ForgeModLoader] The mod container Server_TheLastCraft.jar appears to be missing an mcmod.info file 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Examining file CodeChickenLib-universal-1.6.4-1.0.0.62.jar for potential mods 2014-08-17 22:03:34 [FINE] [ForgeModLoader] The mod container CodeChickenLib-universal-1.6.4-1.0.0.62.jar appears to be missing an mcmod.info file 2014-08-17 22:03:34 [FINE] [ForgeModLoader] Examining file ejml-0.23.jar for potential mods 2014-08-17 22:03:34 [FINE] [ForgeModLoader] The mod container ejml-0.23.jar appears to be missing an mcmod.info file 2014-08-17 22:03:35 [FINE] [ForgeModLoader] Examining directory 1.6.4 for potential mods 2014-08-17 22:03:35 [FINE] [ForgeModLoader] No mcmod.info file found in directory 1.6.4 2014-08-17 22:03:35 [FINE] [ForgeModLoader] Examining file [1.6.4] Hats2.1.8.zip for potential mods 2014-08-17 22:03:35 [FINER] [ForgeModLoader] Located mcmod.info file in file [1.6.4] Hats2.1.8.zip 2014-08-17 22:03:35 [FINE] [ForgeModLoader] Identified an FMLMod type mod hats.common.Hats 2014-08-17 22:03:35 [FINEST] [Hats] Parsed dependency info : [] [] [] 2014-08-17 22:03:35 [FINE] [ForgeModLoader] Examining file [1.6.4] iChunUtil2.4.0.zip for potential mods 2014-08-17 22:03:35 [FINER] [ForgeModLoader] Located mcmod.info file in file [1.6.4] iChunUtil2.4.0.zip 2014-08-17 22:03:35 [FINE] [ForgeModLoader] Identified an FMLMod type mod ichun.core.iChunUtil 2014-08-17 22:03:35 [FINEST] [iChunUtil] Parsed dependency info : [Forge@[9.10.0.810,)] [Forge@[9.10.0.810,)] [] 2014-08-17 22:03:35 [FINE] [ForgeModLoader] Examining file [1.6.4] Morph-Beta-0.7.2.zip for potential mods 2014-08-17 22:03:35 [FINER] [ForgeModLoader] Located mcmod.info file in file [1.6.4] Morph-Beta-0.7.2.zip 2014-08-17 22:03:35 [FINE] [ForgeModLoader] Identified an FMLMod type mod morph.common.Morph 2014-08-17 22:03:35 [FINEST] [Morph] Parsed dependency info : [Forge@[9.11.1.945,)] [Forge@[9.11.1.945,)] [] 2014-08-17 22:03:35 [FINE] [ForgeModLoader] Examining file [1.6.4] PortalGun2.0.2.zip for potential mods 2014-08-17 22:03:35 [FINER] [ForgeModLoader] Located mcmod.info file in file [1.6.4] PortalGun2.0.2.zip 2014-08-17 22:03:35 [FINE] [ForgeModLoader] Identified an FMLMod type mod portalgun.common.PortalGun 2014-08-17 22:03:35 [FINEST] [PortalGun] Parsed dependency info : [iChunUtil@[2.1.0,)] [iChunUtil@[2.1.0,)] [] 2014-08-17 22:03:35 [FINE] [ForgeModLoader] Examining file AdvancedThaumaturgy-1.6.4-0.0.28.jar for potential mods 2014-08-17 22:03:35 [FINER] [ForgeModLoader] Located mcmod.info file in file AdvancedThaumaturgy-1.6.4-0.0.28.jar 2014-08-17 22:03:35 [FINE] [ForgeModLoader] Identified an FMLMod type mod net.ixios.advancedthaumaturgy.AdvThaum 2014-08-17 22:03:35 [FINEST] [AdvancedThaumaturgy] Parsed dependency info : [Thaumcraft] [Thaumcraft] [] 2014-08-17 22:03:35 [FINE] [ForgeModLoader] Examining file aether.jar for potential mods 2014-08-17 22:03:35 [FINER] [ForgeModLoader] Located mcmod.info file in file aether.jar 2014-08-17 22:03:35 [FINE] [ForgeModLoader] Identified an FMLMod type mod net.aetherteam.aether.Aether 2014-08-17 22:03:35 [FINEST] [Aether II] Parsed dependency info : [] [] [] 2014-08-17 22:03:35 [FINE] [ForgeModLoader] Examining file AM2_1.2.0.018.jar for potential mods 2014-08-17 22:03:35 [FINER] [ForgeModLoader] Located mcmod.info file in file AM2_1.2.0.018.jar 2014-08-17 22:03:35 [FINE] [ForgeModLoader] Identified an FMLMod type mod am2.AMCore 2014-08-17 22:03:35 [FINEST] [arsmagica2] Parsed dependency info : [AnimationAPI] [AnimationAPI] [] 2014-08-17 22:03:35 [FINE] [ForgeModLoader] Examining file AnimationAPI v1.1.2 mc1.6.4.zip for potential mods 2014-08-17 22:03:35 [FINER] [ForgeModLoader] Located mcmod.info file in file AnimationAPI v1.1.2 mc1.6.4.zip 2014-08-17 22:03:35 [FINE] [ForgeModLoader] Identified an FMLMod type mod thehippomaster.AnimationAPI.AnimationAPI 2014-08-17 22:03:35 [FINEST] [AnimationAPI] Parsed dependency info : [] [] [] 2014-08-17 22:03:35 [FINE] [ForgeModLoader] Examining file appeng-rv14-finale3-mc16x.jar for potential mods 2014-08-17 22:03:35 [FINER] [ForgeModLoader] Located mcmod.info file in file appeng-rv14-finale3-mc16x.jar 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Identified an FMLMod type mod appeng.common.AppEng 2014-08-17 22:03:36 [FINEST] [AppliedEnergistics] Parsed dependency info : [AppliedEnergistics-Core, Forge@[9.10.1.870,)] [AppliedEnergistics-Core, Forge@[9.10.1.870,)] [] 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Examining file archimedesships.zip for potential mods 2014-08-17 22:03:36 [FINER] [ForgeModLoader] Located mcmod.info file in file archimedesships.zip 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Identified an FMLMod type mod shipmod.ShipMod 2014-08-17 22:03:36 [FINEST] [ArchimedesShipsMod] Parsed dependency info : [] [] [] 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Examining file BiblioCraft[v1.5.5].zip for potential mods 2014-08-17 22:03:36 [FINER] [ForgeModLoader] Located mcmod.info file in file BiblioCraft[v1.5.5].zip 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Identified an FMLMod type mod jds.bibliocraft.BiblioCraft 2014-08-17 22:03:36 [FINEST] [biblioCraft] Parsed dependency info : [] [] [] 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Examining file BiomesOPlenty-universal-1.6.4-1.2.1.434.jar for potential mods 2014-08-17 22:03:36 [FINER] [ForgeModLoader] Located mcmod.info file in file BiomesOPlenty-universal-1.6.4-1.2.1.434.jar 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Identified an FMLMod type mod biomesoplenty.BiomesOPlenty 2014-08-17 22:03:36 [FINEST] [biomesOPlenty] Parsed dependency info : [Forge@[9.11.1.952,)] [Natura, Forge@[9.11.1.952,)] [] 2014-08-17 22:03:36 [FINE] [biomesOPlenty] Attempting to load the file version.properties from BiomesOPlenty-universal-1.6.4-1.2.1.434.jar to locate a version number for BiomesOPlenty 2014-08-17 22:03:36 [FINE] [biomesOPlenty] Found version null for mod BiomesOPlenty in version.properties, using 2014-08-17 22:03:36 [WARNING] [biomesOPlenty] Mod BiomesOPlenty is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.1 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Examining file Blood Magic v1.0.1g.zip for potential mods 2014-08-17 22:03:36 [FINER] [ForgeModLoader] Located mcmod.info file in file Blood Magic v1.0.1g.zip 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Identified an FMLMod type mod WayofTime.alchemicalWizardry.AlchemicalWizardry 2014-08-17 22:03:36 [FINEST] [AWWayofTime] Parsed dependency info : [] [] [] 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Examining file buildcraft-A-1.6.4-4.2.2.jar for potential mods 2014-08-17 22:03:36 [FINER] [ForgeModLoader] Located mcmod.info file in file buildcraft-A-1.6.4-4.2.2.jar 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftBuilders 2014-08-17 22:03:36 [FINEST] [buildCraft|Builders] Parsed dependency info : [buildCraft|Core@4.2.2] [buildCraft|Core@4.2.2] [] 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftCore 2014-08-17 22:03:36 [FINEST] [buildCraft|Core] Parsed dependency info : [Forge@[9.11.1.953,)] [Forge@[9.11.1.953,)] [] 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftEnergy 2014-08-17 22:03:36 [FINEST] [buildCraft|Energy] Parsed dependency info : [buildCraft|Core@4.2.2] [buildCraft|Core@4.2.2] [] 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftFactory 2014-08-17 22:03:36 [FINEST] [buildCraft|Factory] Parsed dependency info : [buildCraft|Core@4.2.2] [buildCraft|Core@4.2.2] [] 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftSilicon 2014-08-17 22:03:36 [FINEST] [buildCraft|Silicon] Parsed dependency info : [buildCraft|Transport@4.2.2] [buildCraft|Transport@4.2.2] [] 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftTransport 2014-08-17 22:03:36 [FINEST] [buildCraft|Transport] Parsed dependency info : [buildCraft|Core@4.2.2] [buildCraft|Core@4.2.2] [] 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Examining file Calclavia-Core-1.2.0.324-universal.jar for potential mods 2014-08-17 22:03:36 [FINE] [ForgeModLoader] The mod container Calclavia-Core-1.2.0.324-universal.jar appears to be missing an mcmod.info file 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Identified an FMLMod type mod calclavia.components.CalclaviaLoader 2014-08-17 22:03:36 [FINEST] [CalclaviaCore] Parsed dependency info : [universalElectricity] [universalElectricity] [] 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Examining file CoFHCore-2.0.0.5.jar for potential mods 2014-08-17 22:03:36 [FINER] [ForgeModLoader] Located mcmod.info file in file CoFHCore-2.0.0.5.jar 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Identified an FMLMod type mod cofh.CoFHCore 2014-08-17 22:03:36 [FINEST] [CoFHCore] Parsed dependency info : [] [] [] 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Identified an FMLMod type mod cofh.CoFHLoot 2014-08-17 22:03:36 [FINEST] [CoFHLoot] Parsed dependency info : [CoFHCore@[2.0.0.5,)] [CoFHCore@[2.0.0.5,)] [] 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Identified an FMLMod type mod cofh.CoFHMasquerade 2014-08-17 22:03:36 [FINEST] [CoFHMasquerade] Parsed dependency info : [CoFHCore@[2.0.0.5,)] [CoFHCore@[2.0.0.5,)] [] 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Identified an FMLMod type mod cofh.CoFHSocial 2014-08-17 22:03:36 [FINEST] [CoFHSocial] Parsed dependency info : [CoFHCore@[2.0.0.5,)] [CoFHCore@[2.0.0.5,)] [] 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Identified an FMLMod type mod cofh.CoFHWorld 2014-08-17 22:03:36 [FINEST] [CoFHWorld] Parsed dependency info : [CoFHCore@[2.0.0.5,)] [CoFHCore@[2.0.0.5,)] [] 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Examining file CustomMobSpawner 3.0.0.zip for potential mods 2014-08-17 22:03:36 [FINER] [ForgeModLoader] Located mcmod.info file in file CustomMobSpawner 3.0.0.zip 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Identified an FMLMod type mod drzhark.customspawner.CustomSpawner 2014-08-17 22:03:36 [FINEST] [CustomSpawner] Parsed dependency info : [] [] [] 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Examining file DartCraft Beta 0.2.20v2.jar for potential mods 2014-08-17 22:03:36 [FINE] [ForgeModLoader] The mod container DartCraft Beta 0.2.20v2.jar appears to be missing an mcmod.info file 2014-08-17 22:03:36 [FINE] [ForgeModLoader] Identified an FMLMod type mod bluedart.DartCraft 2014-08-17 22:03:36 [FINEST] [DartCraft] Parsed dependency info : [] [iC2, Railcraft, Thaumcraft, BuildCraft|Core, EnderStorage, factorization, ThermalExpansion, TwilightForest, ArsMagica, TC, mmmPowersuits, gregtech_addon, AS_MultiMine] [] 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Examining file DrZharks MoCreatures Mod v6.1.0.zip for potential mods 2014-08-17 22:03:37 [FINER] [ForgeModLoader] Located mcmod.info file in file DrZharks MoCreatures Mod v6.1.0.zip 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Identified an FMLMod type mod drzhark.mocreatures.MoCreatures 2014-08-17 22:03:37 [FINEST] [MoCreatures] Parsed dependency info : [] [] [] 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Examining file ElectroMagicTools-1.0.9d.jar for potential mods 2014-08-17 22:03:37 [FINER] [ForgeModLoader] Located mcmod.info file in file ElectroMagicTools-1.0.9d.jar 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Identified an FMLMod type mod electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools 2014-08-17 22:03:37 [FINEST] [Tombenpotter's Electro-Magic Tools] Parsed dependency info : [Thaumcraft, IC2] [Thaumcraft, IC2] [] 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Examining file EnderStorage 1.4.3.6.jar for potential mods 2014-08-17 22:03:37 [FINER] [ForgeModLoader] Located mcmod.info file in file EnderStorage 1.4.3.6.jar 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Identified an FMLMod type mod codechicken.enderstorage.EnderStorage 2014-08-17 22:03:37 [FINEST] [EnderStorage] Parsed dependency info : [CodeChickenCore@[0.9.0.8,)] [CodeChickenCore@[0.9.0.8,)] [] 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Examining file FlansMod-4.1.1.jar for potential mods 2014-08-17 22:03:37 [FINER] [ForgeModLoader] Located mcmod.info file in file FlansMod-4.1.1.jar 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Identified an FMLMod type mod co.uk.flansmods.common.FlansMod 2014-08-17 22:03:37 [FINEST] [FlansMod] Parsed dependency info : [] [] [] 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Examining file ForbiddenMagic pr0.35a.jar for potential mods 2014-08-17 22:03:37 [FINER] [ForgeModLoader] Located mcmod.info file in file ForbiddenMagic pr0.35a.jar 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Identified an FMLMod type mod com.spiteful.forbidden.Forbidden 2014-08-17 22:03:37 [FINEST] [ForbiddenMagic] Parsed dependency info : [Thaumcraft] [Thaumcraft, ThaumicTinkerer] [] 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Examining file Galacticraft-1.6.4-2.0.2.800.jar for potential mods 2014-08-17 22:03:37 [FINER] [ForgeModLoader] Located mcmod.info file in file Galacticraft-1.6.4-2.0.2.800.jar 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Identified an FMLMod type mod micdoodle8.mods.galacticraft.core.GalacticraftCore 2014-08-17 22:03:37 [FINEST] [GalacticraftCore] Parsed dependency info : [] [iCBM|Explosion, IC2, BuildCraft|Core, BuildCraft|Energy, IC2] [] 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Examining file Galacticraft-Planets-1.6.4-2.0.2.800.jar for potential mods 2014-08-17 22:03:37 [FINER] [ForgeModLoader] Located mcmod.info file in file Galacticraft-Planets-1.6.4-2.0.2.800.jar 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Identified an FMLMod type mod micdoodle8.mods.galacticraft.mars.GalacticraftMars 2014-08-17 22:03:37 [FINEST] [GalacticraftMars] Parsed dependency info : [GalacticraftCore] [GalacticraftCore] [] 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Examining file GraviSuite_1_9_8_MC_1_6_4_IC_EXP.zip for potential mods 2014-08-17 22:03:37 [FINER] [ForgeModLoader] Located mcmod.info file in file GraviSuite_1_9_8_MC_1_6_4_IC_EXP.zip 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Identified an FMLMod type mod gravisuite.GraviSuite 2014-08-17 22:03:37 [FINEST] [GraviSuite] Using mcmod dependency info : [FML, IC2, Forge] [iC2] [] 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Examining file HatStand2.1.0.zip for potential mods 2014-08-17 22:03:37 [FINER] [ForgeModLoader] Located mcmod.info file in file HatStand2.1.0.zip 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Identified an FMLMod type mod hats.addons.hatstand.common.HatStand 2014-08-17 22:03:37 [FINEST] [HatStand] Parsed dependency info : [Hats@[2.1.0,)] [Hats@[2.1.0,)] [] 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Examining directory ic2 for potential mods 2014-08-17 22:03:37 [FINE] [ForgeModLoader] No mcmod.info file found in directory ic2 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Examining file industrialcraft-2_2.0.397-experimental[Optimized].jar for potential mods 2014-08-17 22:03:37 [FINER] [ForgeModLoader] Located mcmod.info file in file industrialcraft-2_2.0.397-experimental[Optimized].jar 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Identified an FMLMod type mod ic2.core.IC2 2014-08-17 22:03:37 [FINEST] [iC2] Parsed dependency info : [] [] [] 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Examining file InventoryTweaks-MC1.6.2-1.56-b77.jar for potential mods 2014-08-17 22:03:37 [FINER] [ForgeModLoader] Located mcmod.info file in file InventoryTweaks-MC1.6.2-1.56-b77.jar 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Identified an FMLMod type mod invtweaks.forge.InvTweaksMod 2014-08-17 22:03:37 [FINEST] [inventorytweaks] Parsed dependency info : [Forge@[9.10.0,), FML@[6.2.0,)] [FML@[6.2.0,), Forge@[9.10.0,)] [] 2014-08-17 22:03:37 [FINE] [inventorytweaks] Attempting to load the file version.properties from InventoryTweaks-MC1.6.2-1.56-b77.jar to locate a version number for inventorytweaks 2014-08-17 22:03:37 [FINE] [inventorytweaks] Found version 1.56 for mod inventorytweaks in version.properties, using 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Examining file ironchest-universal-1.6.4-5.4.1.676.zip for potential mods 2014-08-17 22:03:37 [FINER] [ForgeModLoader] Located mcmod.info file in file ironchest-universal-1.6.4-5.4.1.676.zip 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Identified an FMLMod type mod cpw.mods.ironchest.IronChest 2014-08-17 22:03:37 [FINEST] [ironChest] Parsed dependency info : [FML@[5.0.5,), Forge@[7.0,)] [Forge@[7.0,), FML@[5.0.5,)] [] 2014-08-17 22:03:37 [FINE] [ironChest] Attempting to load the file version.properties from ironchest-universal-1.6.4-5.4.1.676.zip to locate a version number for IronChest 2014-08-17 22:03:37 [FINE] [ironChest] Found version 5.4.1.676 for mod IronChest in version.properties, using 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Examining file JABBA_1.0.3.zip for potential mods 2014-08-17 22:03:37 [FINER] [ForgeModLoader] Located mcmod.info file in file JABBA_1.0.3.zip 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Identified a class mcp.mobius.betterbarrels.mod_BetterBarrels following modloader naming convention but not directly a BaseMod or currently seen subclass 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Identified an FMLMod type mod mcp.mobius.betterbarrels.mod_BetterBarrels 2014-08-17 22:03:37 [FINEST] [JABBA] Parsed dependency info : [] [Waila] [] 2014-08-17 22:03:37 [iNFO] [ForgeModLoader] Attempting to reparse the mod container JABBA_1.0.3.zip 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Examining file JABBA_1.0.3.zip for potential mods 2014-08-17 22:03:37 [FINER] [ForgeModLoader] Located mcmod.info file in file JABBA_1.0.3.zip 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Identified a class mcp.mobius.betterbarrels.mod_BetterBarrels following modloader naming convention but not directly a BaseMod or currently seen subclass 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Identified an FMLMod type mod mcp.mobius.betterbarrels.mod_BetterBarrels 2014-08-17 22:03:37 [FINEST] [JABBA] Parsed dependency info : [] [Waila] [] 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Examining file LogisticsPipes-MC1.6.4-0.7.4.dev.290.jar for potential mods 2014-08-17 22:03:37 [FINER] [ForgeModLoader] Located mcmod.info file in file LogisticsPipes-MC1.6.4-0.7.4.dev.290.jar 2014-08-17 22:03:37 [FINE] [ForgeModLoader] Identified an FMLMod type mod logisticspipes.LogisticsPipes 2014-08-17 22:03:37 [FINEST] [LogisticsPipes|Main] Using mcmod dependency info : [buildCraft|Core, BuildCraft|Transport, BuildCraft|Silicon, Forge@[9.10.1.850,)] [Forge@[9.10.1.850,), BuildCraft|Core, BuildCraft|Transport, BuildCraft|Silicon, IC2, Forestry, Thaumcraft, CCTurtle, ComputerCraft, factorization, GregTech_Addon, AppliedEnergistics, ThermalExpansion, BetterStorage] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Examining file Mekanism-6.0.5.46[Optimized].jar for potential mods 2014-08-17 22:03:38 [FINER] [ForgeModLoader] Located mcmod.info file in file Mekanism-6.0.5.46[Optimized].jar 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod mekanism.common.Mekanism 2014-08-17 22:03:38 [FINEST] [Mekanism] Parsed dependency info : [] [] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Examining file MekanismGenerators-6.0.5.46.jar for potential mods 2014-08-17 22:03:38 [FINER] [ForgeModLoader] Located mcmod.info file in file MekanismGenerators-6.0.5.46.jar 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod mekanism.generators.common.MekanismGenerators 2014-08-17 22:03:38 [FINEST] [MekanismGenerators] Parsed dependency info : [Mekanism] [Mekanism] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Examining file MekanismTools-6.0.5.46.jar for potential mods 2014-08-17 22:03:38 [FINER] [ForgeModLoader] Located mcmod.info file in file MekanismTools-6.0.5.46.jar 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod mekanism.tools.common.MekanismTools 2014-08-17 22:03:38 [FINEST] [MekanismTools] Parsed dependency info : [Mekanism] [Mekanism] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Examining file MineFactoryReloaded-2.7.9-final.jar for potential mods 2014-08-17 22:03:38 [FINER] [ForgeModLoader] Located mcmod.info file in file MineFactoryReloaded-2.7.9-final.jar 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod denoflionsx.minefactoryreloaded.modhelpers.forestry.ForestryTrees 2014-08-17 22:03:38 [FINEST] [MFR Compat Forestry Trees] Parsed dependency info : [] [Forestry] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod denoflionsx.minefactoryreloaded.modhelpers.forestry.extratrees.ExtraTrees 2014-08-17 22:03:38 [FINEST] [MFR Compat Extra Trees] Parsed dependency info : [] [ExtraTrees] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.MineFactoryReloadedCore 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded] Parsed dependency info : [Forge@[9.11.1.953,), PowerCrystalsCore@[1.1.8,)] [Forge@[9.11.1.953,), PowerCrystalsCore@[1.1.8,), BuildCraft|Core, BuildCraft|Factory, BuildCraft|Energy, BuildCraft|Builders, BuildCraft|Transport, IC2] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.ae.AppliedEnergistics 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatAppliedEnergistics] Parsed dependency info : [] [MineFactoryReloaded, AppliedEnergistics] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.atum.Atum 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatAtum] Parsed dependency info : [] [MineFactoryReloaded, Atum] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.backtools.BackTools 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatBackTools] Parsed dependency info : [] [MineFactoryReloaded, mod_BackTools] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.buildcraft.Buildcraft 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatBuildCraft] Parsed dependency info : [] [MineFactoryReloaded, BuildCraft|Core] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.chococraft.Chococraft 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatChococraft] Parsed dependency info : [MineFactoryReloaded] [MineFactoryReloaded, chococraft] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.extrabiomes.ExtraBiomes 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatExtraBiomes] Parsed dependency info : [] [MineFactoryReloaded, ExtrabiomesXL] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.forestry.Forestry 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatForestry] Parsed dependency info : [] [MineFactoryReloaded, Forestry] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.forestry.ForestryPre 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatForestryPre] Parsed dependency info : [MineFactoryReloaded] [MineFactoryReloaded] [Forestry] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.forgemultiparts.FMP 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatForgeMicroblock] Parsed dependency info : [] [MineFactoryReloaded] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.ic2.IC2 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatIC2] Parsed dependency info : [] [MineFactoryReloaded, IC2] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.mystcraft.Mystcraft 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatMystcraft] Parsed dependency info : [] [MineFactoryReloaded, Mystcraft] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.pam.Pam 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatPams] Parsed dependency info : [] [MineFactoryReloaded, pamharvestcraft] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.projectred.ProjectRedCompat 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatProjRed] Parsed dependency info : [] [MineFactoryReloaded, ProjRed|Core, ProjRed|Exploration] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.railcraft.Railcraft 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatRailcraft] Parsed dependency info : [] [MineFactoryReloaded, Railcraft] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.rp2.RP2 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatRP2] Parsed dependency info : [] [MineFactoryReloaded, RedPowerWorld] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.sufficientbiomes.SufficientBiomes 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatSufficientBiomes] Parsed dependency info : [] [MineFactoryReloaded, EmasherWorldGen] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.thaumcraft.Thaumcraft 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatThaumcraft] Parsed dependency info : [] [MineFactoryReloaded, Thaumcraft] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.thermalexpansion.ThermalExpansion 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatThermalExpansion] Parsed dependency info : [] [MineFactoryReloaded, ThermalExpansion] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.twilightforest.TwilightForest 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatTwilightForest] Parsed dependency info : [] [MineFactoryReloaded, TwilightForest] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.vanilla.Vanilla 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatVanilla] Parsed dependency info : [] [MineFactoryReloaded] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.minefactoryreloaded.modhelpers.xycraft.Xycraft 2014-08-17 22:03:38 [FINEST] [MineFactoryReloaded|CompatXyCraft] Parsed dependency info : [] [MineFactoryReloaded, XyCraftWorld] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Examining file Modular-Force-Field-System-3.6.3.91-core.jar for potential mods 2014-08-17 22:03:38 [FINE] [ForgeModLoader] The mod container Modular-Force-Field-System-3.6.3.91-core.jar appears to be missing an mcmod.info file 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod mffs.ModularForceFieldSystem 2014-08-17 22:03:38 [FINEST] [MFFS] Parsed dependency info : [ResonantEngine] [ResonantEngine] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Examining file MorePlayerModels_1.6.2-1.6.4.zip for potential mods 2014-08-17 22:03:38 [FINER] [ForgeModLoader] Located mcmod.info file in file MorePlayerModels_1.6.2-1.6.4.zip 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod noppes.mpm.MorePlayerModels 2014-08-17 22:03:38 [FINEST] [moreplayermodels] Parsed dependency info : [] [] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Examining file Natura_mc1.6.X_2.1.14.jar for potential mods 2014-08-17 22:03:38 [FINER] [ForgeModLoader] Located mcmod.info file in file Natura_mc1.6.X_2.1.14.jar 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod mods.natura.Natura 2014-08-17 22:03:38 [FINEST] [Natura] Parsed dependency info : [] [] [] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Examining file NetherOres-2.2.2-55.jar for potential mods 2014-08-17 22:03:38 [FINER] [ForgeModLoader] Located mcmod.info file in file NetherOres-2.2.2-55.jar 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod powercrystals.netherores.NetherOresCore 2014-08-17 22:03:38 [FINEST] [NetherOres] Parsed dependency info : [PowerCrystalsCore] [PowerCrystalsCore] [ThermalExpansion] 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Examining file OpenBlocks-1.2.5.jar for potential mods 2014-08-17 22:03:38 [FINER] [ForgeModLoader] Located mcmod.info file in file OpenBlocks-1.2.5.jar 2014-08-17 22:03:38 [FINE] [ForgeModLoader] Identified an FMLMod type mod openblocks.OpenBlocks 2014-08-17 22:03:38 [FINEST] [OpenBlocks] Parsed dependency info : [OpenMods@[0.2,]] [OpenMods@[0.2,], OpenPeripheral] [] 2014-08-17 22:03:39 [FINE] [ForgeModLoader] Examining file OpenModsLib-0.2.jar for potential mods 2014-08-17 22:03:39 [FINER] [ForgeModLoader] Located mcmod.info file in file OpenModsLib-0.2.jar 2014-08-17 22:03:39 [FINE] [ForgeModLoader] Identified an FMLMod type mod openmods.OpenMods 2014-08-17 22:03:39 [FINEST] [OpenMods] Parsed dependency info : [OpenModsCore] [OpenModsCore] [] 2014-08-17 22:03:39 [FINE] [ForgeModLoader] Examining directory railcraft for potential mods 2014-08-17 22:03:39 [FINE] [ForgeModLoader] No mcmod.info file found in directory railcraft 2014-08-17 22:03:39 [FINEST] [ForgeModLoader] Recursing into package emblems 2014-08-17 22:03:39 [FINE] [ForgeModLoader] Examining file Railcraft_1.6.4-8.3.2.0.jar for potential mods 2014-08-17 22:03:39 [FINER] [ForgeModLoader] Located mcmod.info file in file Railcraft_1.6.4-8.3.2.0.jar 2014-08-17 22:03:39 [FINE] [ForgeModLoader] Identified an FMLMod type mod mods.railcraft.common.core.Railcraft 2014-08-17 22:03:39 [FINEST] [Railcraft] Parsed dependency info : [Forge@[9.11.1.965,)] [Forge@[9.11.1.965,), BuildCraft|Core[4.0.1,), BuildCraft|Energy, BuildCraft|Builders, BuildCraft|Factory, Forestry, Thaumcraft, IC2@[2.0.140,)] [] 2014-08-17 22:03:39 [FINE] [ForgeModLoader] Examining file RedstoneArsenal-1.0.0.0.jar for potential mods 2014-08-17 22:03:39 [FINER] [ForgeModLoader] Located mcmod.info file in file RedstoneArsenal-1.0.0.0.jar 2014-08-17 22:03:39 [FINE] [ForgeModLoader] Identified an FMLMod type mod redstonearsenal.RedstoneArsenal 2014-08-17 22:03:39 [FINEST] [Redstone Arsenal] Parsed dependency info : [Forge@[9.1.11.953,), CoFHCore@[2.0.0.0,)] [Forge@[9.1.11.953,), CoFHCore@[2.0.0.0,), ThermalExpansion] [] 2014-08-17 22:03:39 [FINE] [ForgeModLoader] Examining file Resonant-Engine-Development-1.2.0.266-universal.jar for potential mods 2014-08-17 22:03:39 [FINE] [ForgeModLoader] The mod container Resonant-Engine-Development-1.2.0.266-universal.jar appears to be missing an mcmod.info file 2014-08-17 22:03:39 [FINE] [ForgeModLoader] Identified an FMLMod type mod resonant.core.ResonantEngine 2014-08-17 22:03:39 [FINEST] [ResonantEngine] Parsed dependency info : [universalElectricity] [universalElectricity] [] 2014-08-17 22:03:39 [FINE] [ForgeModLoader] Examining file TConstruct_mc1.6.4_1.5.5.7.jar for potential mods 2014-08-17 22:03:39 [FINER] [ForgeModLoader] Located mcmod.info file in file TConstruct_mc1.6.4_1.5.5.7.jar 2014-08-17 22:03:39 [FINE] [ForgeModLoader] Identified an FMLMod type mod tconstruct.TConstruct 2014-08-17 22:03:39 [FINEST] [TConstruct] Parsed dependency info : [Forge@[8.9,)] [Forge@[8.9,), ForgeMultipart, MineFactoryReloaded, NotEnoughItems, Waila, ThermalExpansion] [] 2014-08-17 22:03:39 [FINE] [ForgeModLoader] Examining file Thaumcraft4.1.0g.zip for potential mods 2014-08-17 22:03:39 [FINER] [ForgeModLoader] Located mcmod.info file in file Thaumcraft4.1.0g.zip 2014-08-17 22:03:39 [FINE] [ForgeModLoader] Identified an FMLMod type mod thaumcraft.common.Thaumcraft 2014-08-17 22:03:39 [FINEST] [Thaumcraft] Parsed dependency info : [Forge@[9.11.1.953,)] [Forge@[9.11.1.953,), BuildCraft|Core, BuildCraft|Energy, Forestry, IC2] [] 2014-08-17 22:03:39 [FINE] [ForgeModLoader] Examining file ThaumcraftExtras-1.6.4-1.0.0.4.jar for potential mods 2014-08-17 22:03:39 [FINER] [ForgeModLoader] Located mcmod.info file in file ThaumcraftExtras-1.6.4-1.0.0.4.jar 2014-08-17 22:03:39 [FINE] [ForgeModLoader] Identified an FMLMod type mod thaumcraftextras.main.Main 2014-08-17 22:03:39 [FINEST] [ThaumcraftExtras] Parsed dependency info : [Thaumcraft] [Thaumcraft] [] 2014-08-17 22:03:39 [FINE] [ForgeModLoader] Examining file Thaumic Exploration 0.5.2.jar for potential mods 2014-08-17 22:03:39 [FINER] [ForgeModLoader] Located mcmod.info file in file Thaumic Exploration 0.5.2.jar 2014-08-17 22:03:39 [FINE] [ForgeModLoader] Identified an FMLMod type mod flaxbeard.thaumicexploration.ThaumicExploration 2014-08-17 22:03:39 [FINEST] [ThaumicExploration] Parsed dependency info : [Thaumcraft] [Thaumcraft, ThaumicTinkerer] [] 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Examining file ThaumicTinkerer-2.3-140.jar for potential mods 2014-08-17 22:03:40 [FINER] [ForgeModLoader] Located mcmod.info file in file ThaumicTinkerer-2.3-140.jar 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Identified an FMLMod type mod vazkii.tinkerer.common.ThaumicTinkerer 2014-08-17 22:03:40 [FINEST] [ThaumicTinkerer] Parsed dependency info : [Thaumcraft@[4.1.0f,]] [Thaumcraft@[4.1.0f,], IC2, ThaumicTinkererKami, Waila] [MagicBees, advthaum] 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Examining file ThermalExpansion-3.0.0.7.jar for potential mods 2014-08-17 22:03:40 [FINER] [ForgeModLoader] Located mcmod.info file in file ThermalExpansion-3.0.0.7.jar 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Identified an FMLMod type mod thermalexpansion.ThermalExpansion 2014-08-17 22:03:40 [FINEST] [ThermalExpansion] Parsed dependency info : [CoFHCore@[2.0.0.5,), Forge@[9.1.11.953,), ForgeMultipart] [Forge@[9.1.11.953,), CoFHCore@[2.0.0.5,), ForgeMultipart] [iC2, Metallurgy] 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Examining file twilightforest-1.6.4-1.20.4.jar for potential mods 2014-08-17 22:03:40 [FINER] [ForgeModLoader] Located mcmod.info file in file twilightforest-1.6.4-1.20.4.jar 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Identified an FMLMod type mod twilightforest.TwilightForestMod 2014-08-17 22:03:40 [FINEST] [TwilightForest] Parsed dependency info : [] [] [] 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Examining file Universal-Electricity-3.1.0.115-core.jar for potential mods 2014-08-17 22:03:40 [FINE] [ForgeModLoader] The mod container Universal-Electricity-3.1.0.115-core.jar appears to be missing an mcmod.info file 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Identified an FMLMod type mod universalelectricity.core.UELoader 2014-08-17 22:03:40 [FINEST] [universalElectricity] Parsed dependency info : [] [] [ForgeMultipart] 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Examining file witchery-1.6.4-0.19.2.zip for potential mods 2014-08-17 22:03:40 [FINER] [ForgeModLoader] Located mcmod.info file in file witchery-1.6.4-0.19.2.zip 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Identified an FMLMod type mod com.emoniph.witchery.Witchery 2014-08-17 22:03:40 [FINEST] [witchery] Using mcmod dependency info : [Forge] [] [] 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Examining file Yet-Another-Leather-Smelting-Mod-1.6.4.jar for potential mods 2014-08-17 22:03:40 [FINER] [ForgeModLoader] Located mcmod.info file in file Yet-Another-Leather-Smelting-Mod-1.6.4.jar 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Identified an FMLMod type mod airbreather.mods.yalsm.Main 2014-08-17 22:03:40 [FINEST] [YALSM] Parsed dependency info : [] [] [] 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Examining file CodeChickenLib-universal-1.6.4-1.0.0.62.jar for potential mods 2014-08-17 22:03:40 [FINE] [ForgeModLoader] The mod container CodeChickenLib-universal-1.6.4-1.0.0.62.jar appears to be missing an mcmod.info file 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Examining file ForgeMultipart-universal-1.6.4-1.0.0.219.jar for potential mods 2014-08-17 22:03:40 [FINER] [ForgeModLoader] Located mcmod.info file in file ForgeMultipart-universal-1.6.4-1.0.0.219.jar 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Identified an FMLMod type mod codechicken.microblock.handler.MicroblockMod 2014-08-17 22:03:40 [FINEST] [ForgeMicroblock] Parsed dependency info : [ForgeMultipart] [ForgeMultipart, *] [] 2014-08-17 22:03:40 [FINE] [ForgeMicroblock] Attempting to load the file version.properties from ForgeMultipart-universal-1.6.4-1.0.0.219.jar to locate a version number for ForgeMicroblock 2014-08-17 22:03:40 [WARNING] [ForgeMicroblock] Mod ForgeMicroblock is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.0.0.219 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Identified an FMLMod type mod codechicken.multipart.handler.MultipartMod 2014-08-17 22:03:40 [FINEST] [ForgeMultipart] Parsed dependency info : [] [] [] 2014-08-17 22:03:40 [FINE] [ForgeMultipart] Attempting to load the file version.properties from ForgeMultipart-universal-1.6.4-1.0.0.219.jar to locate a version number for ForgeMultipart 2014-08-17 22:03:40 [WARNING] [ForgeMultipart] Mod ForgeMultipart is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.0.0.219 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Identified an FMLMod type mod codechicken.multipart.minecraft.MinecraftMultipartMod 2014-08-17 22:03:40 [FINEST] [McMultipart] Parsed dependency info : [] [] [] 2014-08-17 22:03:40 [FINE] [McMultipart] Attempting to load the file version.properties from ForgeMultipart-universal-1.6.4-1.0.0.219.jar to locate a version number for McMultipart 2014-08-17 22:03:40 [WARNING] [McMultipart] Mod McMultipart is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.0.0.219 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 100 mods to load 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.transport (owned by BuildCraftAPI|core providing BuildCraftAPI|transport) embedded in BuildCraft|Builders 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.transport (owned by BuildCraftAPI|core providing BuildCraftAPI|transport) embedded in BuildCraft|Core 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.transport (owned by BuildCraftAPI|core providing BuildCraftAPI|transport) embedded in BuildCraft|Energy 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.transport (owned by BuildCraftAPI|core providing BuildCraftAPI|transport) embedded in BuildCraft|Factory 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.transport (owned by BuildCraftAPI|core providing BuildCraftAPI|transport) embedded in BuildCraft|Silicon 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.transport (owned by BuildCraftAPI|core providing BuildCraftAPI|transport) embedded in BuildCraft|Transport 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.gates (owned by BuildCraftAPI|core providing BuildCraftAPI|gates) embedded in Railcraft 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.power (owned by BuildCraftAPI|core providing BuildCraftAPI|power) embedded in BuildCraft|Builders 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.power (owned by BuildCraftAPI|core providing BuildCraftAPI|power) embedded in BuildCraft|Core 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.power (owned by BuildCraftAPI|core providing BuildCraftAPI|power) embedded in BuildCraft|Energy 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.power (owned by BuildCraftAPI|core providing BuildCraftAPI|power) embedded in BuildCraft|Factory 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.power (owned by BuildCraftAPI|core providing BuildCraftAPI|power) embedded in BuildCraft|Silicon 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.power (owned by BuildCraftAPI|core providing BuildCraftAPI|power) embedded in BuildCraft|Transport 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.fuels (owned by BuildCraftAPI|core providing BuildCraftAPI|fuels) embedded in BuildCraft|Builders 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.fuels (owned by BuildCraftAPI|core providing BuildCraftAPI|fuels) embedded in BuildCraft|Core 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.fuels (owned by BuildCraftAPI|core providing BuildCraftAPI|fuels) embedded in BuildCraft|Energy 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.fuels (owned by BuildCraftAPI|core providing BuildCraftAPI|fuels) embedded in BuildCraft|Factory 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.fuels (owned by BuildCraftAPI|core providing BuildCraftAPI|fuels) embedded in BuildCraft|Silicon 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.fuels (owned by BuildCraftAPI|core providing BuildCraftAPI|fuels) embedded in BuildCraft|Transport 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.power (owned by BuildCraftAPI|core providing BuildCraftAPI|power) embedded in UniversalElectricity 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.tools (owned by BuildCraftAPI|core providing BuildCraftAPI|tools) embedded in Railcraft 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api (owned by BuildCraft|Core providing BuildCraftAPI|core) embedded in BuildCraft|Builders 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api (owned by BuildCraft|Core providing BuildCraftAPI|core) embedded in BuildCraft|Core 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api (owned by BuildCraft|Core providing BuildCraftAPI|core) embedded in BuildCraft|Energy 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api (owned by BuildCraft|Core providing BuildCraftAPI|core) embedded in BuildCraft|Factory 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api (owned by BuildCraft|Core providing BuildCraftAPI|core) embedded in BuildCraft|Silicon 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api (owned by BuildCraft|Core providing BuildCraftAPI|core) embedded in BuildCraft|Transport 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API li.cil.oc.api (owned by OpenComputers|Core providing OpenComputersAPI) embedded in CalclaviaCore 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.recipes (owned by BuildCraftAPI|core providing BuildCraftAPI|recipes) embedded in BuildCraft|Builders 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.recipes (owned by BuildCraftAPI|core providing BuildCraftAPI|recipes) embedded in BuildCraft|Core 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.recipes (owned by BuildCraftAPI|core providing BuildCraftAPI|recipes) embedded in BuildCraft|Energy 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.recipes (owned by BuildCraftAPI|core providing BuildCraftAPI|recipes) embedded in BuildCraft|Factory 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.recipes (owned by BuildCraftAPI|core providing BuildCraftAPI|recipes) embedded in BuildCraft|Silicon 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.recipes (owned by BuildCraftAPI|core providing BuildCraftAPI|recipes) embedded in BuildCraft|Transport 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.gates (owned by BuildCraftAPI|core providing BuildCraftAPI|gates) embedded in BuildCraft|Builders 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.gates (owned by BuildCraftAPI|core providing BuildCraftAPI|gates) embedded in BuildCraft|Core 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.gates (owned by BuildCraftAPI|core providing BuildCraftAPI|gates) embedded in BuildCraft|Energy 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.gates (owned by BuildCraftAPI|core providing BuildCraftAPI|gates) embedded in BuildCraft|Factory 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.gates (owned by BuildCraftAPI|core providing BuildCraftAPI|gates) embedded in BuildCraft|Silicon 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.gates (owned by BuildCraftAPI|core providing BuildCraftAPI|gates) embedded in BuildCraft|Transport 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.filler (owned by BuildCraftAPI|core providing BuildCraftAPI|filler) embedded in BuildCraft|Builders 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.filler (owned by BuildCraftAPI|core providing BuildCraftAPI|filler) embedded in BuildCraft|Core 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.filler (owned by BuildCraftAPI|core providing BuildCraftAPI|filler) embedded in BuildCraft|Energy 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.filler (owned by BuildCraftAPI|core providing BuildCraftAPI|filler) embedded in BuildCraft|Factory 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.filler (owned by BuildCraftAPI|core providing BuildCraftAPI|filler) embedded in BuildCraft|Silicon 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.filler (owned by BuildCraftAPI|core providing BuildCraftAPI|filler) embedded in BuildCraft|Transport 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.core (owned by BuildCraft|Core providing BuildCraftAPI|core) embedded in BuildCraft|Core 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API li.cil.oc.api (owned by OpenComputers|Core providing OpenComputersAPI) embedded in ResonantEngine 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.tools (owned by BuildCraftAPI|core providing BuildCraftAPI|tools) embedded in BuildCraft|Builders 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.tools (owned by BuildCraftAPI|core providing BuildCraftAPI|tools) embedded in BuildCraft|Core 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.tools (owned by BuildCraftAPI|core providing BuildCraftAPI|tools) embedded in BuildCraft|Energy 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.tools (owned by BuildCraftAPI|core providing BuildCraftAPI|tools) embedded in BuildCraft|Factory 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.tools (owned by BuildCraftAPI|core providing BuildCraftAPI|tools) embedded in BuildCraft|Silicon 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.tools (owned by BuildCraftAPI|core providing BuildCraftAPI|tools) embedded in BuildCraft|Transport 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.core (owned by BuildCraft|Core providing BuildCraftAPI|core) embedded in Railcraft 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.core (owned by BuildCraft|Core providing BuildCraftAPI|core) embedded in UniversalElectricity 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.power (owned by BuildCraftAPI|core providing BuildCraftAPI|power) embedded in Railcraft 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API universalelectricity.api (owned by UniversalElectricity providing UniversalElectricityAPI) embedded in UniversalElectricity 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.bptblocks (owned by BuildCraftAPI|blueprints providing BuildCraftAPI|bptblocks) embedded in BuildCraft|Builders 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.bptblocks (owned by BuildCraftAPI|blueprints providing BuildCraftAPI|bptblocks) embedded in BuildCraft|Core 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.bptblocks (owned by BuildCraftAPI|blueprints providing BuildCraftAPI|bptblocks) embedded in BuildCraft|Energy 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.bptblocks (owned by BuildCraftAPI|blueprints providing BuildCraftAPI|bptblocks) embedded in BuildCraft|Factory 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.bptblocks (owned by BuildCraftAPI|blueprints providing BuildCraftAPI|bptblocks) embedded in BuildCraft|Silicon 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.bptblocks (owned by BuildCraftAPI|blueprints providing BuildCraftAPI|bptblocks) embedded in BuildCraft|Transport 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.inventory (owned by BuildCraftAPI|core providing BuildCraftAPI|inventory) embedded in BuildCraft|Builders 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.inventory (owned by BuildCraftAPI|core providing BuildCraftAPI|inventory) embedded in BuildCraft|Core 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.inventory (owned by BuildCraftAPI|core providing BuildCraftAPI|inventory) embedded in BuildCraft|Energy 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.inventory (owned by BuildCraftAPI|core providing BuildCraftAPI|inventory) embedded in BuildCraft|Factory 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.inventory (owned by BuildCraftAPI|core providing BuildCraftAPI|inventory) embedded in BuildCraft|Silicon 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.inventory (owned by BuildCraftAPI|core providing BuildCraftAPI|inventory) embedded in BuildCraft|Transport 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.transport (owned by BuildCraftAPI|core providing BuildCraftAPI|transport) embedded in Railcraft 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.inventory (owned by BuildCraftAPI|core providing BuildCraftAPI|inventory) embedded in Railcraft 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.blueprints (owned by BuildCraftAPI|core providing BuildCraftAPI|blueprints) embedded in BuildCraft|Builders 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.blueprints (owned by BuildCraftAPI|core providing BuildCraftAPI|blueprints) embedded in BuildCraft|Core 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.blueprints (owned by BuildCraftAPI|core providing BuildCraftAPI|blueprints) embedded in BuildCraft|Energy 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.blueprints (owned by BuildCraftAPI|core providing BuildCraftAPI|blueprints) embedded in BuildCraft|Factory 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.blueprints (owned by BuildCraftAPI|core providing BuildCraftAPI|blueprints) embedded in BuildCraft|Silicon 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Found API buildcraft.api.blueprints (owned by BuildCraftAPI|core providing BuildCraftAPI|blueprints) embedded in BuildCraft|Transport 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [DartCraft] containing declared API package buildcraft.api.gates (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [MFR Compat Forestry Trees, MFR Compat Extra Trees, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForestryPre, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatPams, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatRP2, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, MineFactoryReloaded|CompatXyCraft] containing declared API package buildcraft.api.gates (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [Mekanism] containing declared API package buildcraft.api.gates (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [GraviSuite] containing declared API package buildcraft.api.gates (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [FINEST] [ForgeModLoader] Removing upstream parent BuildCraft|Core from APIContainer{BuildCraftAPI|gates:1.0} 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Creating API container dummy for API BuildCraftAPI|gates: owner: BuildCraftAPI|core, dependents: [Railcraft, BuildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Silicon, BuildCraft|Transport, DartCraft, MFR Compat Forestry Trees, MFR Compat Extra Trees, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForestryPre, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatPams, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatRP2, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, MineFactoryReloaded|CompatXyCraft, Mekanism, GraviSuite] 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [DartCraft] containing declared API package buildcraft.api.blueprints (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [Mekanism] containing declared API package buildcraft.api.blueprints (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [GraviSuite] containing declared API package buildcraft.api.blueprints (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [FINEST] [ForgeModLoader] Removing upstream parent BuildCraft|Core from APIContainer{BuildCraftAPI|blueprints:1.0} 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Creating API container dummy for API BuildCraftAPI|blueprints: owner: BuildCraftAPI|core, dependents: [buildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Silicon, BuildCraft|Transport, DartCraft, Mekanism, GraviSuite] 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Creating API container dummy for API OpenComputersAPI: owner: OpenComputers|Core, dependents: [CalclaviaCore, ResonantEngine] 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [ThermalExpansion] containing declared API package buildcraft.api.power (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [GraviSuite] containing declared API package buildcraft.api.power (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [DartCraft] containing declared API package buildcraft.api.power (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [ThaumicTinkerer] containing declared API package buildcraft.api.power (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [MFR Compat Forestry Trees, MFR Compat Extra Trees, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForestryPre, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatPams, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatRP2, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, MineFactoryReloaded|CompatXyCraft] containing declared API package buildcraft.api.power (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [Mekanism] containing declared API package buildcraft.api.power (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [FINEST] [ForgeModLoader] Removing upstream parent BuildCraft|Core from APIContainer{BuildCraftAPI|power:1.0} 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Creating API container dummy for API BuildCraftAPI|power: owner: BuildCraftAPI|core, dependents: [buildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Silicon, BuildCraft|Transport, UniversalElectricity, Railcraft, ThermalExpansion, GraviSuite, DartCraft, ThaumicTinkerer, MFR Compat Forestry Trees, MFR Compat Extra Trees, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForestryPre, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatPams, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatRP2, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, MineFactoryReloaded|CompatXyCraft, Mekanism] 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [ThermalExpansion] containing declared API package buildcraft.api.tools (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [ResonantEngine] containing declared API package buildcraft.api.tools (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [Redstone Arsenal] containing declared API package buildcraft.api.tools (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [GraviSuite] containing declared API package buildcraft.api.tools (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [DartCraft] containing declared API package buildcraft.api.tools (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [CalclaviaCore] containing declared API package buildcraft.api.tools (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [MFR Compat Forestry Trees, MFR Compat Extra Trees, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForestryPre, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatPams, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatRP2, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, MineFactoryReloaded|CompatXyCraft] containing declared API package buildcraft.api.tools (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [Mekanism] containing declared API package buildcraft.api.tools (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [FINEST] [ForgeModLoader] Removing upstream parent BuildCraft|Core from APIContainer{BuildCraftAPI|tools:1.0} 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Creating API container dummy for API BuildCraftAPI|tools: owner: BuildCraftAPI|core, dependents: [Railcraft, BuildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Silicon, BuildCraft|Transport, ThermalExpansion, ResonantEngine, Redstone Arsenal, GraviSuite, DartCraft, CalclaviaCore, MFR Compat Forestry Trees, MFR Compat Extra Trees, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForestryPre, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatPams, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatRP2, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, MineFactoryReloaded|CompatXyCraft, Mekanism] 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [DartCraft] containing declared API package buildcraft.api.bptblocks (owned by BuildCraftAPI|blueprints) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [Mekanism] containing declared API package buildcraft.api.bptblocks (owned by BuildCraftAPI|blueprints) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [GraviSuite] containing declared API package buildcraft.api.bptblocks (owned by BuildCraftAPI|blueprints) without associated API reference 2014-08-17 22:03:40 [FINEST] [ForgeModLoader] Removing upstream parent BuildCraftAPI|core from APIContainer{BuildCraftAPI|bptblocks:1.0} 2014-08-17 22:03:40 [FINEST] [ForgeModLoader] Removing upstream parent BuildCraft|Core from APIContainer{BuildCraftAPI|bptblocks:1.0} 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Creating API container dummy for API BuildCraftAPI|bptblocks: owner: BuildCraftAPI|blueprints, dependents: [buildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Silicon, BuildCraft|Transport, DartCraft, Mekanism, GraviSuite] 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [DartCraft] containing declared API package buildcraft.api.inventory (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [Mekanism] containing declared API package buildcraft.api.inventory (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [GraviSuite] containing declared API package buildcraft.api.inventory (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [FINEST] [ForgeModLoader] Removing upstream parent BuildCraft|Core from APIContainer{BuildCraftAPI|inventory:1.0} 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Creating API container dummy for API BuildCraftAPI|inventory: owner: BuildCraftAPI|core, dependents: [buildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Silicon, BuildCraft|Transport, Railcraft, DartCraft, Mekanism, GraviSuite] 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [DartCraft] containing declared API package buildcraft.api.fuels (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [MFR Compat Forestry Trees, MFR Compat Extra Trees, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForestryPre, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatPams, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatRP2, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, MineFactoryReloaded|CompatXyCraft] containing declared API package buildcraft.api.fuels (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [Mekanism] containing declared API package buildcraft.api.fuels (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [GraviSuite] containing declared API package buildcraft.api.fuels (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [FINEST] [ForgeModLoader] Removing upstream parent BuildCraft|Core from APIContainer{BuildCraftAPI|fuels:1.0} 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Creating API container dummy for API BuildCraftAPI|fuels: owner: BuildCraftAPI|core, dependents: [buildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Silicon, BuildCraft|Transport, DartCraft, MFR Compat Forestry Trees, MFR Compat Extra Trees, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForestryPre, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatPams, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatRP2, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, MineFactoryReloaded|CompatXyCraft, Mekanism, GraviSuite] 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [ThermalExpansion] containing declared API package buildcraft.api.transport (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [GraviSuite] containing declared API package buildcraft.api.transport (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [DartCraft] containing declared API package buildcraft.api.transport (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [MFR Compat Forestry Trees, MFR Compat Extra Trees, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForestryPre, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatPams, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatRP2, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, MineFactoryReloaded|CompatXyCraft] containing declared API package buildcraft.api.transport (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [Mekanism] containing declared API package buildcraft.api.transport (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [FINEST] [ForgeModLoader] Removing upstream parent BuildCraft|Core from APIContainer{BuildCraftAPI|transport:1.0} 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Creating API container dummy for API BuildCraftAPI|transport: owner: BuildCraftAPI|core, dependents: [buildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Silicon, BuildCraft|Transport, Railcraft, ThermalExpansion, GraviSuite, DartCraft, MFR Compat Forestry Trees, MFR Compat Extra Trees, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForestryPre, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatPams, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatRP2, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, MineFactoryReloaded|CompatXyCraft, Mekanism] 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [DartCraft] containing declared API package buildcraft.api.recipes (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [Mekanism] containing declared API package buildcraft.api.recipes (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [GraviSuite] containing declared API package buildcraft.api.recipes (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [FINEST] [ForgeModLoader] Removing upstream parent BuildCraft|Core from APIContainer{BuildCraftAPI|recipes:1.0} 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Creating API container dummy for API BuildCraftAPI|recipes: owner: BuildCraftAPI|core, dependents: [buildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Silicon, BuildCraft|Transport, DartCraft, Mekanism, GraviSuite] 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [GraviSuite] containing declared API package buildcraft.api.core (owned by BuildCraft|Core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [DartCraft] containing declared API package buildcraft.api.core (owned by BuildCraft|Core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [ThaumicTinkerer] containing declared API package buildcraft.api.core (owned by BuildCraft|Core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [MFR Compat Forestry Trees, MFR Compat Extra Trees, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForestryPre, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatPams, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatRP2, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, MineFactoryReloaded|CompatXyCraft] containing declared API package buildcraft.api.core (owned by BuildCraft|Core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [Mekanism] containing declared API package buildcraft.api.core (owned by BuildCraft|Core) without associated API reference 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Creating API container dummy for API BuildCraftAPI|core: owner: BuildCraft|Core, dependents: [buildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Silicon, BuildCraft|Transport, Railcraft, UniversalElectricity, GraviSuite, DartCraft, ThaumicTinkerer, MFR Compat Forestry Trees, MFR Compat Extra Trees, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForestryPre, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatPams, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatRP2, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, MineFactoryReloaded|CompatXyCraft, Mekanism] 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [DartCraft] containing declared API package buildcraft.api.filler (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [Mekanism] containing declared API package buildcraft.api.filler (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [iNFO] [ForgeModLoader] Found mod(s) [GraviSuite] containing declared API package buildcraft.api.filler (owned by BuildCraftAPI|core) without associated API reference 2014-08-17 22:03:40 [FINEST] [ForgeModLoader] Removing upstream parent BuildCraft|Core from APIContainer{BuildCraftAPI|filler:2.0} 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Creating API container dummy for API BuildCraftAPI|filler: owner: BuildCraftAPI|core, dependents: [buildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Silicon, BuildCraft|Transport, DartCraft, Mekanism, GraviSuite] 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Creating API container dummy for API UniversalElectricityAPI: owner: UniversalElectricity, dependents: [] 2014-08-17 22:03:40 [FINER] [ForgeModLoader] Received a system property request '' 2014-08-17 22:03:40 [FINER] [ForgeModLoader] System property request managing the state of 0 mods 2014-08-17 22:03:40 [FINE] [ForgeModLoader] After merging, found state information for 0 mods 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Reloading logging properties from C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\config\logging.properties 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Reloaded logging properties 2014-08-17 22:03:40 [FINE] [mcp] Mod Logging channel mcp configured at default level. 2014-08-17 22:03:40 [iNFO] [mcp] Activating mod mcp 2014-08-17 22:03:40 [FINE] [FML] Mod Logging channel FML configured at default level. 2014-08-17 22:03:40 [iNFO] [FML] Activating mod FML 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Injecting found translation data in zip file Server_TheLastCraft.jar at assets/forge/lang/en_US.lang into language system 2014-08-17 22:03:40 [FINE] [Forge] Mod Logging channel Forge configured at default level. 2014-08-17 22:03:40 [iNFO] [Forge] Activating mod Forge 2014-08-17 22:03:40 [FINE] [ForgeModLoader] Injecting found translation data in zip file Server_TheLastCraft.jar at assets/forge/lang/en_US.lang into language system 2014-08-17 22:03:40 [FINE] [AM2-Preloader] Mod Logging channel AM2-Preloader configured at default level. 2014-08-17 22:03:40 [iNFO] [AM2-Preloader] Activating mod AM2-Preloader 2014-08-17 22:03:40 [FINE] [AppliedEnergistics-Core] Mod Logging channel AppliedEnergistics-Core configured at default level. 2014-08-17 22:03:40 [iNFO] [AppliedEnergistics-Core] Activating mod AppliedEnergistics-Core 2014-08-17 22:03:40 [FINE] [CodeChickenCore] Mod Logging channel CodeChickenCore configured at default level. 2014-08-17 22:03:40 [iNFO] [CodeChickenCore] Activating mod CodeChickenCore 2014-08-17 22:03:41 [FINE] [Micdoodlecore] Mod Logging channel Micdoodlecore configured at default level. 2014-08-17 22:03:41 [iNFO] [Micdoodlecore] Activating mod Micdoodlecore 2014-08-17 22:03:41 [FINE] [OpenModsCore] Mod Logging channel OpenModsCore configured at default level. 2014-08-17 22:03:41 [iNFO] [OpenModsCore] Activating mod OpenModsCore 2014-08-17 22:03:41 [FINE] [PowerCrystalsCore] Mod Logging channel PowerCrystalsCore configured at default level. 2014-08-17 22:03:41 [iNFO] [PowerCrystalsCore] Activating mod PowerCrystalsCore 2014-08-17 22:03:41 [FINE] [TConstruct-Preloader] Mod Logging channel TConstruct-Preloader configured at default level. 2014-08-17 22:03:41 [iNFO] [TConstruct-Preloader] Activating mod TConstruct-Preloader 2014-08-17 22:03:41 [FINE] [Hats] Enabling mod Hats 2014-08-17 22:03:41 [FINE] [Hats] Mod Logging channel Hats configured at default level. 2014-08-17 22:03:41 [iNFO] [Hats] Activating mod Hats 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file [1.6.4] Hats2.1.8.zip at assets/hats/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [iChunUtil] Enabling mod iChunUtil 2014-08-17 22:03:41 [FINE] [iChunUtil] Mod Logging channel iChunUtil configured at default level. 2014-08-17 22:03:41 [iNFO] [iChunUtil] Activating mod iChunUtil 2014-08-17 22:03:41 [FINE] [Morph] Enabling mod Morph 2014-08-17 22:03:41 [FINE] [Morph] Mod Logging channel Morph configured at default level. 2014-08-17 22:03:41 [iNFO] [Morph] Activating mod Morph 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file [1.6.4] Morph-Beta-0.7.2.zip at assets/morph/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [PortalGun] Enabling mod PortalGun 2014-08-17 22:03:41 [FINE] [PortalGun] Mod Logging channel PortalGun configured at default level. 2014-08-17 22:03:41 [iNFO] [PortalGun] Activating mod PortalGun 2014-08-17 22:03:41 [FINE] [AdvancedThaumaturgy] Enabling mod AdvancedThaumaturgy 2014-08-17 22:03:41 [FINE] [AdvancedThaumaturgy] Mod Logging channel AdvancedThaumaturgy configured at default level. 2014-08-17 22:03:41 [iNFO] [AdvancedThaumaturgy] Activating mod AdvancedThaumaturgy 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file AdvancedThaumaturgy-1.6.4-0.0.28.jar at assets/advthaum/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [Aether II] Enabling mod Aether II 2014-08-17 22:03:41 [FINE] [Aether II] Mod Logging channel Aether II configured at default level. 2014-08-17 22:03:41 [iNFO] [Aether II] Activating mod Aether II 2014-08-17 22:03:41 [FINE] [arsmagica2] Enabling mod arsmagica2 2014-08-17 22:03:41 [FINE] [arsmagica2] Mod Logging channel arsmagica2 configured at default level. 2014-08-17 22:03:41 [iNFO] [arsmagica2] Activating mod arsmagica2 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file AM2_1.2.0.018.jar at assets/arsmagica2/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file AM2_1.2.0.018.jar at assets/forge/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [AnimationAPI] Enabling mod AnimationAPI 2014-08-17 22:03:41 [FINE] [AnimationAPI] Mod Logging channel AnimationAPI configured at default level. 2014-08-17 22:03:41 [iNFO] [AnimationAPI] Activating mod AnimationAPI 2014-08-17 22:03:41 [FINE] [AppliedEnergistics] Enabling mod AppliedEnergistics 2014-08-17 22:03:41 [FINE] [AppliedEnergistics] Mod Logging channel AppliedEnergistics configured at default level. 2014-08-17 22:03:41 [iNFO] [AppliedEnergistics] Activating mod AppliedEnergistics 2014-08-17 22:03:41 [FINE] [ArchimedesShipsMod] Enabling mod ArchimedesShipsMod 2014-08-17 22:03:41 [FINE] [ArchimedesShipsMod] Mod Logging channel ArchimedesShipsMod configured at default level. 2014-08-17 22:03:41 [iNFO] [ArchimedesShipsMod] Activating mod ArchimedesShipsMod 2014-08-17 22:03:41 [FINE] [biblioCraft] Enabling mod BiblioCraft 2014-08-17 22:03:41 [FINE] [biblioCraft] Mod Logging channel BiblioCraft configured at default level. 2014-08-17 22:03:41 [iNFO] [biblioCraft] Activating mod BiblioCraft 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file BiblioCraft[v1.5.5].zip at assets/bibliocraft/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [biomesOPlenty] Enabling mod BiomesOPlenty 2014-08-17 22:03:41 [FINE] [biomesOPlenty] Mod Logging channel BiomesOPlenty configured at default level. 2014-08-17 22:03:41 [iNFO] [biomesOPlenty] Activating mod BiomesOPlenty 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file BiomesOPlenty-universal-1.6.4-1.2.1.434.jar at assets/biomesoplenty/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [AWWayofTime] Enabling mod AWWayofTime 2014-08-17 22:03:41 [FINE] [AWWayofTime] Mod Logging channel AWWayofTime configured at default level. 2014-08-17 22:03:41 [iNFO] [AWWayofTime] Activating mod AWWayofTime 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file Blood Magic v1.0.1g.zip at assets/alchemicalwizardry/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file Blood Magic v1.0.1g.zip at assets/forge/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [buildCraft|Builders] Enabling mod BuildCraft|Builders 2014-08-17 22:03:41 [FINE] [buildCraft|Builders] Mod Logging channel BuildCraft|Builders configured at default level. 2014-08-17 22:03:41 [iNFO] [buildCraft|Builders] Activating mod BuildCraft|Builders 2014-08-17 22:03:41 [FINE] [buildCraft|Core] Enabling mod BuildCraft|Core 2014-08-17 22:03:41 [FINE] [buildCraft|Core] Mod Logging channel BuildCraft|Core configured at default level. 2014-08-17 22:03:41 [iNFO] [buildCraft|Core] Activating mod BuildCraft|Core 2014-08-17 22:03:41 [FINE] [buildCraft|Energy] Enabling mod BuildCraft|Energy 2014-08-17 22:03:41 [FINE] [buildCraft|Energy] Mod Logging channel BuildCraft|Energy configured at default level. 2014-08-17 22:03:41 [iNFO] [buildCraft|Energy] Activating mod BuildCraft|Energy 2014-08-17 22:03:41 [FINE] [buildCraft|Factory] Enabling mod BuildCraft|Factory 2014-08-17 22:03:41 [FINE] [buildCraft|Factory] Mod Logging channel BuildCraft|Factory configured at default level. 2014-08-17 22:03:41 [iNFO] [buildCraft|Factory] Activating mod BuildCraft|Factory 2014-08-17 22:03:41 [FINE] [buildCraft|Silicon] Enabling mod BuildCraft|Silicon 2014-08-17 22:03:41 [FINE] [buildCraft|Silicon] Mod Logging channel BuildCraft|Silicon configured at default level. 2014-08-17 22:03:41 [iNFO] [buildCraft|Silicon] Activating mod BuildCraft|Silicon 2014-08-17 22:03:41 [FINE] [buildCraft|Transport] Enabling mod BuildCraft|Transport 2014-08-17 22:03:41 [FINE] [buildCraft|Transport] Mod Logging channel BuildCraft|Transport configured at default level. 2014-08-17 22:03:41 [iNFO] [buildCraft|Transport] Activating mod BuildCraft|Transport 2014-08-17 22:03:41 [FINE] [CalclaviaCore] Enabling mod CalclaviaCore 2014-08-17 22:03:41 [FINE] [CalclaviaCore] Mod Logging channel CalclaviaCore configured at default level. 2014-08-17 22:03:41 [iNFO] [CalclaviaCore] Activating mod CalclaviaCore 2014-08-17 22:03:41 [FINE] [CoFHCore] Enabling mod CoFHCore 2014-08-17 22:03:41 [FINE] [CoFHCore] Mod Logging channel CoFHCore configured at default level. 2014-08-17 22:03:41 [iNFO] [CoFHCore] Activating mod CoFHCore 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file CoFHCore-2.0.0.5.jar at assets/cofh/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [CoFHLoot] Enabling mod CoFHLoot 2014-08-17 22:03:41 [FINE] [CoFHLoot] Mod Logging channel CoFHLoot configured at default level. 2014-08-17 22:03:41 [iNFO] [CoFHLoot] Activating mod CoFHLoot 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file CoFHCore-2.0.0.5.jar at assets/cofh/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [CoFHMasquerade] Enabling mod CoFHMasquerade 2014-08-17 22:03:41 [FINE] [CoFHMasquerade] Mod Logging channel CoFHMasquerade configured at default level. 2014-08-17 22:03:41 [iNFO] [CoFHMasquerade] Activating mod CoFHMasquerade 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file CoFHCore-2.0.0.5.jar at assets/cofh/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [CoFHSocial] Enabling mod CoFHSocial 2014-08-17 22:03:41 [FINE] [CoFHSocial] Mod Logging channel CoFHSocial configured at default level. 2014-08-17 22:03:41 [iNFO] [CoFHSocial] Activating mod CoFHSocial 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file CoFHCore-2.0.0.5.jar at assets/cofh/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [CoFHWorld] Enabling mod CoFHWorld 2014-08-17 22:03:41 [FINE] [CoFHWorld] Mod Logging channel CoFHWorld configured at default level. 2014-08-17 22:03:41 [iNFO] [CoFHWorld] Activating mod CoFHWorld 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file CoFHCore-2.0.0.5.jar at assets/cofh/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [CustomSpawner] Enabling mod CustomSpawner 2014-08-17 22:03:41 [FINE] [CustomSpawner] Mod Logging channel CustomSpawner configured at default level. 2014-08-17 22:03:41 [iNFO] [CustomSpawner] Activating mod CustomSpawner 2014-08-17 22:03:41 [FINE] [DartCraft] Enabling mod DartCraft 2014-08-17 22:03:41 [FINE] [DartCraft] Mod Logging channel DartCraft configured at default level. 2014-08-17 22:03:41 [iNFO] [DartCraft] Activating mod DartCraft 2014-08-17 22:03:41 [FINE] [MoCreatures] Enabling mod MoCreatures 2014-08-17 22:03:41 [FINE] [MoCreatures] Mod Logging channel MoCreatures configured at default level. 2014-08-17 22:03:41 [iNFO] [MoCreatures] Activating mod MoCreatures 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file DrZharks MoCreatures Mod v6.1.0.zip at assets/mocreatures/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [Tombenpotter's Electro-Magic Tools] Enabling mod Tombenpotter's Electro-Magic Tools 2014-08-17 22:03:41 [FINE] [Tombenpotter's Electro-Magic Tools] Mod Logging channel Tombenpotter's Electro-Magic Tools configured at default level. 2014-08-17 22:03:41 [iNFO] [Tombenpotter's Electro-Magic Tools] Activating mod Tombenpotter's Electro-Magic Tools 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file ElectroMagicTools-1.0.9d.jar at assets/electricmagictools/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [EnderStorage] Enabling mod EnderStorage 2014-08-17 22:03:41 [FINE] [EnderStorage] Mod Logging channel EnderStorage configured at default level. 2014-08-17 22:03:41 [iNFO] [EnderStorage] Activating mod EnderStorage 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file EnderStorage 1.4.3.6.jar at assets/enderstorage/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [FlansMod] Enabling mod FlansMod 2014-08-17 22:03:41 [FINE] [FlansMod] Mod Logging channel FlansMod configured at default level. 2014-08-17 22:03:41 [iNFO] [FlansMod] Activating mod FlansMod 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file FlansMod-4.1.1.jar at assets/forge/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [ForbiddenMagic] Enabling mod ForbiddenMagic 2014-08-17 22:03:41 [FINE] [ForbiddenMagic] Mod Logging channel ForbiddenMagic configured at default level. 2014-08-17 22:03:41 [iNFO] [ForbiddenMagic] Activating mod ForbiddenMagic 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file ForbiddenMagic pr0.35a.jar at assets/forbidden/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [GalacticraftCore] Enabling mod GalacticraftCore 2014-08-17 22:03:41 [FINE] [GalacticraftCore] Mod Logging channel GalacticraftCore configured at default level. 2014-08-17 22:03:41 [iNFO] [GalacticraftCore] Activating mod GalacticraftCore 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file Galacticraft-1.6.4-2.0.2.800.jar at assets/galacticraftmars/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file Galacticraft-1.6.4-2.0.2.800.jar at assets/galacticraftmoon/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file Galacticraft-1.6.4-2.0.2.800.jar at assets/galacticraftcore/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [GalacticraftMars] Enabling mod GalacticraftMars 2014-08-17 22:03:41 [FINE] [GalacticraftMars] Mod Logging channel GalacticraftMars configured at default level. 2014-08-17 22:03:41 [iNFO] [GalacticraftMars] Activating mod GalacticraftMars 2014-08-17 22:03:41 [FINE] [GraviSuite] Enabling mod GraviSuite 2014-08-17 22:03:41 [FINE] [GraviSuite] Mod Logging channel GraviSuite configured at default level. 2014-08-17 22:03:41 [iNFO] [GraviSuite] Activating mod GraviSuite 2014-08-17 22:03:41 [FINE] [HatStand] Enabling mod HatStand 2014-08-17 22:03:41 [FINE] [HatStand] Mod Logging channel HatStand configured at default level. 2014-08-17 22:03:41 [iNFO] [HatStand] Activating mod HatStand 2014-08-17 22:03:41 [FINE] [iC2] Enabling mod IC2 2014-08-17 22:03:41 [FINE] [iC2] Mod Logging channel IC2 configured at default level. 2014-08-17 22:03:41 [iNFO] [iC2] Activating mod IC2 2014-08-17 22:03:41 [FINE] [inventorytweaks] Enabling mod inventorytweaks 2014-08-17 22:03:41 [FINE] [inventorytweaks] Mod Logging channel inventorytweaks configured at default level. 2014-08-17 22:03:41 [iNFO] [inventorytweaks] Activating mod inventorytweaks 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file InventoryTweaks-MC1.6.2-1.56-b77.jar at assets/inventorytweaks/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [ironChest] Enabling mod IronChest 2014-08-17 22:03:41 [FINE] [ironChest] Mod Logging channel IronChest configured at default level. 2014-08-17 22:03:41 [iNFO] [ironChest] Activating mod IronChest 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file ironchest-universal-1.6.4-5.4.1.676.zip at assets/ironchest/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [JABBA] Enabling mod JABBA 2014-08-17 22:03:41 [FINE] [JABBA] Mod Logging channel JABBA configured at default level. 2014-08-17 22:03:41 [iNFO] [JABBA] Activating mod JABBA 2014-08-17 22:03:41 [FINE] [LogisticsPipes|Main] Enabling mod LogisticsPipes|Main 2014-08-17 22:03:41 [FINE] [LogisticsPipes|Main] Mod Logging channel LogisticsPipes|Main configured at default level. 2014-08-17 22:03:41 [iNFO] [LogisticsPipes|Main] Activating mod LogisticsPipes|Main 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file LogisticsPipes-MC1.6.4-0.7.4.dev.290.jar at assets/logisticspipes/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [Mekanism] Enabling mod Mekanism 2014-08-17 22:03:41 [FINE] [Mekanism] Mod Logging channel Mekanism configured at default level. 2014-08-17 22:03:41 [iNFO] [Mekanism] Activating mod Mekanism 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file Mekanism-6.0.5.46[Optimized].jar at assets/mekanism/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [MekanismGenerators] Enabling mod MekanismGenerators 2014-08-17 22:03:41 [FINE] [MekanismGenerators] Mod Logging channel MekanismGenerators configured at default level. 2014-08-17 22:03:41 [iNFO] [MekanismGenerators] Activating mod MekanismGenerators 2014-08-17 22:03:41 [FINE] [MekanismTools] Enabling mod MekanismTools 2014-08-17 22:03:41 [FINE] [MekanismTools] Mod Logging channel MekanismTools configured at default level. 2014-08-17 22:03:41 [iNFO] [MekanismTools] Activating mod MekanismTools 2014-08-17 22:03:41 [FINE] [MFR Compat Forestry Trees] Enabling mod MFR Compat Forestry Trees 2014-08-17 22:03:41 [FINE] [MFR Compat Forestry Trees] Mod Logging channel MFR Compat Forestry Trees configured at default level. 2014-08-17 22:03:41 [iNFO] [MFR Compat Forestry Trees] Activating mod MFR Compat Forestry Trees 2014-08-17 22:03:41 [FINE] [MFR Compat Extra Trees] Enabling mod MFR Compat Extra Trees 2014-08-17 22:03:41 [FINE] [MFR Compat Extra Trees] Mod Logging channel MFR Compat Extra Trees configured at default level. 2014-08-17 22:03:41 [iNFO] [MFR Compat Extra Trees] Activating mod MFR Compat Extra Trees 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded] Enabling mod MineFactoryReloaded 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded] Mod Logging channel MineFactoryReloaded configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded] Activating mod MineFactoryReloaded 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatAppliedEnergistics] Enabling mod MineFactoryReloaded|CompatAppliedEnergistics 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatAppliedEnergistics] Mod Logging channel MineFactoryReloaded|CompatAppliedEnergistics configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatAppliedEnergistics] Activating mod MineFactoryReloaded|CompatAppliedEnergistics 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatAtum] Enabling mod MineFactoryReloaded|CompatAtum 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatAtum] Mod Logging channel MineFactoryReloaded|CompatAtum configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatAtum] Activating mod MineFactoryReloaded|CompatAtum 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatBackTools] Enabling mod MineFactoryReloaded|CompatBackTools 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatBackTools] Mod Logging channel MineFactoryReloaded|CompatBackTools configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatBackTools] Activating mod MineFactoryReloaded|CompatBackTools 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatBuildCraft] Enabling mod MineFactoryReloaded|CompatBuildCraft 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatBuildCraft] Mod Logging channel MineFactoryReloaded|CompatBuildCraft configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatBuildCraft] Activating mod MineFactoryReloaded|CompatBuildCraft 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatChococraft] Enabling mod MineFactoryReloaded|CompatChococraft 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatChococraft] Mod Logging channel MineFactoryReloaded|CompatChococraft configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatChococraft] Activating mod MineFactoryReloaded|CompatChococraft 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatExtraBiomes] Enabling mod MineFactoryReloaded|CompatExtraBiomes 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatExtraBiomes] Mod Logging channel MineFactoryReloaded|CompatExtraBiomes configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatExtraBiomes] Activating mod MineFactoryReloaded|CompatExtraBiomes 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatForestry] Enabling mod MineFactoryReloaded|CompatForestry 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatForestry] Mod Logging channel MineFactoryReloaded|CompatForestry configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatForestry] Activating mod MineFactoryReloaded|CompatForestry 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatForestryPre] Enabling mod MineFactoryReloaded|CompatForestryPre 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatForestryPre] Mod Logging channel MineFactoryReloaded|CompatForestryPre configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatForestryPre] Activating mod MineFactoryReloaded|CompatForestryPre 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatForgeMicroblock] Enabling mod MineFactoryReloaded|CompatForgeMicroblock 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatForgeMicroblock] Mod Logging channel MineFactoryReloaded|CompatForgeMicroblock configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatForgeMicroblock] Activating mod MineFactoryReloaded|CompatForgeMicroblock 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatIC2] Enabling mod MineFactoryReloaded|CompatIC2 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatIC2] Mod Logging channel MineFactoryReloaded|CompatIC2 configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatIC2] Activating mod MineFactoryReloaded|CompatIC2 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatMystcraft] Enabling mod MineFactoryReloaded|CompatMystcraft 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatMystcraft] Mod Logging channel MineFactoryReloaded|CompatMystcraft configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatMystcraft] Activating mod MineFactoryReloaded|CompatMystcraft 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatPams] Enabling mod MineFactoryReloaded|CompatPams 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatPams] Mod Logging channel MineFactoryReloaded|CompatPams configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatPams] Activating mod MineFactoryReloaded|CompatPams 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatProjRed] Enabling mod MineFactoryReloaded|CompatProjRed 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatProjRed] Mod Logging channel MineFactoryReloaded|CompatProjRed configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatProjRed] Activating mod MineFactoryReloaded|CompatProjRed 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatRailcraft] Enabling mod MineFactoryReloaded|CompatRailcraft 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatRailcraft] Mod Logging channel MineFactoryReloaded|CompatRailcraft configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatRailcraft] Activating mod MineFactoryReloaded|CompatRailcraft 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatRP2] Enabling mod MineFactoryReloaded|CompatRP2 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatRP2] Mod Logging channel MineFactoryReloaded|CompatRP2 configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatRP2] Activating mod MineFactoryReloaded|CompatRP2 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatSufficientBiomes] Enabling mod MineFactoryReloaded|CompatSufficientBiomes 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatSufficientBiomes] Mod Logging channel MineFactoryReloaded|CompatSufficientBiomes configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatSufficientBiomes] Activating mod MineFactoryReloaded|CompatSufficientBiomes 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatThaumcraft] Enabling mod MineFactoryReloaded|CompatThaumcraft 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatThaumcraft] Mod Logging channel MineFactoryReloaded|CompatThaumcraft configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatThaumcraft] Activating mod MineFactoryReloaded|CompatThaumcraft 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatThermalExpansion] Enabling mod MineFactoryReloaded|CompatThermalExpansion 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatThermalExpansion] Mod Logging channel MineFactoryReloaded|CompatThermalExpansion configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatThermalExpansion] Activating mod MineFactoryReloaded|CompatThermalExpansion 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatTwilightForest] Enabling mod MineFactoryReloaded|CompatTwilightForest 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatTwilightForest] Mod Logging channel MineFactoryReloaded|CompatTwilightForest configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatTwilightForest] Activating mod MineFactoryReloaded|CompatTwilightForest 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatVanilla] Enabling mod MineFactoryReloaded|CompatVanilla 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatVanilla] Mod Logging channel MineFactoryReloaded|CompatVanilla configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatVanilla] Activating mod MineFactoryReloaded|CompatVanilla 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatXyCraft] Enabling mod MineFactoryReloaded|CompatXyCraft 2014-08-17 22:03:41 [FINE] [MineFactoryReloaded|CompatXyCraft] Mod Logging channel MineFactoryReloaded|CompatXyCraft configured at default level. 2014-08-17 22:03:41 [iNFO] [MineFactoryReloaded|CompatXyCraft] Activating mod MineFactoryReloaded|CompatXyCraft 2014-08-17 22:03:41 [FINE] [MFFS] Enabling mod MFFS 2014-08-17 22:03:41 [FINE] [MFFS] Mod Logging channel MFFS configured at default level. 2014-08-17 22:03:41 [iNFO] [MFFS] Activating mod MFFS 2014-08-17 22:03:41 [FINE] [moreplayermodels] Enabling mod moreplayermodels 2014-08-17 22:03:41 [FINE] [moreplayermodels] Mod Logging channel moreplayermodels configured at default level. 2014-08-17 22:03:41 [iNFO] [moreplayermodels] Activating mod moreplayermodels 2014-08-17 22:03:41 [FINE] [Natura] Enabling mod Natura 2014-08-17 22:03:41 [FINE] [Natura] Mod Logging channel Natura configured at default level. 2014-08-17 22:03:41 [iNFO] [Natura] Activating mod Natura 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file Natura_mc1.6.X_2.1.14.jar at assets/natura/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [NetherOres] Enabling mod NetherOres 2014-08-17 22:03:41 [FINE] [NetherOres] Mod Logging channel NetherOres configured at default level. 2014-08-17 22:03:41 [iNFO] [NetherOres] Activating mod NetherOres 2014-08-17 22:03:41 [FINE] [OpenBlocks] Enabling mod OpenBlocks 2014-08-17 22:03:41 [FINE] [OpenBlocks] Mod Logging channel OpenBlocks configured at default level. 2014-08-17 22:03:41 [iNFO] [OpenBlocks] Activating mod OpenBlocks 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file OpenBlocks-1.2.5.jar at assets/openblocks/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [OpenMods] Enabling mod OpenMods 2014-08-17 22:03:41 [FINE] [OpenMods] Mod Logging channel OpenMods configured at default level. 2014-08-17 22:03:41 [iNFO] [OpenMods] Activating mod OpenMods 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file OpenModsLib-0.2.jar at assets/openmodslib/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [Railcraft] Enabling mod Railcraft 2014-08-17 22:03:41 [FINE] [Railcraft] Mod Logging channel Railcraft configured at default level. 2014-08-17 22:03:41 [iNFO] [Railcraft] Activating mod Railcraft 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file Railcraft_1.6.4-8.3.2.0.jar at assets/railcraft/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [Redstone Arsenal] Enabling mod Redstone Arsenal 2014-08-17 22:03:41 [FINE] [Redstone Arsenal] Mod Logging channel Redstone Arsenal configured at default level. 2014-08-17 22:03:41 [iNFO] [Redstone Arsenal] Activating mod Redstone Arsenal 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file RedstoneArsenal-1.0.0.0.jar at assets/redstonearsenal/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [ResonantEngine] Enabling mod ResonantEngine 2014-08-17 22:03:41 [FINE] [ResonantEngine] Mod Logging channel ResonantEngine configured at default level. 2014-08-17 22:03:41 [iNFO] [ResonantEngine] Activating mod ResonantEngine 2014-08-17 22:03:41 [FINE] [TConstruct] Enabling mod TConstruct 2014-08-17 22:03:41 [FINE] [TConstruct] Mod Logging channel TConstruct configured at default level. 2014-08-17 22:03:41 [iNFO] [TConstruct] Activating mod TConstruct 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file TConstruct_mc1.6.4_1.5.5.7.jar at assets/tinker/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [Thaumcraft] Enabling mod Thaumcraft 2014-08-17 22:03:41 [FINE] [Thaumcraft] Mod Logging channel Thaumcraft configured at default level. 2014-08-17 22:03:41 [iNFO] [Thaumcraft] Activating mod Thaumcraft 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file Thaumcraft4.1.0g.zip at assets/thaumcraft/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [ThaumcraftExtras] Enabling mod ThaumcraftExtras 2014-08-17 22:03:41 [FINE] [ThaumcraftExtras] Mod Logging channel ThaumcraftExtras configured at default level. 2014-08-17 22:03:41 [iNFO] [ThaumcraftExtras] Activating mod ThaumcraftExtras 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file ThaumcraftExtras-1.6.4-1.0.0.4.jar at assets/thaumcraftextras/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [ThaumicExploration] Enabling mod ThaumicExploration 2014-08-17 22:03:41 [FINE] [ThaumicExploration] Mod Logging channel ThaumicExploration configured at default level. 2014-08-17 22:03:41 [iNFO] [ThaumicExploration] Activating mod ThaumicExploration 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file Thaumic Exploration 0.5.2.jar at assets/thaumicexploration/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [ThaumicTinkerer] Enabling mod ThaumicTinkerer 2014-08-17 22:03:41 [FINE] [ThaumicTinkerer] Mod Logging channel ThaumicTinkerer configured at default level. 2014-08-17 22:03:41 [iNFO] [ThaumicTinkerer] Activating mod ThaumicTinkerer 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file ThaumicTinkerer-2.3-140.jar at assets/ttinkerer/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [ThermalExpansion] Enabling mod ThermalExpansion 2014-08-17 22:03:41 [FINE] [ThermalExpansion] Mod Logging channel ThermalExpansion configured at default level. 2014-08-17 22:03:41 [iNFO] [ThermalExpansion] Activating mod ThermalExpansion 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file ThermalExpansion-3.0.0.7.jar at assets/thermalexpansion/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [TwilightForest] Enabling mod TwilightForest 2014-08-17 22:03:41 [FINE] [TwilightForest] Mod Logging channel TwilightForest configured at default level. 2014-08-17 22:03:41 [iNFO] [TwilightForest] Activating mod TwilightForest 2014-08-17 22:03:41 [FINE] [universalElectricity] Enabling mod UniversalElectricity 2014-08-17 22:03:41 [FINE] [universalElectricity] Mod Logging channel UniversalElectricity configured at default level. 2014-08-17 22:03:41 [iNFO] [universalElectricity] Activating mod UniversalElectricity 2014-08-17 22:03:41 [FINE] [witchery] Enabling mod witchery 2014-08-17 22:03:41 [FINE] [witchery] Mod Logging channel witchery configured at default level. 2014-08-17 22:03:41 [iNFO] [witchery] Activating mod witchery 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file witchery-1.6.4-0.19.2.zip at assets/witchery/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [YALSM] Enabling mod YALSM 2014-08-17 22:03:41 [FINE] [YALSM] Mod Logging channel YALSM configured at default level. 2014-08-17 22:03:41 [iNFO] [YALSM] Activating mod YALSM 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file Yet-Another-Leather-Smelting-Mod-1.6.4.jar at assets/yalsm/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [ForgeMicroblock] Enabling mod ForgeMicroblock 2014-08-17 22:03:41 [FINE] [ForgeMicroblock] Mod Logging channel ForgeMicroblock configured at default level. 2014-08-17 22:03:41 [iNFO] [ForgeMicroblock] Activating mod ForgeMicroblock 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file ForgeMultipart-universal-1.6.4-1.0.0.219.jar at assets/microblock/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [ForgeMultipart] Enabling mod ForgeMultipart 2014-08-17 22:03:41 [FINE] [ForgeMultipart] Mod Logging channel ForgeMultipart configured at default level. 2014-08-17 22:03:41 [iNFO] [ForgeMultipart] Activating mod ForgeMultipart 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file ForgeMultipart-universal-1.6.4-1.0.0.219.jar at assets/microblock/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINE] [McMultipart] Enabling mod McMultipart 2014-08-17 22:03:41 [FINE] [McMultipart] Mod Logging channel McMultipart configured at default level. 2014-08-17 22:03:41 [iNFO] [McMultipart] Activating mod McMultipart 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Injecting found translation data in zip file ForgeMultipart-universal-1.6.4-1.0.0.219.jar at assets/microblock/lang/en_US.lang into language system 2014-08-17 22:03:41 [FINER] [ForgeModLoader] Verifying mod requirements are satisfied 2014-08-17 22:03:41 [FINER] [ForgeModLoader] All mod requirements are satisfied 2014-08-17 22:03:41 [FINER] [ForgeModLoader] Sorting mods into an ordered list 2014-08-17 22:03:41 [FINER] [ForgeModLoader] Mod sorting completed successfully 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Mod sorting data 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Hats(Hats:2.1.: [1.6.4] Hats2.1.8.zip () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] iChunUtil(iChunUtil:2.4.0): [1.6.4] iChunUtil2.4.0.zip (required-after:Forge@[9.10.0.810,)) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Morph(Morph:0.7.2): [1.6.4] Morph-Beta-0.7.2.zip (required-after:Forge@[9.11.1.945,)) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] PortalGun(PortalGun:2.0.2): [1.6.4] PortalGun2.0.2.zip (required-after:iChunUtil@[2.1.0,)) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] BuildCraft|Core(BuildCraft:4.2.2): buildcraft-A-1.6.4-4.2.2.jar (required-after:Forge@[9.11.1.953,)) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] API:BuildCraftAPI|core(API: BuildCraftAPI|core:1.0): buildcraft-A-1.6.4-4.2.2.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] API:BuildCraftAPI|gates(API: BuildCraftAPI|gates:1.0): Railcraft_1.6.4-8.3.2.0.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] API:BuildCraftAPI|blueprints(API: BuildCraftAPI|blueprints:1.0): buildcraft-A-1.6.4-4.2.2.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] API:BuildCraftAPI|power(API: BuildCraftAPI|power:1.0): buildcraft-A-1.6.4-4.2.2.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] API:BuildCraftAPI|tools(API: BuildCraftAPI|tools:1.0): Railcraft_1.6.4-8.3.2.0.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] API:BuildCraftAPI|bptblocks(API: BuildCraftAPI|bptblocks:1.0): buildcraft-A-1.6.4-4.2.2.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] API:BuildCraftAPI|inventory(API: BuildCraftAPI|inventory:1.0): buildcraft-A-1.6.4-4.2.2.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] API:BuildCraftAPI|fuels(API: BuildCraftAPI|fuels:1.0): buildcraft-A-1.6.4-4.2.2.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] API:BuildCraftAPI|transport(API: BuildCraftAPI|transport:1.0): buildcraft-A-1.6.4-4.2.2.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] API:BuildCraftAPI|recipes(API: BuildCraftAPI|recipes:1.0): buildcraft-A-1.6.4-4.2.2.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] API:BuildCraftAPI|filler(API: BuildCraftAPI|filler:2.0): buildcraft-A-1.6.4-4.2.2.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] BuildCraft|Energy(BC Energy:4.2.2): buildcraft-A-1.6.4-4.2.2.jar (required-after:BuildCraft|Core@4.2.2) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] CoFHCore(CoFH Core:2.0.0.5): CoFHCore-2.0.0.5.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] NetherOres(Nether Ores:1.6.2R2.2.2): NetherOres-2.2.2-55.jar (required-after:PowerCrystalsCore;before:ThermalExpansion) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] UniversalElectricity(Universal Electricity:3.1.0): Universal-Electricity-3.1.0.115-core.jar (before:ForgeMultipart) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] ForgeMultipart(Forge Multipart:1.0.0.219): ForgeMultipart-universal-1.6.4-1.0.0.219.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] ThermalExpansion(Thermal Expansion:3.0.0.7): ThermalExpansion-3.0.0.7.jar (required-after:Forge@[9.1.11.953,);required-after:CoFHCore@[2.0.0.5,);required-after:ForgeMultipart;before:IC2;before:Metallurgy) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] IC2(IndustrialCraft 2:2.0.397-experimental): industrialcraft-2_2.0.397-experimental[Optimized].jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Thaumcraft(Thaumcraft:4.1.0g): Thaumcraft4.1.0g.zip (required-after:Forge@[9.11.1.953,);after:BuildCraft|Core;after:BuildCraft|Energy;after:Forestry;after:IC2) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] AdvancedThaumaturgy(Advanced Thaumaturgy:0.0.28): AdvancedThaumaturgy-1.6.4-0.0.28.jar (required-after:Thaumcraft) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Aether II(Aether II:Alpha 1.6.4.1): aether.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] AnimationAPI(AnimationAPI:1.1.1): AnimationAPI v1.1.2 mc1.6.4.zip () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] arsmagica2(Ars Magica 2:1.2.0.018): AM2_1.2.0.018.jar (required-after:AnimationAPI) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] AppliedEnergistics(Applied Energistics:rv14.finale3): appeng-rv14-finale3-mc16x.jar (required-after:AppliedEnergistics-Core;required-after:Forge@[9.10.1.870,)) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] ArchimedesShipsMod(Archimedes' Ships:1.6.4 v1.4.5): archimedesships.zip () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] BiblioCraft(BiblioCraft:1.5.5): BiblioCraft[v1.5.5].zip () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Natura(Natura:2.1.14): Natura_mc1.6.X_2.1.14.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] BiomesOPlenty(Biomes O' Plenty:1.2.1): BiomesOPlenty-universal-1.6.4-1.2.1.434.jar (after:Natura; required-after:Forge@[9.11.1.952,)) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] AWWayofTime(Blood Magic: Alchemical Wizardry:v1.0.1g): Blood Magic v1.0.1g.zip () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] BuildCraft|Builders(BC Builders:4.2.2): buildcraft-A-1.6.4-4.2.2.jar (required-after:BuildCraft|Core@4.2.2) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] BuildCraft|Factory(BC Factory:4.2.2): buildcraft-A-1.6.4-4.2.2.jar (required-after:BuildCraft|Core@4.2.2) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] BuildCraft|Transport(BC Transport:4.2.2): buildcraft-A-1.6.4-4.2.2.jar (required-after:BuildCraft|Core@4.2.2) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] BuildCraft|Silicon(BC Silicon:4.2.2): buildcraft-A-1.6.4-4.2.2.jar (required-after:BuildCraft|Transport@4.2.2) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] API:OpenComputersAPI(API: OpenComputersAPI:1.4.10): Calclavia-Core-1.2.0.324-universal.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] CalclaviaCore(Calclavia:1.2.0): Calclavia-Core-1.2.0.324-universal.jar (required-after:UniversalElectricity) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] CoFHLoot(CoFH Loot:2.0.0.5): CoFHCore-2.0.0.5.jar (required-after:CoFHCore@[2.0.0.5,)) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] CoFHMasquerade(CoFH Masquerade:2.0.0.5): CoFHCore-2.0.0.5.jar (required-after:CoFHCore@[2.0.0.5,)) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] CoFHSocial(CoFH Social:2.0.0.5): CoFHCore-2.0.0.5.jar (required-after:CoFHCore@[2.0.0.5,)) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] CoFHWorld(CoFH World:2.0.0.5): CoFHCore-2.0.0.5.jar (required-after:CoFHCore@[2.0.0.5,)) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] CustomSpawner(DrZhark's CustomSpawner:3.0.0): CustomMobSpawner 3.0.0.zip () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] EnderStorage(EnderStorage:1.4.3.6): EnderStorage 1.4.3.6.jar (required-after:CodeChickenCore@[0.9.0.8,)) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Railcraft(Railcraft:8.3.2.0): Railcraft_1.6.4-8.3.2.0.jar (required-after:Forge@[9.11.1.965,);after:BuildCraft|Core[4.0.1,);after:BuildCraft|Energy;after:BuildCraft|Builders;after:BuildCraft|Factory;after:Forestry;after:Thaumcraft;after:IC2@[2.0.140,)) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] TwilightForest(The Twilight Forest:1.20.4): twilightforest-1.6.4-1.20.4.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] DartCraft(DartCraft:Beta 0.2.20): DartCraft Beta 0.2.20v2.jar (after:IC2;after:Railcraft;after:Thaumcraft;after:BuildCraft|Core;after:EnderStorage;after:factorization;after:ThermalExpansion;after:TwilightForest;after:ArsMagica;after:TC;after:mmmPowersuits;after:gregtech_addon;after:AS_MultiMine) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MoCreatures(DrZhark's Mo'Creatures Mod:6.1.0): DrZharks MoCreatures Mod v6.1.0.zip () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Tombenpotter's Electro-Magic Tools(Electro-Magic Tools:1.0.9): ElectroMagicTools-1.0.9d.jar (required-after:Thaumcraft ; required-after:IC2) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] FlansMod(Flans Mod:4.1.1): FlansMod-4.1.1.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] ThaumicTinkerer(Thaumic Tinkerer:2.3-140): ThaumicTinkerer-2.3-140.jar (required-after:Thaumcraft@[4.1.0f,];before:MagicBees;before:advthaum;after:IC2;after:ThaumicTinkererKami;after:Waila) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] ForbiddenMagic(Forbidden Magic:0.35a): ForbiddenMagic pr0.35a.jar (required-after:Thaumcraft;after:ThaumicTinkerer) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] GalacticraftCore(Galacticraft Core:2.0.2): Galacticraft-1.6.4-2.0.2.800.jar (after:ICBM|Explosion; after:IC2; after:BuildCraft|Core; after:BuildCraft|Energy; after:IC2) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] GalacticraftMars(Galacticraft Mars:2.0.2): Galacticraft-Planets-1.6.4-2.0.2.800.jar (required-after:GalacticraftCore;) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] GraviSuite(Gravitation Suite:1.9.: GraviSuite_1_9_8_MC_1_6_4_IC_EXP.zip () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] HatStand(HatStand:2.1.0): HatStand2.1.0.zip (required-after:Hats@[2.1.0,)) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] inventorytweaks(Inventory Tweaks:1.56): InventoryTweaks-MC1.6.2-1.56-b77.jar (required-after:FML@[6.2.0,);required-after:Forge@[9.10.0,)) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] IronChest(Iron Chest:5.4.1.676): ironchest-universal-1.6.4-5.4.1.676.zip (required-after:Forge@[7.0,);required-after:FML@[5.0.5,)) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] JABBA(JABBA:1.0.3): JABBA_1.0.3.zip (after:Waila) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] LogisticsPipes|Main(Logistics Pipes:${lp.version.full}): LogisticsPipes-MC1.6.4-0.7.4.dev.290.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Mekanism(Mekanism:6.0.5): Mekanism-6.0.5.46[Optimized].jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MekanismGenerators(MekanismGenerators:6.0.5): MekanismGenerators-6.0.5.46.jar (required-after:Mekanism) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MekanismTools(MekanismTools:6.0.5): MekanismTools-6.0.5.46.jar (required-after:Mekanism) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MFR Compat Forestry Trees(MFR Compat Forestry Trees:1.0): MineFactoryReloaded-2.7.9-final.jar (after:Forestry) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MFR Compat Extra Trees(MFR Compat Extra Trees:1.0): MineFactoryReloaded-2.7.9-final.jar (after:ExtraTrees) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded(MineFactory Reloaded:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (required-after:Forge@[9.11.1.953,);required-after:PowerCrystalsCore@[1.1.8,);after:BuildCraft|Core;after:BuildCraft|Factory;after:BuildCraft|Energy;after:BuildCraft|Builders;after:BuildCraft|Transport;after:IC2) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatAppliedEnergistics(MFR Compat: Applied Energistics:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (after:MineFactoryReloaded;after:AppliedEnergistics) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatAtum(MFR Compat: Atum:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (after:MineFactoryReloaded;after:Atum) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatBackTools(MFR Compat: BackTools:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (after:MineFactoryReloaded;after:mod_BackTools) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatBuildCraft(MFR Compat: BuildCraft:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (after:MineFactoryReloaded;after:BuildCraft|Core) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatChococraft(MFR Compat: Chococraft:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (required-after:MineFactoryReloaded;after:chococraft) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatExtraBiomes(MFR Compat: ExtraBiomes:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (after:MineFactoryReloaded;after:ExtrabiomesXL) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatForestry(MFR Compat: Forestry:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (after:MineFactoryReloaded;after:Forestry) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatForestryPre(MFR Compat: Forestry (part 2):1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (before:Forestry;required-after:MineFactoryReloaded) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatForgeMicroblock(MFR Compat: ForgeMicroblock:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (after:MineFactoryReloaded) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatIC2(MFR Compat: IC2:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (after:MineFactoryReloaded;after:IC2) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatMystcraft(MFR Compat: Mystcraft:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (after:MineFactoryReloaded;after:Mystcraft) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatPams(MFR Compat: Pam's Mods:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (after:MineFactoryReloaded;after:pamharvestcraft) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatProjRed(MFR Compat ProjectRed:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (after:MineFactoryReloaded;after:ProjRed|Core;after:ProjRed|Exploration) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatRailcraft(MFR Compat: Railcraft:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (after:MineFactoryReloaded;after:Railcraft) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatRP2(MFR Compat: RP2:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (after:MineFactoryReloaded;after:RedPowerWorld) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatSufficientBiomes(MFR Compat: Sufficient Biomes:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (after:MineFactoryReloaded;after:EmasherWorldGen) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatThaumcraft(MFR Compat: Thaumcraft:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (after:MineFactoryReloaded;after:Thaumcraft) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatThermalExpansion(MFR Compat: Thermal Expansion:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (after:MineFactoryReloaded;after:ThermalExpansion) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatTwilightForest(MFR Compat: TwilightForest:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (after:MineFactoryReloaded;after:TwilightForest) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatVanilla(MFR Compat: Vanilla:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (after:MineFactoryReloaded) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatXyCraft(MFR Compat: XyCraft:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (after:MineFactoryReloaded;after:XyCraftWorld) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] ResonantEngine(ResonantEngine:@MAJOR@.@MINOR@.@REVIS@): Resonant-Engine-Development-1.2.0.266-universal.jar (required-after:UniversalElectricity) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] MFFS(Modular Force Field System:3.6.3): Modular-Force-Field-System-3.6.3.91-core.jar (required-after:ResonantEngine) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] moreplayermodels(MorePlayerModels:1.6.4): MorePlayerModels_1.6.2-1.6.4.zip () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] OpenMods(OpenMods:0.2): OpenModsLib-0.2.jar (required-after:OpenModsCore) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] OpenBlocks(OpenBlocks:1.2.5): OpenBlocks-1.2.5.jar (required-after:OpenMods@[0.2,];after:OpenPeripheral) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] Redstone Arsenal(Redstone Arsenal:1.0.0.0): RedstoneArsenal-1.0.0.0.jar (required-after:Forge@[9.1.11.953,);required-after:CoFHCore@[2.0.0.0,);after:ThermalExpansion) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] TConstruct(Tinkers' Construct:1.6.X_1.5.5.7): TConstruct_mc1.6.4_1.5.5.7.jar (required-after:Forge@[8.9,);after:ForgeMultipart;after:MineFactoryReloaded;after:NotEnoughItems;after:Waila;after:ThermalExpansion) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] ThaumcraftExtras(Thaumcraft Extras:1.0.0.4): ThaumcraftExtras-1.6.4-1.0.0.4.jar (required-after:Thaumcraft) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] ThaumicExploration(Thaumic Exploration:0.5.1): Thaumic Exploration 0.5.2.jar (required-after:Thaumcraft;after:ThaumicTinkerer) 2014-08-17 22:03:41 [FINE] [ForgeModLoader] witchery(Witchery:0.19.2): witchery-1.6.4-0.19.2.zip () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] YALSM(Yet Another Leather Smelting Mod:2.0.3): Yet-Another-Leather-Smelting-Mod-1.6.4.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] McMultipart(Minecraft Multipart Plugin:1.0.0.219): ForgeMultipart-universal-1.6.4-1.0.0.219.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] API:UniversalElectricityAPI(API: UniversalElectricityAPI:3.1.0): Universal-Electricity-3.1.0.115-core.jar () 2014-08-17 22:03:41 [FINE] [ForgeModLoader] ForgeMicroblock(Forge Microblocks:1.0.0.219): ForgeMultipart-universal-1.6.4-1.0.0.219.jar (required-after:ForgeMultipart;after:*) 2014-08-17 22:03:41 [iNFO] [ForgeModLoader] FML has found a non-mod file CodeChickenLib-universal-1.6.4-1.0.0.62.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible. 2014-08-17 22:03:41 [FINEST] [mcp] Sending event FMLConstructionEvent to mod mcp 2014-08-17 22:03:41 [FINEST] [mcp] Sent event FMLConstructionEvent to mod mcp 2014-08-17 22:03:41 [FINEST] [FML] Sending event FMLConstructionEvent to mod FML 2014-08-17 22:03:41 [FINEST] [FML] Sent event FMLConstructionEvent to mod FML 2014-08-17 22:03:41 [FINEST] [Forge] Sending event FMLConstructionEvent to mod Forge 2014-08-17 22:03:41 [iNFO] [ForgeModLoader] Registering Forge Packet Handler 2014-08-17 22:03:41 [FINEST] [ForgeModLoader] Testing mod Forge to verify it accepts its own version in a remote connection 2014-08-17 22:03:41 [FINEST] [ForgeModLoader] The mod Forge accepts its own version (9.11.1.965) 2014-08-17 22:03:41 [iNFO] [ForgeModLoader] AMCore >> Altering definition of net.minecraft.network.NetServerHandler 2014-08-17 22:03:41 [FINE] [ForgeModLoader] AMCore >> Located target method a(Leu;)V 2014-08-17 22:03:41 [FINE] [ForgeModLoader] AMCore >> Success! Inserted opcodes! 2014-08-17 22:03:41 [iNFO] [ForgeModLoader] Succeeded registering Forge Packet Handler 2014-08-17 22:03:41 [FINEST] [Forge] Sent event FMLConstructionEvent to mod Forge 2014-08-17 22:03:41 [FINEST] [AM2-Preloader] Sending event FMLConstructionEvent to mod AM2-Preloader 2014-08-17 22:03:41 [FINEST] [AM2-Preloader] Sent event FMLConstructionEvent to mod AM2-Preloader 2014-08-17 22:03:41 [FINEST] [AppliedEnergistics-Core] Sending event FMLConstructionEvent to mod AppliedEnergistics-Core 2014-08-17 22:03:41 [FINEST] [AppliedEnergistics-Core] Sent event FMLConstructionEvent to mod AppliedEnergistics-Core 2014-08-17 22:03:41 [FINEST] [CodeChickenCore] Sending event FMLConstructionEvent to mod CodeChickenCore 2014-08-17 22:03:41 [FINEST] [CodeChickenCore] Sent event FMLConstructionEvent to mod CodeChickenCore 2014-08-17 22:03:41 [FINEST] [Micdoodlecore] Sending event FMLConstructionEvent to mod Micdoodlecore 2014-08-17 22:03:41 [FINEST] [Micdoodlecore] Sent event FMLConstructionEvent to mod Micdoodlecore 2014-08-17 22:03:41 [FINEST] [OpenModsCore] Sending event FMLConstructionEvent to mod OpenModsCore 2014-08-17 22:03:41 [FINEST] [OpenModsCore] Sent event FMLConstructionEvent to mod OpenModsCore 2014-08-17 22:03:41 [FINEST] [PowerCrystalsCore] Sending event FMLConstructionEvent to mod PowerCrystalsCore 2014-08-17 22:03:41 [FINEST] [PowerCrystalsCore] Sent event FMLConstructionEvent to mod PowerCrystalsCore 2014-08-17 22:03:41 [FINEST] [TConstruct-Preloader] Sending event FMLConstructionEvent to mod TConstruct-Preloader 2014-08-17 22:03:41 [FINEST] [TConstruct-Preloader] Sent event FMLConstructionEvent to mod TConstruct-Preloader 2014-08-17 22:03:41 [FINEST] [Hats] Sending event FMLConstructionEvent to mod Hats 2014-08-17 22:03:42 [FINEST] [ForgeModLoader] Testing mod Hats to verify it accepts its own version in a remote connection 2014-08-17 22:03:42 [FINEST] [ForgeModLoader] The mod Hats accepts its own version (2.1. 2014-08-17 22:03:42 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into Hats 2014-08-17 22:03:42 [FINEST] [Hats] Sent event FMLConstructionEvent to mod Hats 2014-08-17 22:03:42 [FINEST] [iChunUtil] Sending event FMLConstructionEvent to mod iChunUtil 2014-08-17 22:03:42 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into iChunUtil 2014-08-17 22:03:42 [FINEST] [iChunUtil] Sent event FMLConstructionEvent to mod iChunUtil 2014-08-17 22:03:42 [FINEST] [Morph] Sending event FMLConstructionEvent to mod Morph 2014-08-17 22:03:42 [FINEST] [ForgeModLoader] Testing mod Morph to verify it accepts its own version in a remote connection 2014-08-17 22:03:42 [FINEST] [ForgeModLoader] The mod Morph accepts its own version (0.7.2) 2014-08-17 22:03:42 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into Morph 2014-08-17 22:03:42 [FINEST] [Morph] Sent event FMLConstructionEvent to mod Morph 2014-08-17 22:03:42 [FINEST] [PortalGun] Sending event FMLConstructionEvent to mod PortalGun 2014-08-17 22:03:42 [FINEST] [ForgeModLoader] Testing mod PortalGun to verify it accepts its own version in a remote connection 2014-08-17 22:03:42 [FINEST] [ForgeModLoader] The mod PortalGun accepts its own version (2.0.2) 2014-08-17 22:03:42 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into PortalGun 2014-08-17 22:03:42 [FINEST] [PortalGun] Sent event FMLConstructionEvent to mod PortalGun 2014-08-17 22:03:42 [FINEST] [buildCraft|Core] Sending event FMLConstructionEvent to mod BuildCraft|Core 2014-08-17 22:03:42 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Core to verify it accepts its own version in a remote connection 2014-08-17 22:03:42 [FINEST] [ForgeModLoader] The mod BuildCraft|Core accepts its own version (4.2.2) 2014-08-17 22:03:42 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Core 2014-08-17 22:03:42 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/world/gen/feature/WorldGenSwamp (input size 2197), found 1 patch 2014-08-17 22:03:42 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/world/gen/feature/WorldGenSwamp (new size 3203) 2014-08-17 22:03:42 [FINEST] [buildCraft|Core] Sent event FMLConstructionEvent to mod BuildCraft|Core 2014-08-17 22:03:42 [FINEST] [buildCraft|Energy] Sending event FMLConstructionEvent to mod BuildCraft|Energy 2014-08-17 22:03:42 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Energy to verify it accepts its own version in a remote connection 2014-08-17 22:03:42 [FINEST] [ForgeModLoader] The mod BuildCraft|Energy accepts its own version (4.2.2) 2014-08-17 22:03:42 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Energy 2014-08-17 22:03:42 [FINEST] [buildCraft|Energy] Sent event FMLConstructionEvent to mod BuildCraft|Energy 2014-08-17 22:03:42 [FINEST] [CoFHCore] Sending event FMLConstructionEvent to mod CoFHCore 2014-08-17 22:03:43 [FINEST] [ForgeModLoader] Testing mod CoFHCore to verify it accepts its own version in a remote connection 2014-08-17 22:03:43 [FINEST] [ForgeModLoader] The mod CoFHCore accepts its own version (2.0.0.5) 2014-08-17 22:03:43 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into CoFHCore 2014-08-17 22:03:43 [FINEST] [CoFHCore] Sent event FMLConstructionEvent to mod CoFHCore 2014-08-17 22:03:43 [FINEST] [NetherOres] Sending event FMLConstructionEvent to mod NetherOres 2014-08-17 22:03:43 [FINEST] [ForgeModLoader] Testing mod NetherOres to verify it accepts its own version in a remote connection 2014-08-17 22:03:43 [FINEST] [ForgeModLoader] The mod NetherOres accepts its own version (1.6.2R2.2.2) 2014-08-17 22:03:43 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into NetherOres 2014-08-17 22:03:43 [FINEST] [NetherOres] Sent event FMLConstructionEvent to mod NetherOres 2014-08-17 22:03:43 [FINEST] [universalElectricity] Sending event FMLConstructionEvent to mod UniversalElectricity 2014-08-17 22:03:43 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into UniversalElectricity 2014-08-17 22:03:43 [FINEST] [universalElectricity] Sent event FMLConstructionEvent to mod UniversalElectricity 2014-08-17 22:03:43 [FINEST] [ForgeMultipart] Sending event FMLConstructionEvent to mod ForgeMultipart 2014-08-17 22:03:43 [FINEST] [ForgeModLoader] Testing mod ForgeMultipart to verify it accepts its own version in a remote connection 2014-08-17 22:03:43 [FINEST] [ForgeModLoader] The mod ForgeMultipart accepts its own version (1.0.0.219) 2014-08-17 22:03:43 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ForgeMultipart 2014-08-17 22:03:43 [FINEST] [ForgeMultipart] Sent event FMLConstructionEvent to mod ForgeMultipart 2014-08-17 22:03:43 [FINEST] [ThermalExpansion] Sending event FMLConstructionEvent to mod ThermalExpansion 2014-08-17 22:03:43 [FINEST] [ForgeModLoader] Testing mod ThermalExpansion to verify it accepts its own version in a remote connection 2014-08-17 22:03:43 [FINEST] [ForgeModLoader] The mod ThermalExpansion accepts its own version (3.0.0.7) 2014-08-17 22:03:43 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ThermalExpansion 2014-08-17 22:03:43 [FINEST] [ThermalExpansion] Sent event FMLConstructionEvent to mod ThermalExpansion 2014-08-17 22:03:43 [FINEST] [iC2] Sending event FMLConstructionEvent to mod IC2 2014-08-17 22:03:43 [FINEST] [ForgeModLoader] Testing mod IC2 to verify it accepts its own version in a remote connection 2014-08-17 22:03:43 [FINEST] [ForgeModLoader] The mod IC2 accepts its own version (2.0.397-experimental) 2014-08-17 22:03:43 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into IC2 2014-08-17 22:03:43 [iNFO] [ForgeModLoader] InvTweaks: net.minecraft.inventory.Container 2014-08-17 22:03:43 [FINEST] [iC2] Sent event FMLConstructionEvent to mod IC2 2014-08-17 22:03:43 [FINEST] [Thaumcraft] Sending event FMLConstructionEvent to mod Thaumcraft 2014-08-17 22:03:43 [FINEST] [ForgeModLoader] Testing mod Thaumcraft to verify it accepts its own version in a remote connection 2014-08-17 22:03:43 [FINEST] [ForgeModLoader] The mod Thaumcraft accepts its own version (4.1.0g) 2014-08-17 22:03:43 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into Thaumcraft 2014-08-17 22:03:44 [FINEST] [Thaumcraft] Sent event FMLConstructionEvent to mod Thaumcraft 2014-08-17 22:03:44 [FINEST] [AdvancedThaumaturgy] Sending event FMLConstructionEvent to mod AdvancedThaumaturgy 2014-08-17 22:03:44 [FINEST] [ForgeModLoader] Testing mod AdvancedThaumaturgy to verify it accepts its own version in a remote connection 2014-08-17 22:03:44 [FINEST] [ForgeModLoader] The mod AdvancedThaumaturgy accepts its own version (0.0.28) 2014-08-17 22:03:44 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into AdvancedThaumaturgy 2014-08-17 22:03:44 [FINEST] [AdvancedThaumaturgy] Sent event FMLConstructionEvent to mod AdvancedThaumaturgy 2014-08-17 22:03:44 [FINEST] [Aether II] Sending event FMLConstructionEvent to mod Aether II 2014-08-17 22:03:44 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/world/gen/feature/WorldGenTaiga1 (input size 1541), found 1 patch 2014-08-17 22:03:44 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/world/gen/feature/WorldGenTaiga1 (new size 2502) 2014-08-17 22:03:44 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.passive.EntityMooshroom (input size 1666), found 1 patch 2014-08-17 22:03:44 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.passive.EntityMooshroom (new size 2516) 2014-08-17 22:03:44 [FINEST] [ForgeModLoader] Testing mod Aether II to verify it accepts its own version in a remote connection 2014-08-17 22:03:44 [FINEST] [ForgeModLoader] The mod Aether II accepts its own version (Alpha 1.6.4.1) 2014-08-17 22:03:44 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into Aether II 2014-08-17 22:03:44 [FINEST] [Aether II] Sent event FMLConstructionEvent to mod Aether II 2014-08-17 22:03:44 [FINEST] [AnimationAPI] Sending event FMLConstructionEvent to mod AnimationAPI 2014-08-17 22:03:44 [FINEST] [ForgeModLoader] Testing mod AnimationAPI to verify it accepts its own version in a remote connection 2014-08-17 22:03:44 [FINEST] [ForgeModLoader] The mod AnimationAPI accepts its own version (1.1.1) 2014-08-17 22:03:44 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into AnimationAPI 2014-08-17 22:03:44 [FINEST] [AnimationAPI] Sent event FMLConstructionEvent to mod AnimationAPI 2014-08-17 22:03:44 [FINEST] [arsmagica2] Sending event FMLConstructionEvent to mod arsmagica2 2014-08-17 22:03:44 [FINEST] [ForgeModLoader] Testing mod arsmagica2 to verify it accepts its own version in a remote connection 2014-08-17 22:03:44 [FINEST] [ForgeModLoader] The mod arsmagica2 accepts its own version (1.2.0.018) 2014-08-17 22:03:44 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into arsmagica2 2014-08-17 22:03:44 [FINEST] [arsmagica2] Sent event FMLConstructionEvent to mod arsmagica2 2014-08-17 22:03:44 [FINEST] [AppliedEnergistics] Sending event FMLConstructionEvent to mod AppliedEnergistics 2014-08-17 22:03:44 [FINEST] [ForgeModLoader] Testing mod AppliedEnergistics to verify it accepts its own version in a remote connection 2014-08-17 22:03:44 [FINEST] [ForgeModLoader] The mod AppliedEnergistics accepts its own version (rv14.finale3) 2014-08-17 22:03:44 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into AppliedEnergistics 2014-08-17 22:03:44 [FINEST] [AppliedEnergistics] Sent event FMLConstructionEvent to mod AppliedEnergistics 2014-08-17 22:03:44 [FINEST] [ArchimedesShipsMod] Sending event FMLConstructionEvent to mod ArchimedesShipsMod 2014-08-17 22:03:44 [FINEST] [ForgeModLoader] Testing mod ArchimedesShipsMod to verify it accepts its own version in a remote connection 2014-08-17 22:03:44 [FINEST] [ForgeModLoader] The mod ArchimedesShipsMod accepts its own version (1.6.4 v1.4.5) 2014-08-17 22:03:44 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ArchimedesShipsMod 2014-08-17 22:03:44 [FINEST] [ArchimedesShipsMod] Sent event FMLConstructionEvent to mod ArchimedesShipsMod 2014-08-17 22:03:44 [FINEST] [biblioCraft] Sending event FMLConstructionEvent to mod BiblioCraft 2014-08-17 22:03:44 [FINEST] [ForgeModLoader] Testing mod BiblioCraft to verify it accepts its own version in a remote connection 2014-08-17 22:03:44 [FINEST] [ForgeModLoader] The mod BiblioCraft accepts its own version (1.5.5) 2014-08-17 22:03:44 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BiblioCraft 2014-08-17 22:03:44 [FINEST] [biblioCraft] Sent event FMLConstructionEvent to mod BiblioCraft 2014-08-17 22:03:44 [FINEST] [Natura] Sending event FMLConstructionEvent to mod Natura 2014-08-17 22:03:44 [FINEST] [ForgeModLoader] Testing mod Natura to verify it accepts its own version in a remote connection 2014-08-17 22:03:44 [FINEST] [ForgeModLoader] The mod Natura accepts its own version (2.1.14) 2014-08-17 22:03:44 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into Natura 2014-08-17 22:03:44 [FINEST] [Natura] Sent event FMLConstructionEvent to mod Natura 2014-08-17 22:03:44 [FINEST] [biomesOPlenty] Sending event FMLConstructionEvent to mod BiomesOPlenty 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] Testing mod BiomesOPlenty to verify it accepts its own version in a remote connection 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] The mod BiomesOPlenty accepts its own version (1.2.1) 2014-08-17 22:03:45 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BiomesOPlenty 2014-08-17 22:03:45 [FINEST] [biomesOPlenty] Sent event FMLConstructionEvent to mod BiomesOPlenty 2014-08-17 22:03:45 [FINEST] [AWWayofTime] Sending event FMLConstructionEvent to mod AWWayofTime 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] Testing mod AWWayofTime to verify it accepts its own version in a remote connection 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] The mod AWWayofTime accepts its own version (v1.0.1g) 2014-08-17 22:03:45 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into AWWayofTime 2014-08-17 22:03:45 [FINEST] [AWWayofTime] Sent event FMLConstructionEvent to mod AWWayofTime 2014-08-17 22:03:45 [FINEST] [buildCraft|Builders] Sending event FMLConstructionEvent to mod BuildCraft|Builders 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Builders to verify it accepts its own version in a remote connection 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] The mod BuildCraft|Builders accepts its own version (4.2.2) 2014-08-17 22:03:45 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Builders 2014-08-17 22:03:45 [FINEST] [buildCraft|Builders] Sent event FMLConstructionEvent to mod BuildCraft|Builders 2014-08-17 22:03:45 [FINEST] [buildCraft|Factory] Sending event FMLConstructionEvent to mod BuildCraft|Factory 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Factory to verify it accepts its own version in a remote connection 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] The mod BuildCraft|Factory accepts its own version (4.2.2) 2014-08-17 22:03:45 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Factory 2014-08-17 22:03:45 [FINEST] [buildCraft|Factory] Sent event FMLConstructionEvent to mod BuildCraft|Factory 2014-08-17 22:03:45 [FINEST] [buildCraft|Transport] Sending event FMLConstructionEvent to mod BuildCraft|Transport 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Transport to verify it accepts its own version in a remote connection 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] The mod BuildCraft|Transport accepts its own version (4.2.2) 2014-08-17 22:03:45 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Transport 2014-08-17 22:03:45 [FINEST] [buildCraft|Transport] Sent event FMLConstructionEvent to mod BuildCraft|Transport 2014-08-17 22:03:45 [FINEST] [buildCraft|Silicon] Sending event FMLConstructionEvent to mod BuildCraft|Silicon 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Silicon to verify it accepts its own version in a remote connection 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] The mod BuildCraft|Silicon accepts its own version (4.2.2) 2014-08-17 22:03:45 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Silicon 2014-08-17 22:03:45 [FINEST] [buildCraft|Silicon] Sent event FMLConstructionEvent to mod BuildCraft|Silicon 2014-08-17 22:03:45 [FINEST] [CalclaviaCore] Sending event FMLConstructionEvent to mod CalclaviaCore 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] Testing mod CalclaviaCore to verify it accepts its own version in a remote connection 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] The mod CalclaviaCore accepts its own version (1.2.0) 2014-08-17 22:03:45 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into CalclaviaCore 2014-08-17 22:03:45 [FINEST] [CalclaviaCore] Sent event FMLConstructionEvent to mod CalclaviaCore 2014-08-17 22:03:45 [FINEST] [CoFHLoot] Sending event FMLConstructionEvent to mod CoFHLoot 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] Testing mod CoFHLoot to verify it accepts its own version in a remote connection 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] The mod CoFHLoot accepts its own version (2.0.0.5) 2014-08-17 22:03:45 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into CoFHLoot 2014-08-17 22:03:45 [FINEST] [CoFHLoot] Sent event FMLConstructionEvent to mod CoFHLoot 2014-08-17 22:03:45 [FINEST] [CoFHMasquerade] Sending event FMLConstructionEvent to mod CoFHMasquerade 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] Testing mod CoFHMasquerade to verify it accepts its own version in a remote connection 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] The mod CoFHMasquerade accepts its own version (2.0.0.5) 2014-08-17 22:03:45 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into CoFHMasquerade 2014-08-17 22:03:45 [FINEST] [CoFHMasquerade] Sent event FMLConstructionEvent to mod CoFHMasquerade 2014-08-17 22:03:45 [FINEST] [CoFHSocial] Sending event FMLConstructionEvent to mod CoFHSocial 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] Testing mod CoFHSocial to verify it accepts its own version in a remote connection 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] The mod CoFHSocial accepts its own version (2.0.0.5) 2014-08-17 22:03:45 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into CoFHSocial 2014-08-17 22:03:45 [FINEST] [CoFHSocial] Sent event FMLConstructionEvent to mod CoFHSocial 2014-08-17 22:03:45 [FINEST] [CoFHWorld] Sending event FMLConstructionEvent to mod CoFHWorld 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] Testing mod CoFHWorld to verify it accepts its own version in a remote connection 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] The mod CoFHWorld accepts its own version (2.0.0.5) 2014-08-17 22:03:45 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into CoFHWorld 2014-08-17 22:03:45 [FINEST] [CoFHWorld] Sent event FMLConstructionEvent to mod CoFHWorld 2014-08-17 22:03:45 [FINEST] [CustomSpawner] Sending event FMLConstructionEvent to mod CustomSpawner 2014-08-17 22:03:45 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into CustomSpawner 2014-08-17 22:03:45 [FINEST] [CustomSpawner] Sent event FMLConstructionEvent to mod CustomSpawner 2014-08-17 22:03:45 [FINEST] [EnderStorage] Sending event FMLConstructionEvent to mod EnderStorage 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] Testing mod EnderStorage to verify it accepts its own version in a remote connection 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] The mod EnderStorage accepts its own version (1.4.3.6) 2014-08-17 22:03:45 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into EnderStorage 2014-08-17 22:03:45 [FINEST] [EnderStorage] Sent event FMLConstructionEvent to mod EnderStorage 2014-08-17 22:03:45 [FINEST] [Railcraft] Sending event FMLConstructionEvent to mod Railcraft 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] Testing mod Railcraft to verify it accepts its own version in a remote connection 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] The mod Railcraft accepts its own version (8.3.2.0) 2014-08-17 22:03:45 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into Railcraft 2014-08-17 22:03:45 [FINEST] [Railcraft] Sent event FMLConstructionEvent to mod Railcraft 2014-08-17 22:03:45 [FINEST] [TwilightForest] Sending event FMLConstructionEvent to mod TwilightForest 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] Testing mod TwilightForest to verify it accepts its own version in a remote connection 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] The mod TwilightForest accepts its own version (1.20.4) 2014-08-17 22:03:45 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into TwilightForest 2014-08-17 22:03:45 [FINEST] [TwilightForest] Sent event FMLConstructionEvent to mod TwilightForest 2014-08-17 22:03:45 [FINEST] [DartCraft] Sending event FMLConstructionEvent to mod DartCraft 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] Testing mod DartCraft to verify it accepts its own version in a remote connection 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] The mod DartCraft accepts its own version (Beta 0.2.20) 2014-08-17 22:03:45 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into DartCraft 2014-08-17 22:03:45 [FINEST] [DartCraft] Sent event FMLConstructionEvent to mod DartCraft 2014-08-17 22:03:45 [FINEST] [MoCreatures] Sending event FMLConstructionEvent to mod MoCreatures 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] Testing mod MoCreatures to verify it accepts its own version in a remote connection 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] The mod MoCreatures accepts its own version (6.1.0) 2014-08-17 22:03:45 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MoCreatures 2014-08-17 22:03:45 [FINEST] [MoCreatures] Sent event FMLConstructionEvent to mod MoCreatures 2014-08-17 22:03:45 [FINEST] [Tombenpotter's Electro-Magic Tools] Sending event FMLConstructionEvent to mod Tombenpotter's Electro-Magic Tools 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] Testing mod Tombenpotter's Electro-Magic Tools to verify it accepts its own version in a remote connection 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] The mod Tombenpotter's Electro-Magic Tools accepts its own version (1.0.9) 2014-08-17 22:03:45 [WARNING] [ForgeModLoader] The mod id Tombenpotter's Electro-Magic Tools attempted to register channels without specifying a packet handler 2014-08-17 22:03:45 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into Tombenpotter's Electro-Magic Tools 2014-08-17 22:03:45 [FINEST] [Tombenpotter's Electro-Magic Tools] Sent event FMLConstructionEvent to mod Tombenpotter's Electro-Magic Tools 2014-08-17 22:03:45 [FINEST] [FlansMod] Sending event FMLConstructionEvent to mod FlansMod 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] Testing mod FlansMod to verify it accepts its own version in a remote connection 2014-08-17 22:03:45 [FINEST] [ForgeModLoader] The mod FlansMod accepts its own version (4.1.1) 2014-08-17 22:03:45 [WARNING] [ForgeModLoader] The mod id FlansMod attempted to register channels without specifying a packet handler 2014-08-17 22:03:45 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into FlansMod 2014-08-17 22:03:46 [FINEST] [FlansMod] Sent event FMLConstructionEvent to mod FlansMod 2014-08-17 22:03:46 [FINEST] [ThaumicTinkerer] Sending event FMLConstructionEvent to mod ThaumicTinkerer 2014-08-17 22:03:46 [FINEST] [ForgeModLoader] Testing mod ThaumicTinkerer to verify it accepts its own version in a remote connection 2014-08-17 22:03:46 [FINEST] [ForgeModLoader] The mod ThaumicTinkerer accepts its own version (2.3-140) 2014-08-17 22:03:46 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ThaumicTinkerer 2014-08-17 22:03:46 [FINEST] [ThaumicTinkerer] Sent event FMLConstructionEvent to mod ThaumicTinkerer 2014-08-17 22:03:46 [FINEST] [ForbiddenMagic] Sending event FMLConstructionEvent to mod ForbiddenMagic 2014-08-17 22:03:46 [FINEST] [ForgeModLoader] Testing mod ForbiddenMagic to verify it accepts its own version in a remote connection 2014-08-17 22:03:46 [FINEST] [ForgeModLoader] The mod ForbiddenMagic accepts its own version (0.35a) 2014-08-17 22:03:46 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ForbiddenMagic 2014-08-17 22:03:46 [FINEST] [ForbiddenMagic] Sent event FMLConstructionEvent to mod ForbiddenMagic 2014-08-17 22:03:46 [FINEST] [GalacticraftCore] Sending event FMLConstructionEvent to mod GalacticraftCore 2014-08-17 22:03:46 [FINEST] [ForgeModLoader] Testing mod GalacticraftCore to verify it accepts its own version in a remote connection 2014-08-17 22:03:46 [FINEST] [ForgeModLoader] The mod GalacticraftCore accepts its own version (2.0.2) 2014-08-17 22:03:46 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into GalacticraftCore 2014-08-17 22:03:46 [FINEST] [GalacticraftCore] Sent event FMLConstructionEvent to mod GalacticraftCore 2014-08-17 22:03:46 [FINEST] [GalacticraftMars] Sending event FMLConstructionEvent to mod GalacticraftMars 2014-08-17 22:03:46 [FINEST] [ForgeModLoader] Testing mod GalacticraftMars to verify it accepts its own version in a remote connection 2014-08-17 22:03:46 [FINEST] [ForgeModLoader] The mod GalacticraftMars accepts its own version (2.0.2) 2014-08-17 22:03:46 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into GalacticraftMars 2014-08-17 22:03:46 [FINEST] [GalacticraftMars] Sent event FMLConstructionEvent to mod GalacticraftMars 2014-08-17 22:03:46 [FINEST] [GraviSuite] Sending event FMLConstructionEvent to mod GraviSuite 2014-08-17 22:03:46 [FINEST] [ForgeModLoader] Testing mod GraviSuite to verify it accepts its own version in a remote connection 2014-08-17 22:03:46 [FINEST] [ForgeModLoader] The mod GraviSuite accepts its own version (1.9. 2014-08-17 22:03:46 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into GraviSuite 2014-08-17 22:03:46 [FINEST] [GraviSuite] Sent event FMLConstructionEvent to mod GraviSuite 2014-08-17 22:03:46 [FINEST] [HatStand] Sending event FMLConstructionEvent to mod HatStand 2014-08-17 22:03:46 [FINEST] [ForgeModLoader] Testing mod HatStand to verify it accepts its own version in a remote connection 2014-08-17 22:03:46 [FINEST] [ForgeModLoader] The mod HatStand accepts its own version (2.1.0) 2014-08-17 22:03:46 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into HatStand 2014-08-17 22:03:46 [FINEST] [HatStand] Sent event FMLConstructionEvent to mod HatStand 2014-08-17 22:03:46 [FINEST] [inventorytweaks] Sending event FMLConstructionEvent to mod inventorytweaks 2014-08-17 22:03:46 [FINEST] [ForgeModLoader] Testing mod inventorytweaks to verify it accepts its own version in a remote connection 2014-08-17 22:03:46 [FINEST] [ForgeModLoader] The mod inventorytweaks accepts its own version (1.56) 2014-08-17 22:03:46 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into inventorytweaks 2014-08-17 22:03:46 [FINEST] [inventorytweaks] Sent event FMLConstructionEvent to mod inventorytweaks 2014-08-17 22:03:46 [FINEST] [ironChest] Sending event FMLConstructionEvent to mod IronChest 2014-08-17 22:03:46 [FINEST] [ForgeModLoader] Testing mod IronChest to verify it accepts its own version in a remote connection 2014-08-17 22:03:46 [FINEST] [ForgeModLoader] The mod IronChest accepts its own version (5.4.1.676) 2014-08-17 22:03:46 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into IronChest 2014-08-17 22:03:46 [FINEST] [ironChest] Sent event FMLConstructionEvent to mod IronChest 2014-08-17 22:03:46 [FINEST] [JABBA] Sending event FMLConstructionEvent to mod JABBA 2014-08-17 22:03:46 [FINEST] [ForgeModLoader] Testing mod JABBA to verify it accepts its own version in a remote connection 2014-08-17 22:03:46 [FINEST] [ForgeModLoader] The mod JABBA accepts its own version (1.0.3) 2014-08-17 22:03:46 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into JABBA 2014-08-17 22:03:46 [FINEST] [JABBA] Sent event FMLConstructionEvent to mod JABBA 2014-08-17 22:03:46 [FINEST] [LogisticsPipes|Main] Sending event FMLConstructionEvent to mod LogisticsPipes|Main 2014-08-17 22:03:49 [FINEST] [ForgeModLoader] Testing mod LogisticsPipes|Main to verify it accepts its own version in a remote connection 2014-08-17 22:03:49 [FINEST] [ForgeModLoader] The mod LogisticsPipes|Main accepts its own version (${lp.version.full}) 2014-08-17 22:03:49 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into LogisticsPipes|Main 2014-08-17 22:03:49 [FINEST] [LogisticsPipes|Main] Sent event FMLConstructionEvent to mod LogisticsPipes|Main 2014-08-17 22:03:49 [FINEST] [Mekanism] Sending event FMLConstructionEvent to mod Mekanism 2014-08-17 22:03:49 [FINEST] [ForgeModLoader] Testing mod Mekanism to verify it accepts its own version in a remote connection 2014-08-17 22:03:49 [FINEST] [ForgeModLoader] The mod Mekanism accepts its own version (6.0.5) 2014-08-17 22:03:49 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into Mekanism 2014-08-17 22:03:49 [iNFO] [ForgeModLoader] InvTweaks: net.minecraft.inventory.ContainerWorkbench 2014-08-17 22:03:49 [iNFO] [ForgeModLoader] InvTweaks: net.minecraft.inventory.ContainerRepair 2014-08-17 22:03:49 [FINEST] [Mekanism] Sent event FMLConstructionEvent to mod Mekanism 2014-08-17 22:03:49 [FINEST] [MekanismGenerators] Sending event FMLConstructionEvent to mod MekanismGenerators 2014-08-17 22:03:49 [FINEST] [ForgeModLoader] Testing mod MekanismGenerators to verify it accepts its own version in a remote connection 2014-08-17 22:03:49 [FINEST] [ForgeModLoader] The mod MekanismGenerators accepts its own version (6.0.5) 2014-08-17 22:03:49 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MekanismGenerators 2014-08-17 22:03:49 [FINEST] [MekanismGenerators] Sent event FMLConstructionEvent to mod MekanismGenerators 2014-08-17 22:03:49 [FINEST] [MekanismTools] Sending event FMLConstructionEvent to mod MekanismTools 2014-08-17 22:03:49 [FINEST] [ForgeModLoader] Testing mod MekanismTools to verify it accepts its own version in a remote connection 2014-08-17 22:03:49 [FINEST] [ForgeModLoader] The mod MekanismTools accepts its own version (6.0.5) 2014-08-17 22:03:49 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MekanismTools 2014-08-17 22:03:49 [FINEST] [MekanismTools] Sent event FMLConstructionEvent to mod MekanismTools 2014-08-17 22:03:49 [FINEST] [MFR Compat Forestry Trees] Sending event FMLConstructionEvent to mod MFR Compat Forestry Trees 2014-08-17 22:03:49 [FINEST] [ForgeModLoader] Testing mod MFR Compat Forestry Trees to verify it accepts its own version in a remote connection 2014-08-17 22:03:49 [FINEST] [ForgeModLoader] The mod MFR Compat Forestry Trees accepts its own version (1.0) 2014-08-17 22:03:49 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MFR Compat Forestry Trees 2014-08-17 22:03:49 [FINEST] [MFR Compat Forestry Trees] Sent event FMLConstructionEvent to mod MFR Compat Forestry Trees 2014-08-17 22:03:49 [FINEST] [MFR Compat Extra Trees] Sending event FMLConstructionEvent to mod MFR Compat Extra Trees 2014-08-17 22:03:49 [FINEST] [ForgeModLoader] Testing mod MFR Compat Extra Trees to verify it accepts its own version in a remote connection 2014-08-17 22:03:49 [FINEST] [ForgeModLoader] The mod MFR Compat Extra Trees accepts its own version (1.0) 2014-08-17 22:03:49 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MFR Compat Extra Trees 2014-08-17 22:03:49 [FINEST] [MFR Compat Extra Trees] Sent event FMLConstructionEvent to mod MFR Compat Extra Trees 2014-08-17 22:03:49 [FINEST] [MineFactoryReloaded] Sending event FMLConstructionEvent to mod MineFactoryReloaded 2014-08-17 22:03:49 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded to verify it accepts its own version in a remote connection 2014-08-17 22:03:49 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:49 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded 2014-08-17 22:03:49 [FINEST] [MineFactoryReloaded] Sent event FMLConstructionEvent to mod MineFactoryReloaded 2014-08-17 22:03:49 [FINEST] [MineFactoryReloaded|CompatAppliedEnergistics] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatAppliedEnergistics 2014-08-17 22:03:49 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatAppliedEnergistics to verify it accepts its own version in a remote connection 2014-08-17 22:03:49 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatAppliedEnergistics accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:49 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatAppliedEnergistics 2014-08-17 22:03:49 [FINEST] [MineFactoryReloaded|CompatAppliedEnergistics] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatAppliedEnergistics 2014-08-17 22:03:49 [FINEST] [MineFactoryReloaded|CompatAtum] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatAtum 2014-08-17 22:03:49 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatAtum to verify it accepts its own version in a remote connection 2014-08-17 22:03:49 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatAtum accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:49 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatAtum 2014-08-17 22:03:49 [FINEST] [MineFactoryReloaded|CompatAtum] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatAtum 2014-08-17 22:03:49 [FINEST] [MineFactoryReloaded|CompatBackTools] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatBackTools 2014-08-17 22:03:49 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatBackTools to verify it accepts its own version in a remote connection 2014-08-17 22:03:49 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatBackTools accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:49 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatBackTools 2014-08-17 22:03:49 [FINEST] [MineFactoryReloaded|CompatBackTools] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatBackTools 2014-08-17 22:03:49 [FINEST] [MineFactoryReloaded|CompatBuildCraft] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatBuildCraft 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatBuildCraft to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatBuildCraft accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatBuildCraft 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatBuildCraft] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatBuildCraft 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatChococraft] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatChococraft 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatChococraft to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatChococraft accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatChococraft 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatChococraft] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatChococraft 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatExtraBiomes] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatExtraBiomes 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatExtraBiomes to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatExtraBiomes accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatExtraBiomes 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatExtraBiomes] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatExtraBiomes 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatForestry] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatForestry 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatForestry to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatForestry accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatForestry 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatForestry] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatForestry 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatForestryPre] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatForestryPre 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatForestryPre to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatForestryPre accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatForestryPre 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatForestryPre] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatForestryPre 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatForgeMicroblock] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatForgeMicroblock 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatForgeMicroblock to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatForgeMicroblock accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatForgeMicroblock 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatForgeMicroblock] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatForgeMicroblock 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatIC2] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatIC2 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatIC2 to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatIC2 accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatIC2 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatIC2] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatIC2 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatMystcraft] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatMystcraft 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatMystcraft to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatMystcraft accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatMystcraft 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatMystcraft] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatMystcraft 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatPams] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatPams 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatPams to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatPams accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatPams 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatPams] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatPams 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatProjRed] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatProjRed 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatProjRed to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatProjRed accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatProjRed 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatProjRed] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatProjRed 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatRailcraft] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatRailcraft 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatRailcraft to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatRailcraft accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatRailcraft 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatRailcraft] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatRailcraft 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatRP2] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatRP2 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatRP2 to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatRP2 accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatRP2 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatRP2] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatRP2 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatSufficientBiomes] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatSufficientBiomes 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatSufficientBiomes to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatSufficientBiomes accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatSufficientBiomes 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatSufficientBiomes] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatSufficientBiomes 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatThaumcraft] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatThaumcraft 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatThaumcraft to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatThaumcraft accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatThaumcraft 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatThaumcraft] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatThaumcraft 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatThermalExpansion] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatThermalExpansion 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatThermalExpansion to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatThermalExpansion accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatThermalExpansion 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatThermalExpansion] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatThermalExpansion 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatTwilightForest] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatTwilightForest 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatTwilightForest to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatTwilightForest accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatTwilightForest 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatTwilightForest] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatTwilightForest 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatVanilla] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatVanilla 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatVanilla to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatVanilla accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatVanilla 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatVanilla] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatVanilla 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatXyCraft] Sending event FMLConstructionEvent to mod MineFactoryReloaded|CompatXyCraft 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod MineFactoryReloaded|CompatXyCraft to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod MineFactoryReloaded|CompatXyCraft accepts its own version (1.6.4R2.7.9) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MineFactoryReloaded|CompatXyCraft 2014-08-17 22:03:50 [FINEST] [MineFactoryReloaded|CompatXyCraft] Sent event FMLConstructionEvent to mod MineFactoryReloaded|CompatXyCraft 2014-08-17 22:03:50 [FINEST] [ResonantEngine] Sending event FMLConstructionEvent to mod ResonantEngine 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod ResonantEngine to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod ResonantEngine accepts its own version (@MAJOR@.@MINOR@.@REVIS@) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ResonantEngine 2014-08-17 22:03:50 [FINEST] [ResonantEngine] Sent event FMLConstructionEvent to mod ResonantEngine 2014-08-17 22:03:50 [FINEST] [MFFS] Sending event FMLConstructionEvent to mod MFFS 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod MFFS to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod MFFS accepts its own version (3.6.3) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MFFS 2014-08-17 22:03:50 [FINEST] [MFFS] Sent event FMLConstructionEvent to mod MFFS 2014-08-17 22:03:50 [FINEST] [moreplayermodels] Sending event FMLConstructionEvent to mod moreplayermodels 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod moreplayermodels to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod moreplayermodels accepts its own version (1.6.4) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into moreplayermodels 2014-08-17 22:03:50 [FINEST] [moreplayermodels] Sent event FMLConstructionEvent to mod moreplayermodels 2014-08-17 22:03:50 [FINEST] [OpenMods] Sending event FMLConstructionEvent to mod OpenMods 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod OpenMods to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod OpenMods accepts its own version (0.2) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into OpenMods 2014-08-17 22:03:50 [FINEST] [OpenMods] Sent event FMLConstructionEvent to mod OpenMods 2014-08-17 22:03:50 [FINEST] [OpenBlocks] Sending event FMLConstructionEvent to mod OpenBlocks 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod OpenBlocks to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod OpenBlocks accepts its own version (1.2.5) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into OpenBlocks 2014-08-17 22:03:50 [FINEST] [OpenBlocks] Sent event FMLConstructionEvent to mod OpenBlocks 2014-08-17 22:03:50 [FINEST] [Redstone Arsenal] Sending event FMLConstructionEvent to mod Redstone Arsenal 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod Redstone Arsenal to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod Redstone Arsenal accepts its own version (1.0.0.0) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into Redstone Arsenal 2014-08-17 22:03:50 [FINEST] [Redstone Arsenal] Sent event FMLConstructionEvent to mod Redstone Arsenal 2014-08-17 22:03:50 [FINEST] [TConstruct] Sending event FMLConstructionEvent to mod TConstruct 2014-08-17 22:03:50 [iNFO] [TConstruct] [TConstruct] Natura, what are we going to do tomorrow night? 2014-08-17 22:03:50 [iNFO] [TConstruct] [Natura] TConstruct, we're going to take over the world! 2014-08-17 22:03:50 [iNFO] [TConstruct] Registering compat plugin for ForgeMultipart 2014-08-17 22:03:50 [iNFO] [TConstruct] Registering compat plugin for MineFactoryReloaded 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod TConstruct to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod TConstruct accepts its own version (1.6.X_1.5.5.7) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into TConstruct 2014-08-17 22:03:50 [FINEST] [TConstruct] Sent event FMLConstructionEvent to mod TConstruct 2014-08-17 22:03:50 [FINEST] [ThaumcraftExtras] Sending event FMLConstructionEvent to mod ThaumcraftExtras 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod ThaumcraftExtras to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod ThaumcraftExtras accepts its own version (1.0.0.4) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ThaumcraftExtras 2014-08-17 22:03:50 [FINEST] [ThaumcraftExtras] Sent event FMLConstructionEvent to mod ThaumcraftExtras 2014-08-17 22:03:50 [FINEST] [ThaumicExploration] Sending event FMLConstructionEvent to mod ThaumicExploration 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] Testing mod ThaumicExploration to verify it accepts its own version in a remote connection 2014-08-17 22:03:50 [FINEST] [ForgeModLoader] The mod ThaumicExploration accepts its own version (0.5.1) 2014-08-17 22:03:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ThaumicExploration 2014-08-17 22:03:50 [FINEST] [ThaumicExploration] Sent event FMLConstructionEvent to mod ThaumicExploration 2014-08-17 22:03:50 [FINEST] [witchery] Sending event FMLConstructionEvent to mod witchery 2014-08-17 22:03:51 [FINEST] [ForgeModLoader] Testing mod witchery to verify it accepts its own version in a remote connection 2014-08-17 22:03:51 [FINEST] [ForgeModLoader] The mod witchery accepts its own version (0.19.2) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into witchery 2014-08-17 22:03:51 [FINEST] [witchery] Sent event FMLConstructionEvent to mod witchery 2014-08-17 22:03:51 [FINEST] [YALSM] Sending event FMLConstructionEvent to mod YALSM 2014-08-17 22:03:51 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into YALSM 2014-08-17 22:03:51 [FINEST] [YALSM] Sent event FMLConstructionEvent to mod YALSM 2014-08-17 22:03:51 [FINEST] [McMultipart] Sending event FMLConstructionEvent to mod McMultipart 2014-08-17 22:03:51 [FINEST] [ForgeModLoader] Testing mod McMultipart to verify it accepts its own version in a remote connection 2014-08-17 22:03:51 [FINEST] [ForgeModLoader] The mod McMultipart accepts its own version (1.0.0.219) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into McMultipart 2014-08-17 22:03:51 [FINEST] [McMultipart] Sent event FMLConstructionEvent to mod McMultipart 2014-08-17 22:03:51 [FINEST] [ForgeMicroblock] Sending event FMLConstructionEvent to mod ForgeMicroblock 2014-08-17 22:03:51 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ForgeMicroblock 2014-08-17 22:03:51 [FINEST] [ForgeMicroblock] Sent event FMLConstructionEvent to mod ForgeMicroblock 2014-08-17 22:03:51 [FINE] [ForgeModLoader] Mod signature data 2014-08-17 22:03:51 [FINE] [ForgeModLoader] mcp(Minecraft Coder Pack:8.09): minecraft.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] FML(Forge Mod Loader:6.4.49.965): Server_TheLastCraft.jar (e3c3d50c7c986df74c645c0ac54639741c90a557) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] Forge(Minecraft Forge:9.11.1.965): Server_TheLastCraft.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] AM2-Preloader(AMCore:0.0.1): minecraft.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] AppliedEnergistics-Core(AppliedEnergistics Core:rv14.finale3): minecraft.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] CodeChickenCore(CodeChicken Core:0.9.0.9): minecraft.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] Micdoodlecore(Micdoodle8 Core:): minecraft.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] OpenModsCore(OpenModsCore:0.2): minecraft.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] PowerCrystalsCore(PowerCrystals Core:1.1.: PowerCrystalsCore-1.1.8-9.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] TConstruct-Preloader(Tinkers Corestruct:0.0.1): minecraft.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] Hats(Hats:2.1.: [1.6.4] Hats2.1.8.zip (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] iChunUtil(iChunUtil:2.4.0): [1.6.4] iChunUtil2.4.0.zip (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] Morph(Morph:0.7.2): [1.6.4] Morph-Beta-0.7.2.zip (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] PortalGun(PortalGun:2.0.2): [1.6.4] PortalGun2.0.2.zip (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] BuildCraft|Core(BuildCraft:4.2.2): buildcraft-A-1.6.4-4.2.2.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] BuildCraft|Energy(BC Energy:4.2.2): buildcraft-A-1.6.4-4.2.2.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] CoFHCore(CoFH Core:2.0.0.5): CoFHCore-2.0.0.5.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] NetherOres(Nether Ores:1.6.2R2.2.2): NetherOres-2.2.2-55.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] UniversalElectricity(Universal Electricity:3.1.0): Universal-Electricity-3.1.0.115-core.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] ForgeMultipart(Forge Multipart:1.0.0.219): ForgeMultipart-universal-1.6.4-1.0.0.219.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] ThermalExpansion(Thermal Expansion:3.0.0.7): ThermalExpansion-3.0.0.7.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] IC2(IndustrialCraft 2:2.0.397-experimental): industrialcraft-2_2.0.397-experimental[Optimized].jar (de041f9f6187debbc77034a344134053277aa3b0) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] Thaumcraft(Thaumcraft:4.1.0g): Thaumcraft4.1.0g.zip (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] AdvancedThaumaturgy(Advanced Thaumaturgy:0.0.28): AdvancedThaumaturgy-1.6.4-0.0.28.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] Aether II(Aether II:Alpha 1.6.4.1): aether.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] AnimationAPI(AnimationAPI:1.1.1): AnimationAPI v1.1.2 mc1.6.4.zip (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] arsmagica2(Ars Magica 2:1.2.0.018): AM2_1.2.0.018.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] AppliedEnergistics(Applied Energistics:rv14.finale3): appeng-rv14-finale3-mc16x.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] ArchimedesShipsMod(Archimedes' Ships:1.6.4 v1.4.5): archimedesships.zip (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] BiblioCraft(BiblioCraft:1.5.5): BiblioCraft[v1.5.5].zip (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] Natura(Natura:2.1.14): Natura_mc1.6.X_2.1.14.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] BiomesOPlenty(Biomes O' Plenty:1.2.1): BiomesOPlenty-universal-1.6.4-1.2.1.434.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] AWWayofTime(Blood Magic: Alchemical Wizardry:v1.0.1g): Blood Magic v1.0.1g.zip (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] BuildCraft|Builders(BC Builders:4.2.2): buildcraft-A-1.6.4-4.2.2.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] BuildCraft|Factory(BC Factory:4.2.2): buildcraft-A-1.6.4-4.2.2.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] BuildCraft|Transport(BC Transport:4.2.2): buildcraft-A-1.6.4-4.2.2.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] BuildCraft|Silicon(BC Silicon:4.2.2): buildcraft-A-1.6.4-4.2.2.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] CalclaviaCore(Calclavia:1.2.0): Calclavia-Core-1.2.0.324-universal.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] CoFHLoot(CoFH Loot:2.0.0.5): CoFHCore-2.0.0.5.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] CoFHMasquerade(CoFH Masquerade:2.0.0.5): CoFHCore-2.0.0.5.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] CoFHSocial(CoFH Social:2.0.0.5): CoFHCore-2.0.0.5.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] CoFHWorld(CoFH World:2.0.0.5): CoFHCore-2.0.0.5.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] CustomSpawner(DrZhark's CustomSpawner:3.0.0): CustomMobSpawner 3.0.0.zip (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] EnderStorage(EnderStorage:1.4.3.6): EnderStorage 1.4.3.6.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] Railcraft(Railcraft:8.3.2.0): Railcraft_1.6.4-8.3.2.0.jar (a0c255ac501b2749537d5824bb0f0588bf0320fa) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] TwilightForest(The Twilight Forest:1.20.4): twilightforest-1.6.4-1.20.4.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] DartCraft(DartCraft:Beta 0.2.20): DartCraft Beta 0.2.20v2.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MoCreatures(DrZhark's Mo'Creatures Mod:6.1.0): DrZharks MoCreatures Mod v6.1.0.zip (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] Tombenpotter's Electro-Magic Tools(Electro-Magic Tools:1.0.9): ElectroMagicTools-1.0.9d.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] FlansMod(Flans Mod:4.1.1): FlansMod-4.1.1.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] ThaumicTinkerer(Thaumic Tinkerer:2.3-140): ThaumicTinkerer-2.3-140.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] ForbiddenMagic(Forbidden Magic:0.35a): ForbiddenMagic pr0.35a.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] GalacticraftCore(Galacticraft Core:2.0.2): Galacticraft-1.6.4-2.0.2.800.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] GalacticraftMars(Galacticraft Mars:2.0.2): Galacticraft-Planets-1.6.4-2.0.2.800.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] GraviSuite(Gravitation Suite:1.9.: GraviSuite_1_9_8_MC_1_6_4_IC_EXP.zip (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] HatStand(HatStand:2.1.0): HatStand2.1.0.zip (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] inventorytweaks(Inventory Tweaks:1.56): InventoryTweaks-MC1.6.2-1.56-b77.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] IronChest(Iron Chest:5.4.1.676): ironchest-universal-1.6.4-5.4.1.676.zip (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] JABBA(JABBA:1.0.3): JABBA_1.0.3.zip (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] LogisticsPipes|Main(Logistics Pipes:${lp.version.full}): LogisticsPipes-MC1.6.4-0.7.4.dev.290.jar (4ab9c640e37baa2d4eca3354863a84d2c06bee42) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] Mekanism(Mekanism:6.0.5): Mekanism-6.0.5.46[Optimized].jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MekanismGenerators(MekanismGenerators:6.0.5): MekanismGenerators-6.0.5.46.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MekanismTools(MekanismTools:6.0.5): MekanismTools-6.0.5.46.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MFR Compat Forestry Trees(MFR Compat Forestry Trees:1.0): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MFR Compat Extra Trees(MFR Compat Extra Trees:1.0): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded(MineFactory Reloaded:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatAppliedEnergistics(MFR Compat: Applied Energistics:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatAtum(MFR Compat: Atum:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatBackTools(MFR Compat: BackTools:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatBuildCraft(MFR Compat: BuildCraft:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatChococraft(MFR Compat: Chococraft:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatExtraBiomes(MFR Compat: ExtraBiomes:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatForestry(MFR Compat: Forestry:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatForestryPre(MFR Compat: Forestry (part 2):1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatForgeMicroblock(MFR Compat: ForgeMicroblock:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatIC2(MFR Compat: IC2:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatMystcraft(MFR Compat: Mystcraft:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatPams(MFR Compat: Pam's Mods:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatProjRed(MFR Compat ProjectRed:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatRailcraft(MFR Compat: Railcraft:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatRP2(MFR Compat: RP2:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatSufficientBiomes(MFR Compat: Sufficient Biomes:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatThaumcraft(MFR Compat: Thaumcraft:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatThermalExpansion(MFR Compat: Thermal Expansion:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatTwilightForest(MFR Compat: TwilightForest:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatVanilla(MFR Compat: Vanilla:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MineFactoryReloaded|CompatXyCraft(MFR Compat: XyCraft:1.6.4R2.7.9): MineFactoryReloaded-2.7.9-final.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] ResonantEngine(ResonantEngine:@MAJOR@.@MINOR@.@REVIS@): Resonant-Engine-Development-1.2.0.266-universal.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] MFFS(Modular Force Field System:3.6.3): Modular-Force-Field-System-3.6.3.91-core.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] moreplayermodels(MorePlayerModels:1.6.4): MorePlayerModels_1.6.2-1.6.4.zip (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] OpenMods(OpenMods:0.2): OpenModsLib-0.2.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] OpenBlocks(OpenBlocks:1.2.5): OpenBlocks-1.2.5.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] Redstone Arsenal(Redstone Arsenal:1.0.0.0): RedstoneArsenal-1.0.0.0.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] TConstruct(Tinkers' Construct:1.6.X_1.5.5.7): TConstruct_mc1.6.4_1.5.5.7.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] ThaumcraftExtras(Thaumcraft Extras:1.0.0.4): ThaumcraftExtras-1.6.4-1.0.0.4.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] ThaumicExploration(Thaumic Exploration:0.5.1): Thaumic Exploration 0.5.2.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] witchery(Witchery:0.19.2): witchery-1.6.4-0.19.2.zip (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] YALSM(Yet Another Leather Smelting Mod:2.0.3): Yet-Another-Leather-Smelting-Mod-1.6.4.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] McMultipart(Minecraft Multipart Plugin:1.0.0.219): ForgeMultipart-universal-1.6.4-1.0.0.219.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINE] [ForgeModLoader] ForgeMicroblock(Forge Microblocks:1.0.0.219): ForgeMultipart-universal-1.6.4-1.0.0.219.jar (NO VALID CERTIFICATE FOUND) 2014-08-17 22:03:51 [FINEST] [mcp] Sending event FMLPreInitializationEvent to mod mcp 2014-08-17 22:03:51 [FINEST] [mcp] Sent event FMLPreInitializationEvent to mod mcp 2014-08-17 22:03:51 [FINEST] [FML] Sending event FMLPreInitializationEvent to mod FML 2014-08-17 22:03:51 [FINEST] [FML] Sent event FMLPreInitializationEvent to mod FML 2014-08-17 22:03:51 [FINEST] [Forge] Sending event FMLPreInitializationEvent to mod Forge 2014-08-17 22:03:51 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0 2014-08-17 22:03:51 [FINEST] [Forge] Sent event FMLPreInitializationEvent to mod Forge 2014-08-17 22:03:51 [FINEST] [AM2-Preloader] Sending event FMLPreInitializationEvent to mod AM2-Preloader 2014-08-17 22:03:51 [FINEST] [AM2-Preloader] Sent event FMLPreInitializationEvent to mod AM2-Preloader 2014-08-17 22:03:51 [FINEST] [AppliedEnergistics-Core] Sending event FMLPreInitializationEvent to mod AppliedEnergistics-Core 2014-08-17 22:03:51 [FINEST] [AppliedEnergistics-Core] Sent event FMLPreInitializationEvent to mod AppliedEnergistics-Core 2014-08-17 22:03:51 [FINEST] [CodeChickenCore] Sending event FMLPreInitializationEvent to mod CodeChickenCore 2014-08-17 22:03:51 [FINEST] [CodeChickenCore] Sent event FMLPreInitializationEvent to mod CodeChickenCore 2014-08-17 22:03:51 [FINEST] [Micdoodlecore] Sending event FMLPreInitializationEvent to mod Micdoodlecore 2014-08-17 22:03:51 [FINEST] [Micdoodlecore] Sent event FMLPreInitializationEvent to mod Micdoodlecore 2014-08-17 22:03:51 [FINEST] [OpenModsCore] Sending event FMLPreInitializationEvent to mod OpenModsCore 2014-08-17 22:03:51 [FINEST] [OpenModsCore] Sent event FMLPreInitializationEvent to mod OpenModsCore 2014-08-17 22:03:51 [FINEST] [PowerCrystalsCore] Sending event FMLPreInitializationEvent to mod PowerCrystalsCore 2014-08-17 22:03:51 [FINEST] [PowerCrystalsCore] Sent event FMLPreInitializationEvent to mod PowerCrystalsCore 2014-08-17 22:03:51 [FINEST] [TConstruct-Preloader] Sending event FMLPreInitializationEvent to mod TConstruct-Preloader 2014-08-17 22:03:51 [FINEST] [TConstruct-Preloader] Sent event FMLPreInitializationEvent to mod TConstruct-Preloader 2014-08-17 22:03:51 [FINEST] [Hats] Sending event FMLPreInitializationEvent to mod Hats 2014-08-17 22:03:51 [FINEST] [Hats] Sent event FMLPreInitializationEvent to mod Hats 2014-08-17 22:03:51 [FINEST] [iChunUtil] Sending event FMLPreInitializationEvent to mod iChunUtil 2014-08-17 22:03:51 [FINEST] [iChunUtil] Sent event FMLPreInitializationEvent to mod iChunUtil 2014-08-17 22:03:51 [FINEST] [Morph] Sending event FMLPreInitializationEvent to mod Morph 2014-08-17 22:03:51 [FINEST] [Morph] Sent event FMLPreInitializationEvent to mod Morph 2014-08-17 22:03:51 [FINEST] [PortalGun] Sending event FMLPreInitializationEvent to mod PortalGun 2014-08-17 22:03:51 [iNFO] [PortalGun] [2.0.2] Loading properties. 2014-08-17 22:03:51 [FINEST] [PortalGun] Sent event FMLPreInitializationEvent to mod PortalGun 2014-08-17 22:03:51 [FINEST] [buildCraft|Core] Sending event FMLPreInitializationEvent to mod BuildCraft|Core 2014-08-17 22:03:51 [iNFO] [buildcraft] Starting BuildCraft 4.2.2 (:56) 2014-08-17 22:03:51 [iNFO] [buildcraft] Copyright (c) SpaceToad, 2011 2014-08-17 22:03:51 [iNFO] [buildcraft] http://www.mod-buildcraft.com 2014-08-17 22:03:51 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemWrench(19362) owned by BuildCraft|Core 2014-08-17 22:03:51 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemSpring(1522) owned by BuildCraft|Core 2014-08-17 22:03:51 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19356) owned by BuildCraft|Core 2014-08-17 22:03:51 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19357) owned by BuildCraft|Core 2014-08-17 22:03:51 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19358) owned by BuildCraft|Core 2014-08-17 22:03:51 [iNFO] [buildcraft] Beginning version check 2014-08-17 22:03:51 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19359) owned by BuildCraft|Core 2014-08-17 22:03:51 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19360) owned by BuildCraft|Core 2014-08-17 22:03:51 [FINEST] [buildCraft|Core] Sent event FMLPreInitializationEvent to mod BuildCraft|Core 2014-08-17 22:03:51 [FINEST] [buildCraft|Energy] Sending event FMLPreInitializationEvent to mod BuildCraft|Energy 2014-08-17 22:03:51 [FINE] [fml.ItemTracker] Adding item buildcraft.energy.ItemEngine(1510) owned by BuildCraft|Energy 2014-08-17 22:03:51 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1530) owned by BuildCraft|Energy 2014-08-17 22:03:51 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1531) owned by BuildCraft|Energy 2014-08-17 22:03:51 [FINE] [fml.ItemTracker] Adding item buildcraft.energy.ItemBucketBuildcraft(19363) owned by BuildCraft|Energy 2014-08-17 22:03:51 [FINE] [fml.ItemTracker] Adding item buildcraft.energy.ItemBucketBuildcraft(19366) owned by BuildCraft|Energy 2014-08-17 22:03:51 [FINEST] [buildCraft|Energy] Sent event FMLPreInitializationEvent to mod BuildCraft|Energy 2014-08-17 22:03:51 [FINEST] [CoFHCore] Sending event FMLPreInitializationEvent to mod CoFHCore 2014-08-17 22:03:51 [FINEST] [CoFHCore] Sent event FMLPreInitializationEvent to mod CoFHCore 2014-08-17 22:03:51 [FINEST] [NetherOres] Sending event FMLPreInitializationEvent to mod NetherOres 2014-08-17 22:03:51 [FINEST] [NetherOres] Sent event FMLPreInitializationEvent to mod NetherOres 2014-08-17 22:03:51 [FINEST] [universalElectricity] Sending event FMLPreInitializationEvent to mod UniversalElectricity 2014-08-17 22:03:51 [FINEST] [universalElectricity] Sent event FMLPreInitializationEvent to mod UniversalElectricity 2014-08-17 22:03:51 [FINEST] [ForgeMultipart] Sending event FMLPreInitializationEvent to mod ForgeMultipart 2014-08-17 22:03:52 [WARNING] [ForgeModLoader] Version Check Failed: Server returned HTTP response code: 403 for URL: http://teamcofh.com/cofhcore/version/version.txt 2014-08-17 22:03:54 [WARNING] [buildcraft] Unable to read from remote version authority. 2014-08-17 22:03:54 [WARNING] [buildcraft] java.io.FileNotFoundException: https://dl.dropboxusercontent.com/u/38558957/Minecraft/Buildcraft/version.txt 2014-08-17 22:03:54 [iNFO] [buildcraft] Version check attempt 1 failed, trying again in 10 seconds 2014-08-17 22:03:54 [FINEST] [ForgeMultipart] Sent event FMLPreInitializationEvent to mod ForgeMultipart 2014-08-17 22:03:54 [FINEST] [ThermalExpansion] Sending event FMLPreInitializationEvent to mod ThermalExpansion 2014-08-17 22:03:54 [WARNING] [ThermalExpansion] Version Check Failed: Server returned HTTP response code: 403 for URL: http://teamcofh.com/thermalexpansion/version/version.txt 2014-08-17 22:03:54 [iNFO] [ThermalExpansion] Loading Plugins... 2014-08-17 22:03:54 [iNFO] [ThermalExpansion] Finished Loading Plugins. 2014-08-17 22:03:54 [FINEST] [ThermalExpansion] Sent event FMLPreInitializationEvent to mod ThermalExpansion 2014-08-17 22:03:54 [FINEST] [iC2] Sending event FMLPreInitializationEvent to mod IC2 2014-08-17 22:03:54 [iNFO] [iC2] Starting initialization 2014-08-17 22:03:54 [iNFO] [iC2] Config loaded from C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\.\config\IC2.cfg 2014-08-17 22:03:54 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4000 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4000; from 4000 to 3905 2014-08-17 22:03:54 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3905) owned by IC2 2014-08-17 22:03:54 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4001 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4001; from 4001 to 3904 2014-08-17 22:03:54 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3904) owned by IC2 2014-08-17 22:03:54 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4002 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4002; from 4002 to 3903 2014-08-17 22:03:54 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3903) owned by IC2 2014-08-17 22:03:54 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4003 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4003; from 4003 to 3902 2014-08-17 22:03:54 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3902) owned by IC2 2014-08-17 22:03:54 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4037) owned by IC2 2014-08-17 22:03:54 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4038) owned by IC2 2014-08-17 22:03:54 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4039) owned by IC2 2014-08-17 22:03:54 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4009 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4009; from 4009 to 3901 2014-08-17 22:03:54 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3901) owned by IC2 2014-08-17 22:03:54 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4008 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4008; from 4008 to 3900 2014-08-17 22:03:54 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemRubLeaves(3900) owned by IC2 2014-08-17 22:03:54 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4007 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4007; from 4007 to 3899 2014-08-17 22:03:54 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3899) owned by IC2 2014-08-17 22:03:54 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4011 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4011; from 4011 to 3898 2014-08-17 22:03:54 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3898) owned by IC2 2014-08-17 22:03:54 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4010 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4010; from 4010 to 3897 2014-08-17 22:03:54 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3897) owned by IC2 2014-08-17 22:03:54 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4026 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4026; from 4026 to 3896 2014-08-17 22:03:54 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3896) owned by IC2 2014-08-17 22:03:54 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4015 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4015; from 4015 to 3895 2014-08-17 22:03:54 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3895) owned by IC2 2014-08-17 22:03:54 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4016 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4016; from 4016 to 3894 2014-08-17 22:03:54 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3894) owned by IC2 2014-08-17 22:03:54 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4017 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4017; from 4017 to 3893 2014-08-17 22:03:54 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3893) owned by IC2 2014-08-17 22:03:54 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4014 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4014; from 4014 to 3892 2014-08-17 22:03:54 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3892) owned by IC2 2014-08-17 22:03:54 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4012 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4012; from 4012 to 3891 2014-08-17 22:03:54 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3891) owned by IC2 2014-08-17 22:03:55 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4013 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4013; from 4013 to 3890 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3890) owned by IC2 2014-08-17 22:03:55 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4024 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4024; from 4024 to 3889 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3889) owned by IC2 2014-08-17 22:03:55 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4025 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4025; from 4025 to 3888 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3888) owned by IC2 2014-08-17 22:03:55 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4004 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4004; from 4004 to 3878 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockMetal(3878) owned by IC2 2014-08-17 22:03:55 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4005 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4005; from 4005 to 3877 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3877) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemGenerator(4032) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(4036) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemElectricBlock(4033) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemMachine(4034) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemMachine2(4035) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemLuminator(4030) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemLuminator(4029) owned by IC2 2014-08-17 22:03:55 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4027 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4027; from 4027 to 3876 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3876) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(4028) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemPersonalBlock(4031) owned by IC2 2014-08-17 22:03:55 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4020 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4020; from 4020 to 3875 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3875) owned by IC2 2014-08-17 22:03:55 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4021 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4021; from 4021 to 3874 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3874) owned by IC2 2014-08-17 22:03:55 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4018 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4018; from 4018 to 3873 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3873) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(4019) owned by IC2 2014-08-17 22:03:55 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4022 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4022; from 4022 to 3872 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3872) owned by IC2 2014-08-17 22:03:55 [iNFO] [sTDOUT] Idfix: changing block id for ic2.core.IC2|4023 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4023; from 4023 to 3871 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBlockIC2(3871) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemResin(30217) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30216) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemFluidCell(30039) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.resources.ItemRecipePart(30038) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.resources.ItemCasing(30037) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.resources.ItemCrushedOre(30064) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.resources.ItemPurifiedCrushedOre(30063) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.resources.ItemPlate(30041) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.resources.ItemDensePlate(30084) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.resources.ItemsmallDust(30065) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.resources.ItemDust(30066) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.resources.ItemDust2(30033) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.resources.ItemIngot(30067) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorLithiumCell(30203) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30202) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemRadioactive(30243) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemRadioactive(30052) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemRadioactive(30051) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemRadioactive(30050) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemRadioactive(30049) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemRadioactive(30048) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemRadioactive(30047) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30045) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemRadioactive(30042) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30191) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30190) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30187) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30152) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30151) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30150) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30188) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30128) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30147) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemTreetap(30212) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemIC2Pickaxe(30200) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemIC2Axe(30199) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemIC2Sword(30198) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemIC2Spade(30197) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemIC2Hoe(30196) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolWrench(30183) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolCutter(30153) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemSprayer(30131) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemToolbox(30117) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolHammer(30040) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemCrystalMemory(30032) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemDrillStandard(30235) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemDrillDiamond(30234) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemDrillIridium(30244) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemElectricToolChainsaw(30233) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolWrenchElectric(30140) owned by IC2 2014-08-17 22:03:55 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemTreetapElectric(30124) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolMiningLaser(30208) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolMeter(30182) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemScanner(30220) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemScannerAdv(30219) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemObscurator(30076) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemFrequencyTransmitter(30134) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemNanoSaber(30149) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.PlasmaLauncher(30123) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorHazmat(30082) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorHazmat(30081) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorHazmat(30080) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorHazmat(30211) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorIC2(30195) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorIC2(30194) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorIC2(30193) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorIC2(30192) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorIC2(30179) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorNanoSuit(30178) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorNanoSuit(30177) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorNanoSuit(30176) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorNanoSuit(30175) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorQuantumSuit(30174) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorQuantumSuit(30173) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorQuantumSuit(30172) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorQuantumSuit(30171) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorJetpack(30210) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorJetpackElectric(30209) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorBatpack(30180) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorAdvBatpack(30035) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorEnergypack(30034) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorCFPack(30129) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorSolarHelmet(30116) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorStaticBoots(30115) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.armor.ItemArmorNightvisionGoggles(30078) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemBatteryDischarged(30239) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemBattery(30242) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemBattery(30036) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemBattery(30241) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemBattery(30240) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemBatterySU(30238) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemCable(30184) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.resources.ItemCell(30237) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemFuelCanEmpty(30231) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemFuelCanFilled(30232) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30222) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemTinCan(30221) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorMOX(30059) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorMOX(30061) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorMOX(30060) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorUranium(30207) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorUranium(30102) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorUranium(30101) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemRadioactive(30056) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemRadioactive(30058) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemRadioactive(30057) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemRadioactive(30053) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemRadioactive(30055) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemRadioactive(30054) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorHeatStorage(30206) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorHeatStorage(30100) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorHeatStorage(30099) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorPlating(30205) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorPlating(30098) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorPlating(30097) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorHeatSwitch(30204) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorHeatSwitch(30096) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorHeatSwitch(30095) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorHeatSwitch(30094) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorVent(30093) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorVent(30092) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorVent(30091) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorVentSpread(30090) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorVent(30089) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorReflector(30087) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorReflector(30086) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorCondensator(30085) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.reactor.ItemReactorCondensator(30083) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30146) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tfbp.ItemTFBPCultivation(30145) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tfbp.ItemTFBPIrrigation(30144) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tfbp.ItemTFBPChilling(30143) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tfbp.ItemTFBPDesertification(30142) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tfbp.ItemTFBPFlatification(30141) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tfbp.ItemTFBPMushroom(30118) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30138) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30137) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30136) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30135) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30189) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemScrapbox(30139) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30225) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30224) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30223) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30170) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30169) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30168) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30167) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30166) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30165) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30164) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30163) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30162) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30161) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30160) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30159) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30158) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30157) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30156) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30155) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30154) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemDynamite(30215) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemDynamite(30214) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemRemote(30213) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemUpgradeModule(30125) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30186) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemIC2Door(30185) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemFoamPowder(30132) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30106) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemDebug(30104) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2Boat(30077) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemCropSeed(30126) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemCropnalyzer(30122) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemFertilizer(30121) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemGradual(30120) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.tool.ItemElectricToolHoe(30119) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemTerraWart(30114) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30105) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemMug(30111) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30113) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30112) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemMugCoffee(30110) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemIC2(30109) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.block.ItemBarrel(30108) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.item.ItemBooze(30107) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30127) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30201) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30148) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30250) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30251) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30133) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30256) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30253) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30254) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30255) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30130) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30252) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30249) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30245) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30246) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30248) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30247) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30236) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30218) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30079) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30230) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30229) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30228) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30227) owned by IC2 2014-08-17 22:03:56 [FINE] [fml.ItemTracker] Adding item ic2.core.migration.ItemMigrate(30181) owned by IC2 2014-08-17 22:03:56 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/world/gen/structure/StructureVillagePieces (input size 4892), found 1 patch 2014-08-17 22:03:56 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/world/gen/structure/StructureVillagePieces (new size 6504) 2014-08-17 22:03:57 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity MiningLaser as IC2.MiningLaser 2014-08-17 22:03:57 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity Dynamite as IC2.Dynamite 2014-08-17 22:03:57 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity StickyDynamite as IC2.StickyDynamite 2014-08-17 22:03:57 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity Itnt as IC2.Itnt 2014-08-17 22:03:57 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity Nuke as IC2.Nuke 2014-08-17 22:03:57 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity BoatCarbon as IC2.BoatCarbon 2014-08-17 22:03:57 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity BoatRubber as IC2.BoatRubber 2014-08-17 22:03:57 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity BoatElectric as IC2.BoatElectric 2014-08-17 22:03:57 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity Particle as IC2.Particle 2014-08-17 22:03:57 [iNFO] [iC2] Finished initialization after 2385 ms 2014-08-17 22:03:57 [FINEST] [iC2] Sent event FMLPreInitializationEvent to mod IC2 2014-08-17 22:03:57 [FINEST] [Thaumcraft] Sending event FMLPreInitializationEvent to mod Thaumcraft 2014-08-17 22:03:57 [iNFO] [sTDOUT] [Calclavia Core] Transforming Chunk class for chunkModified event. 2014-08-17 22:03:57 [iNFO] [sTDOUT] [Calclavia Core] Found method func_76592_a 2014-08-17 22:03:57 [iNFO] [sTDOUT] [Calclavia Core] Injected instruction to method: func_76592_a 2014-08-17 22:03:57 [iNFO] [sTDOUT] [Resonant-Engine] Transforming Chunk class for chunkModified event. 2014-08-17 22:03:57 [iNFO] [sTDOUT] [Resonant-Engine] Found method func_76592_a 2014-08-17 22:03:57 [iNFO] [sTDOUT] [Resonant-Engine] Injected instruction to method: func_76592_a 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.BlockFluxGooItem(2400) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.BlockFluxGasItem(2401) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2402) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.BlockCustomOreItem(2403) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.BlockCosmeticOpaqueItem(2418) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.BlockCosmeticSolidItem(2419) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.BlockCustomPlantItem(2404) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.BlockTaintItem(2421) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.BlockTaintFibresItem(2422) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2407) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.BlockMetalDeviceItem(2408) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.BlockMagicalLogItem(2405) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.BlockMagicalLeavesItem(2406) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.BlockTableItem(2409) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2410) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.BlockCandleItem(2411) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.BlockWoodenDeviceItem(2414) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2413) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2415) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.BlockAiryItem(2416) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.BlockCrystalItem(2417) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.BlockMirrorItem(2420) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.BlockStoneDeviceItem(2423) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.BlockJarItem(2412) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2424) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.BlockTubeItem(2425) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2426) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.wands.ItemWandCasting(25266) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.wands.ItemWandCap(25267) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.wands.ItemWandRod(25268) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.wands.ItemFocusPouch(25269) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.wands.foci.ItemFocusFire(25270) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.wands.foci.ItemFocusShock(25271) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.wands.foci.ItemFocusHellbat(25274) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.wands.foci.ItemFocusFrost(25275) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.wands.foci.ItemFocusTrade(25272) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.wands.foci.ItemFocusExcavation(25273) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.wands.foci.ItemFocusPortableHole(25276) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.wands.foci.ItemFocusPech(25277) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.wands.foci.ItemFocusWarding(25278) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.wands.foci.ItemFocusPrimal(25279) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.ItemEssence(25364) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.ItemManaBean(25366) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.ItemWispEssence(25365) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.ItemResource(25356) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.ItemShard(25363) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.ItemResearchNotes(25256) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.ItemInkwell(25257) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.relics.ItemThaumonomicon(25258) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.relics.ItemThaumometer(25296) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.armor.ItemGoggles(25316) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.armor.ItemThaumiumArmor(25317) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.armor.ItemThaumiumArmor(25318) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.armor.ItemThaumiumArmor(25319) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.armor.ItemThaumiumArmor(25320) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.equipment.ItemThaumiumShovel(25321) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.equipment.ItemThaumiumPickaxe(25322) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.equipment.ItemThaumiumAxe(25323) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.equipment.ItemThaumiumSword(25324) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.equipment.ItemThaumiumHoe(25325) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.ItemArcaneDoor(25297) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.ItemNugget(25362) owned by Thaumcraft 2014-08-17 22:03:57 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.armor.ItemBootsTraveller(25326) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.ItemNuggetEdible(25357) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.ItemNuggetEdible(25358) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.ItemNuggetEdible(25359) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.ItemNuggetEdible(25360) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.ItemTripleMeatTreat(25361) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.equipment.ItemElementalSword(25327) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.equipment.ItemElementalShovel(25328) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.equipment.ItemElementalPickaxe(25329) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.equipment.ItemElementalAxe(25330) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.equipment.ItemElementalHoe(25331) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.armor.ItemRobeArmor(25332) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.armor.ItemRobeArmor(25333) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.armor.ItemRobeArmor(25334) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.ItemKey(25299) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.relics.ItemHandMirror(25300) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.armor.ItemHoverHarness(25301) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.ItemJarFilled(25298) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.blocks.ItemJarNode(25304) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.entities.golems.ItemTrunkSpawner(25291) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.entities.golems.ItemGolemPlacer(25286) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.entities.golems.ItemGolemCore(25287) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.entities.golems.ItemGolemUpgrade(25290) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.entities.golems.ItemGolemBell(25289) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.entities.golems.ItemGolemDecoration(25288) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.equipment.ItemBowBone(25335) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.equipment.ItemPrimalArrow(25343) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.relics.ItemResonator(25336) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.armor.ItemRunicArmor(25337) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.armor.ItemRunicArmor(25338) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.armor.ItemRunicArmor(25339) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.armor.ItemRunicArmor(25340) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.armor.ItemRunicGoggles(25341) owned by Thaumcraft 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item thaumcraft.common.items.armor.ItemRunicBootsTraveller(25342) owned by Thaumcraft 2014-08-17 22:03:58 [FINEST] [Thaumcraft] Sent event FMLPreInitializationEvent to mod Thaumcraft 2014-08-17 22:03:58 [FINEST] [AdvancedThaumaturgy] Sending event FMLPreInitializationEvent to mod AdvancedThaumaturgy 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item net.ixios.advancedthaumaturgy.items.ItemInfusedThaumium(13591) owned by AdvancedThaumaturgy 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item net.ixios.advancedthaumaturgy.items.ItemEtherealJar(13595) owned by AdvancedThaumaturgy 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item net.ixios.advancedthaumaturgy.items.ItemFocusVoidCage(13594) owned by AdvancedThaumaturgy 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item net.ixios.advancedthaumaturgy.items.ItemAeroSphere(13596) owned by AdvancedThaumaturgy 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item net.ixios.advancedthaumaturgy.items.ItemArcaneCrystal(13597) owned by AdvancedThaumaturgy 2014-08-17 22:03:58 [FINE] [fml.ItemTracker] Adding item net.ixios.advancedthaumaturgy.items.ItemEndstoneChunk(13598) owned by AdvancedThaumaturgy 2014-08-17 22:03:58 [FINEST] [ForgeModLoader] Optional removal - found optionals for class net.ixios.advancedthaumaturgy.compat.energy.BCCompatChecker - processing 2014-08-17 22:03:58 [FINEST] [ForgeModLoader] Optional removal skipped - mod present BuildCraft|Energy 2014-08-17 22:03:58 [FINEST] [ForgeModLoader] Optional removal - class net.ixios.advancedthaumaturgy.compat.energy.BCCompatChecker processed 2014-08-17 22:03:58 [FINEST] [ForgeModLoader] Optional removal - found optionals for class net.ixios.advancedthaumaturgy.tileentities.TileEssentiaEngine - processing 2014-08-17 22:03:58 [FINEST] [ForgeModLoader] Optional removal skipped - mod present BuildCraft|Energy 2014-08-17 22:03:58 [FINEST] [ForgeModLoader] Optional removal skipped - mod present BuildCraft|Energy 2014-08-17 22:03:58 [FINEST] [ForgeModLoader] Optional removal skipped - mod present BuildCraft|Energy 2014-08-17 22:03:58 [FINEST] [ForgeModLoader] Optional removal skipped - mod present BuildCraft|Energy 2014-08-17 22:03:58 [FINEST] [ForgeModLoader] Optional removal skipped - mod present BuildCraft|Energy 2014-08-17 22:03:58 [FINEST] [ForgeModLoader] Optional removal skipped - mod present BuildCraft|Energy 2014-08-17 22:03:58 [FINEST] [ForgeModLoader] Optional removal - class net.ixios.advancedthaumaturgy.tileentities.TileEssentiaEngine processed 2014-08-17 22:03:58 [FINEST] [AdvancedThaumaturgy] Sent event FMLPreInitializationEvent to mod AdvancedThaumaturgy 2014-08-17 22:03:58 [FINEST] [Aether II] Sending event FMLPreInitializationEvent to mod Aether II 2014-08-17 22:03:58 [FINEST] [Aether II] Sent event FMLPreInitializationEvent to mod Aether II 2014-08-17 22:03:58 [FINEST] [AnimationAPI] Sending event FMLPreInitializationEvent to mod AnimationAPI 2014-08-17 22:03:58 [FINEST] [AnimationAPI] Sent event FMLPreInitializationEvent to mod AnimationAPI 2014-08-17 22:03:58 [FINEST] [arsmagica2] Sending event FMLPreInitializationEvent to mod arsmagica2 2014-08-17 22:03:58 [iNFO] [ForgeModLoader] Ars Magica >> Extending Potions Array 2014-08-17 22:03:58 [iNFO] [ForgeModLoader] Ars Magica >> injecting potions starting from index 32 2014-08-17 22:03:59 [FINEST] [ForgeModLoader] Ars Magica >> Instantiating Items 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemOre(20256) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemEssence(20257) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemSpellBook(20258) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ArsMagicaItem(20259) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.SpellBase(20260) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemRune(20261) owned by arsmagica2 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] AMCore >> Altering definition of am2.armor.ItemMageHood to be thaumcraft compatible. 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.armor.ItemMageHood(20262) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.armor.AMArmor(20263) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.armor.AMArmor(20264) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.armor.AMArmor(20265) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.armor.ItemMageHood(20266) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.armor.AMArmor(20267) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.armor.AMArmor(20268) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.armor.AMArmor(20269) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemChalk(20270) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemFocusLesser(20271) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemFocusStandard(20272) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemFocusGreater(20273) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemFocusMana(20274) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemFocusCharge(20275) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemAffinityBook(20276) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemKeystone(20277) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemPlayerFocus(20278) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemMobFocus(20279) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemItemFocus(20280) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemCreatureFocus(20281) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemBoundHoe(20282) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemBoundAxe(20283) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemBoundPickaxe(20284) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemBoundShovel(20285) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemBoundSword(20286) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemManaCake(20287) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemManaPotion(20288) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemManaPotion(20289) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemManaPotion(20290) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemManaPotion(20291) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemManaPotion(20292) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ArsMagicaItem(20293) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemEssenceBag(20294) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemManaPotionBundle(20295) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemCrystalWrench(20296) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.AMSpawnEgg(20297) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemArcaneCompendium(20298) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemSpellPart(20299) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemWakebloom(4068) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemCrystalPhylactery(20300) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemAMBucket(20301) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemNatureGuardianSickle(20302) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemSpellStaff(20303) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemLiquidEssenceBottle(20304) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.Item(20305) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.Item(20306) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemHellCowHorn(20307) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemMagicBroom(20308) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemArcaneGuardianSpellbook(20309) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemWinterGuardianArm(20310) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemAirSled(20311) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.armor.ItemEarthGuardianArmor(20312) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.armor.ItemWaterGuardianOrbs(20313) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.armor.ItemFireGuardianEars(20314) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ArsMagicaItem(20315) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemBindingCatalyst(20316) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemKeystoneDoor(20317) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.armor.ItemEnderBoots(20318) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemCandle(20319) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.armor.ItemMagitechGoggles(20320) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemFlickerJar(20321) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemRuneBag(20322) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemLightningCharm(20323) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemLifeWard(20324) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemFlickerFocus(20325) owned by arsmagica2 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item am2.items.ItemJournal(20326) owned by arsmagica2 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: dr_phy 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: dr_drn 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: dr_fall 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: dr_exp 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: dr_fire 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: dr_frst 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: dr_mage 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: dr_litn 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: mn_reg 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: bn_red 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: soulbnd 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: fl_lure 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: mg_xp 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: pp_ore 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: mg_gog 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: tc_nrv 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: stp_up 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: run_spd 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: dispel 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: fallprot 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: fireprot 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: freedom 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: healing 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: hungerup 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: highjump 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: lifesave 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: lightstep 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: minespd 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: recoil 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: swimspd 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: wtrbrth 2014-08-17 22:03:59 [iNFO] [ForgeModLoader] Ars Magica 2 >> Registered imbuement: wtrwalk 2014-08-17 22:03:59 [FINEST] [arsmagica2] Sent event FMLPreInitializationEvent to mod arsmagica2 2014-08-17 22:03:59 [FINEST] [AppliedEnergistics] Sending event FMLPreInitializationEvent to mod AppliedEnergistics 2014-08-17 22:03:59 [FINEST] [AppliedEnergistics] Sent event FMLPreInitializationEvent to mod AppliedEnergistics 2014-08-17 22:03:59 [FINEST] [ArchimedesShipsMod] Sending event FMLPreInitializationEvent to mod ArchimedesShipsMod 2014-08-17 22:03:59 [FINEST] [ArchimedesShipsMod] Sent event FMLPreInitializationEvent to mod ArchimedesShipsMod 2014-08-17 22:03:59 [FINEST] [biblioCraft] Sending event FMLPreInitializationEvent to mod BiblioCraft 2014-08-17 22:03:59 [FINEST] [biblioCraft] Sent event FMLPreInitializationEvent to mod BiblioCraft 2014-08-17 22:03:59 [FINEST] [Natura] Sending event FMLPreInitializationEvent to mod Natura 2014-08-17 22:03:59 [iNFO] [Natura] [PluginController] Using config path: C:\Users\PlayerNerd\Desktop\PlayerNerd\CraftSuporte\ModPacks\Servers\The LastCraft\Criação\config\NaturaCompat.cfg 2014-08-17 22:03:59 [iNFO] [Natura] [PluginController] Registering compat plugin for ForgeMultipart 2014-08-17 22:03:59 [iNFO] [Natura] [PluginController] Registering compat plugin for MineFactoryReloaded 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.SpawnEgg(12714) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.PlantItem(12660) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3260) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.NaturaSeeds(12659) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.CactusJuice(12663) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.SeedBag(12667) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.SeedBag(12668) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.SeedBag(12669) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.SeedBag(12670) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.SeedBag(12671) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.SeedBag(12672) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.BoneBag(12675) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.NetherBerryItem(12657) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.BerryItem(12658) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.BerryMedley(12673) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.BerryBushItem(3257) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.NetherBerryBushItem(3255) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.CloudItem(3253) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.SeedFood(12674) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.NDoorItem(12662) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.TreeItem(3251) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.RedwoodItem(3261) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.PlanksItem(3262) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.NLeavesItem(3259) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.NoColorLeavesItem(3258) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.NSaplingItem(3256) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.SaguaroItem(3254) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.WillowItem(3280) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3252) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3264) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3265) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3266) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3267) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3268) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3269) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.LogTwoxTwoItem(3263) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(250) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(249) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.DarkTreeItem(3271) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.NLeavesDarkItem(3272) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3282) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.GlowshroomItem(3270) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3273) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3275) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3274) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3356) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3357) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3358) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3359) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3360) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3361) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.NetherGlassItem(3362) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3363) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3366) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3367) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3368) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.NetherFoodItem(12676) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.OverworldTreeItem(3277) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.OverworldLeavesItem(3278) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.OverworldSaplingItem(3279) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3281) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.NAlternateItem(3283) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.NAlternateItem(3284) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.FenceItem(3285) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.GrassBlockItem(3286) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.GrassSlabItem(3287) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.PlankSlab1Item(3288) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item mods.natura.items.blocks.PlankSlab2Item(3289) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3291) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3292) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3293) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3294) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3295) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3296) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3297) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3299) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3298) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3300) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3301) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3302) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3303) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3304) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3317) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3330) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3343) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3305) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3318) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3331) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3344) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3306) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3319) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3332) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3345) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3307) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3320) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3333) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3346) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3308) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3321) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3334) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3347) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3309) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3322) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3335) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3348) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3310) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3323) owned by Natura 2014-08-17 22:03:59 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3336) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3349) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3311) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3324) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3338) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3351) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3312) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3325) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3337) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3350) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3313) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3326) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3339) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3352) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3314) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3327) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3340) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3353) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3315) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3328) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3341) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3354) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3316) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3329) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3342) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3355) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.StickItem(12677) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaSword(12678) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaPickaxe(12679) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaShovel(12680) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaHatchet(12681) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaSword(12682) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaPickaxe(12683) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaShovel(12684) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaHatchet(12685) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaSword(12686) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaPickaxe(12687) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaShovel(12688) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaHatchet(12689) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaSword(12690) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaPickaxe(12691) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaShovel(12692) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaHatchet(12693) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaSword(12694) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaPickaxe(12695) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaShovel(12696) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaHatchet(12697) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaKama(12704) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaKama(12700) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaKama(12701) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaKama(12702) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaKama(12703) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaBow(12705) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaBow(12706) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaBow(12707) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaBow(12708) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaArmor(12709) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaArmor(12710) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaArmor(12711) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.NaturaArmor(12712) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.tools.FlintAndBlaze(12715) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.ImpMeat(12713) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.BowlEmpty(12698) owned by Natura 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item mods.natura.items.BowlStew(12699) owned by Natura 2014-08-17 22:04:00 [FINEST] [Natura] Sent event FMLPreInitializationEvent to mod Natura 2014-08-17 22:04:00 [FINEST] [biomesOPlenty] Sending event FMLPreInitializationEvent to mod BiomesOPlenty 2014-08-17 22:04:00 [iNFO] [ForgeModLoader] [biomesOPlenty] Generated Main Config! 2014-08-17 22:04:00 [iNFO] [ForgeModLoader] [biomesOPlenty] Generated Biome Gen Config! 2014-08-17 22:04:00 [iNFO] [ForgeModLoader] [biomesOPlenty] Generated Terrain Gen Config! 2014-08-17 22:04:00 [iNFO] [ForgeModLoader] [biomesOPlenty] Generating Biome ID's 2014-08-17 22:04:00 [iNFO] [ForgeModLoader] [biomesOPlenty] Generated IDs Config! 2014-08-17 22:04:00 [iNFO] [ForgeModLoader] [biomesOPlenty] Generated Misc Config! 2014-08-17 22:04:00 [iNFO] [ForgeModLoader] [biomesOPlenty] Beginning version check 2014-08-17 22:04:00 [iNFO] [ForgeModLoader] [biomesOPlenty] Extending Potions Array. 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockMud(160) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(161) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockRedRock(162) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(163) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(174) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockPlant(2013) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockFlower(2000) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockFlower2(2001) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockStoneFormations(2026) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockMushroom(2017) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockCoral(2018) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPWillow(2008) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPIvy(2009) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockLeaves(1950) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockLeaves(1951) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockLeaves(1952) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockLeaves(1953) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockFoliage(2006) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2034) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(164) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(165) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockAppleLeaves(1960) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockPersimmonLeaves(1961) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockBamboo(2014) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1920) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1988) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(166) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(252) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1928) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2016) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockLog(1940) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockLog(1941) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockLog(1942) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockLog(1943) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockPetals(1962) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockSapling(1998) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockColorizedSapling(1999) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1989) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1990) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(167) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(168) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1922) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockGrass(169) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(255) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockSkystone(254) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1991) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1992) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2025) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPAmethyst(1921) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockMoss(2015) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(253) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1923) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockHive(1924) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1925) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockBones(1926) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1927) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockGrave(2027) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockSlab(1996) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockSlab(1997) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockSlab(1984) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockSlab(1985) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockSlab(1986) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockSlab(1987) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockPlank(1970) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1971) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1972) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1973) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1974) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1975) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1976) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1977) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1978) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1979) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1980) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1981) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1982) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1983) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockColorizedLeaves(1955) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.itemblocks.ItemBlockColorizedLeaves(1956) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPFood(21265) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPSeeds(21260) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOP(21259) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemJarEmpty(21261) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemJarFilled(21262) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemGems(21264) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPMudball(21263) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemDartBlower(21272) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemDart(21273) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPAncientStaff(21266) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemEnderporter(21267) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPRecord(21299) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPRecordMud(21300) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPSword(21274) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPSpade(21275) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPPickaxe(21276) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPAxe(21277) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPHoe(21278) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.armor.ArmorMuddy(21280) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.armor.ArmorMuddy(21281) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.armor.ArmorMuddy(21282) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.armor.ArmorMuddy(21283) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPSword(21284) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPSpade(21285) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPPickaxe(21286) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPAxe(21287) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPHoe(21288) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.armor.ArmorAmethyst(21290) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.armor.ArmorAmethyst(21291) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.armor.ArmorAmethyst(21292) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.armor.ArmorAmethyst(21293) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPScythe(21294) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPScythe(21295) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPScythe(21296) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPScythe(21297) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPScythe(21298) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPScythe(21279) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPScythe(21289) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.armor.ArmorFlowerBand(21271) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.armor.ArmorWadingBoots(21269) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.armor.ArmorFlippers(21270) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item biomesoplenty.items.ItemBOPBucket(21268) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2030) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2028) owned by BiomesOPlenty 2014-08-17 22:04:00 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2032) owned by BiomesOPlenty 2014-08-17 22:04:02 [iNFO] [ForgeModLoader] [OpenBlocks] Trying to patch MapGenStructure (class: ain) 2014-08-17 22:04:02 [iNFO] [ForgeModLoader] [OpenBlocks] MapGenFix: Found checkcast to 'aiv' 2014-08-17 22:04:02 [iNFO] [ForgeModLoader] [OpenBlocks] MapGenFix: Found var: 23 2014-08-17 22:04:02 [iNFO] [ForgeModLoader] [OpenBlocks] MapGenFix: Found 'StructureStart.isSizeableStructure' (aiv.d) call 2014-08-17 22:04:02 [iNFO] [ForgeModLoader] [OpenBlocks] MapGenFix: All conditions matched, inserting extra condition 2014-08-17 22:04:02 [FINEST] [ForgeModLoader] Automatically registered mod BiomesOPlenty entity MudBall as BiomesOPlenty.MudBall 2014-08-17 22:04:02 [FINEST] [ForgeModLoader] Automatically registered mod BiomesOPlenty entity Dart as BiomesOPlenty.Dart 2014-08-17 22:04:02 [FINEST] [ForgeModLoader] Automatically registered mod BiomesOPlenty entity PoisonDart as BiomesOPlenty.PoisonDart 2014-08-17 22:04:02 [FINEST] [ForgeModLoader] Automatically registered mod BiomesOPlenty entity JungleSpider as BiomesOPlenty.JungleSpider 2014-08-17 22:04:02 [FINEST] [ForgeModLoader] Automatically registered mod BiomesOPlenty entity Rosester as BiomesOPlenty.Rosester 2014-08-17 22:04:02 [FINEST] [ForgeModLoader] Automatically registered mod BiomesOPlenty entity Glob as BiomesOPlenty.Glob 2014-08-17 22:04:02 [FINEST] [ForgeModLoader] Automatically registered mod BiomesOPlenty entity Phantom as BiomesOPlenty.Phantom 2014-08-17 22:04:02 [FINEST] [ForgeModLoader] Automatically registered mod BiomesOPlenty entity Wasp as BiomesOPlenty.Wasp 2014-08-17 22:04:02 [FINEST] [ForgeModLoader] Automatically registered mod BiomesOPlenty entity Bird as BiomesOPlenty.Bird 2014-08-17 22:04:02 [FINEST] [ForgeModLoader] Automatically registered mod BiomesOPlenty entity Pixie as BiomesOPlenty.Pixie 2014-08-17 22:04:02 [FINEST] [biomesOPlenty] Sent event FMLPreInitializationEvent to mod BiomesOPlenty 2014-08-17 22:04:02 [FINEST] [AWWayofTime] Sending event FMLPreInitializationEvent to mod AWWayofTime 2014-08-17 22:04:02 [FINEST] [AWWayofTime] Sent event FMLPreInitializationEvent to mod AWWayofTime 2014-08-17 22:04:02 [FINEST] [buildCraft|Builders] Sending event FMLPreInitializationEvent to mod BuildCraft|Builders 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.builders.ItemBptTemplate(19361) owned by BuildCraft|Builders 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.builders.ItemBptBluePrint(19374) owned by BuildCraft|Builders 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1504) owned by BuildCraft|Builders 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1518) owned by BuildCraft|Builders 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1505) owned by BuildCraft|Builders 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1507) owned by BuildCraft|Builders 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1508) owned by BuildCraft|Builders 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1515) owned by BuildCraft|Builders 2014-08-17 22:04:02 [FINEST] [buildCraft|Builders] Sent event FMLPreInitializationEvent to mod BuildCraft|Builders 2014-08-17 22:04:02 [FINEST] [buildCraft|Factory] Sending event FMLPreInitializationEvent to mod BuildCraft|Factory 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1500) owned by BuildCraft|Factory 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1501) owned by BuildCraft|Factory 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1502) owned by BuildCraft|Factory 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1509) owned by BuildCraft|Factory 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1503) owned by BuildCraft|Factory 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1512) owned by BuildCraft|Factory 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1511) owned by BuildCraft|Factory 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1524) owned by BuildCraft|Factory 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1514) owned by BuildCraft|Factory 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1519) owned by BuildCraft|Factory 2014-08-17 22:04:02 [FINEST] [buildCraft|Factory] Sent event FMLPreInitializationEvent to mod BuildCraft|Factory 2014-08-17 22:04:02 [FINEST] [buildCraft|Transport] Sending event FMLPreInitializationEvent to mod BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19365) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1513) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19416) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19423) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19417) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19418) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19424) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19419) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19420) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19421) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19422) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19425) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19426) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19478) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19476) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19427) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19436) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19437) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19438) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19439) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19440) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19443) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19479) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19477) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19456) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19457) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19458) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19464) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19459) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19460) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19461) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19480) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19369) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19370) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19371) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19372) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemGate(19367) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemGate(19396) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemFacade(19397) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPlug(19398) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1523) owned by BuildCraft|Transport 2014-08-17 22:04:02 [FINEST] [buildCraft|Transport] Sent event FMLPreInitializationEvent to mod BuildCraft|Transport 2014-08-17 22:04:02 [FINEST] [buildCraft|Silicon] Sending event FMLPreInitializationEvent to mod BuildCraft|Silicon 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1516) owned by BuildCraft|Silicon 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.silicon.ItemLaserTable(1517) owned by BuildCraft|Silicon 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemRedstoneChipset(19373) owned by BuildCraft|Silicon 2014-08-17 22:04:02 [FINEST] [buildCraft|Silicon] Sent event FMLPreInitializationEvent to mod BuildCraft|Silicon 2014-08-17 22:04:02 [FINEST] [CalclaviaCore] Sending event FMLPreInitializationEvent to mod CalclaviaCore 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item calclavia.lib.prefab.item.ItemBlockTooltip(3972) owned by CalclaviaCore 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item calclavia.lib.prefab.item.ItemBlockTooltip(3973) owned by CalclaviaCore 2014-08-17 22:04:02 [FINE] [fml.ItemTracker] Adding item calclavia.lib.prefab.item.ItemBlockMetadata(3974) owned by CalclaviaCore 2014-08-17 22:04:03 [iNFO] [sTDOUT] [universal Electricity] Injected universalelectricity.core.asm.template.tile.TemplateICTile API into: calclavia/lib/prefab/tile/TileElectrical 2014-08-17 22:04:03 [iNFO] [sTDOUT] [universal Electricity] Injected universalelectricity.core.asm.template.tile.TemplateBCTile API into: calclavia/lib/prefab/tile/TileElectrical 2014-08-17 22:04:03 [iNFO] [sTDOUT] [universal Electricity] Injected universalelectricity.core.asm.template.tile.TemplateTETile API into: calclavia/lib/prefab/tile/TileElectrical 2014-08-17 22:04:03 [iNFO] [sTDOUT] subProxy list: [] 2014-08-17 22:04:03 [FINEST] [CalclaviaCore] Sent event FMLPreInitializationEvent to mod CalclaviaCore 2014-08-17 22:04:03 [FINEST] [CoFHLoot] Sending event FMLPreInitializationEvent to mod CoFHLoot 2014-08-17 22:04:03 [FINEST] [CoFHLoot] Sent event FMLPreInitializationEvent to mod CoFHLoot 2014-08-17 22:04:03 [FINEST] [CoFHMasquerade] Sending event FMLPreInitializationEvent to mod CoFHMasquerade 2014-08-17 22:04:03 [FINEST] [CoFHMasquerade] Sent event FMLPreInitializationEvent to mod CoFHMasquerade 2014-08-17 22:04:03 [FINEST] [CoFHSocial] Sending event FMLPreInitializationEvent to mod CoFHSocial 2014-08-17 22:04:03 [FINEST] [CoFHSocial] Sent event FMLPreInitializationEvent to mod CoFHSocial 2014-08-17 22:04:03 [FINEST] [CoFHWorld] Sending event FMLPreInitializationEvent to mod CoFHWorld 2014-08-17 22:04:03 [FINEST] [CoFHWorld] Sent event FMLPreInitializationEvent to mod CoFHWorld 2014-08-17 22:04:03 [FINEST] [CustomSpawner] Sending event FMLPreInitializationEvent to mod CustomSpawner 2014-08-17 22:04:03 [FINEST] [CustomSpawner] Sent event FMLPreInitializationEvent to mod CustomSpawner 2014-08-17 22:04:03 [FINEST] [EnderStorage] Sending event FMLPreInitializationEvent to mod EnderStorage 2014-08-17 22:04:03 [FINER] [ForgeModLoader] [biomesOPlenty] Using the latest version [1.2.1] for Minecraft 1.6.4 2014-08-17 22:04:03 [FINEST] [EnderStorage] Sent event FMLPreInitializationEvent to mod EnderStorage 2014-08-17 22:04:03 [FINEST] [Railcraft] Sending event FMLPreInitializationEvent to mod Railcraft 2014-08-17 22:04:03 [FINE] [Railcraft] Pre-Init Phase 2014-08-17 22:04:05 [FINER] [Railcraft] Pre-Init Start: ModuleCore 2014-08-17 22:04:05 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(490) owned by Railcraft 2014-08-17 22:04:05 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.fluids.ItemBucketRailcraft(7790) owned by Railcraft 2014-08-17 22:04:05 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(491) owned by Railcraft 2014-08-17 22:04:05 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.fluids.ItemBucketRailcraft(7795) owned by Railcraft 2014-08-17 22:04:05 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity ItemFireproof as Railcraft.ItemFireproof 2014-08-17 22:04:05 [FINER] [Railcraft] Pre-Init Complete: ModuleCore 2014-08-17 22:04:05 [FINER] [Railcraft] Pre-Init Start: ModuleAutomation 2014-08-17 22:04:05 [FINER] [Railcraft] Pre-Init Complete: ModuleAutomation 2014-08-17 22:04:05 [FINER] [Railcraft] Init-First Start: ModuleCore 2014-08-17 22:04:05 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemCrowbar(7817) owned by Railcraft 2014-08-17 22:04:05 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemCrowbarReinforced(7819) owned by Railcraft 2014-08-17 22:04:05 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemMagnifyingGlass(7820) owned by Railcraft 2014-08-17 22:04:05 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemSteelShears(7825) owned by Railcraft 2014-08-17 22:04:05 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemSteelSword(7827) owned by Railcraft 2014-08-17 22:04:05 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemSteelShovel(7826) owned by Railcraft 2014-08-17 22:04:05 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemSteelPickaxe(7824) owned by Railcraft 2014-08-17 22:04:05 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemSteelAxe(7822) owned by Railcraft 2014-08-17 22:04:05 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemSteelHoe(7823) owned by Railcraft 2014-08-17 22:04:05 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemSteelArmor(7759) owned by Railcraft 2014-08-17 22:04:05 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemSteelArmor(7761) owned by Railcraft 2014-08-17 22:04:05 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemSteelArmor(7760) owned by Railcraft 2014-08-17 22:04:05 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemSteelArmor(7758) owned by Railcraft 2014-08-17 22:04:05 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemOveralls(7757) owned by Railcraft 2014-08-17 22:04:05 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemNugget(7799) owned by Railcraft 2014-08-17 22:04:05 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemIngot(7798) owned by Railcraft 2014-08-17 22:04:06 [WARNING] [buildcraft] Unable to read from remote version authority. 2014-08-17 22:04:06 [WARNING] [buildcraft] java.io.FileNotFoundException: https://dl.dropboxusercontent.com/u/38558957/Minecraft/Buildcraft/version.txt 2014-08-17 22:04:06 [iNFO] [buildcraft] Version check attempt 2 failed, trying again in 10 seconds 2014-08-17 22:04:06 [iNFO] [fml.ItemTracker] The mod Railcraft is overwriting existing item at 328 (net.minecraft.item.ItemMinecart from Minecraft) with mods.railcraft.common.carts.ItemCartVanilla 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemCartVanilla(328) owned by Railcraft 2014-08-17 22:04:06 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity railcraft.cart.basic as Railcraft.railcraft.cart.basic 2014-08-17 22:04:06 [iNFO] [fml.ItemTracker] The mod Railcraft is overwriting existing item at 342 (net.minecraft.item.ItemMinecart from Minecraft) with mods.railcraft.common.carts.ItemCartVanilla 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemCartVanilla(342) owned by Railcraft 2014-08-17 22:04:06 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity railcraft.cart.chest as Railcraft.railcraft.cart.chest 2014-08-17 22:04:06 [iNFO] [fml.ItemTracker] The mod Railcraft is overwriting existing item at 343 (net.minecraft.item.ItemMinecart from Minecraft) with mods.railcraft.common.carts.ItemCartVanilla 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemCartVanilla(343) owned by Railcraft 2014-08-17 22:04:06 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity railcraft.cart.furnace as Railcraft.railcraft.cart.furnace 2014-08-17 22:04:06 [iNFO] [fml.ItemTracker] The mod Railcraft is overwriting existing item at 407 (net.minecraft.item.ItemMinecart from Minecraft) with mods.railcraft.common.carts.ItemCartVanilla 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemCartVanilla(407) owned by Railcraft 2014-08-17 22:04:06 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity railcraft.cart.tnt as Railcraft.railcraft.cart.tnt 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemRail(7803) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemTie(7807) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.fluids.ItemFluidContainer(7789) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.fluids.ItemFluidContainer(7791) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.fluids.ItemFluidContainer(7794) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.fluids.ItemFluidContainer(7793) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.fluids.ItemFluidContainer(7792) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemRailcraft(7805) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemRailbed(7804) owned by Railcraft 2014-08-17 22:04:06 [FINER] [Railcraft] Init-First Complete: ModuleCore 2014-08-17 22:04:06 [FINER] [Railcraft] Init-First Start: ModuleFactory 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.aesthetics.cube.ItemCube(457) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemRailcraft(7796) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.anvil.ItemAnvilBlock(478) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.machine.ItemMachine(451) owned by Railcraft 2014-08-17 22:04:06 [FINEST] [Railcraft] Adding Coke Oven recipe: net.minecraft.item.ItemCoal, 263, 0 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemPlate(7802) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemDust(7783) owned by Railcraft 2014-08-17 22:04:06 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockSteel, id=457 meta=2 2014-08-17 22:04:06 [FINER] [Railcraft] Init-First Complete: ModuleFactory 2014-08-17 22:04:06 [FINER] [Railcraft] Init-First Start: ModuleExtras 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.tracks.ItemTrack(454) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(455) owned by Railcraft 2014-08-17 22:04:06 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity railcraft.cart.tnt.wood as Railcraft.railcraft.cart.tnt.wood 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemCart(7779) owned by Railcraft 2014-08-17 22:04:06 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity railcraft.cart.work as Railcraft.railcraft.cart.work 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemCart(7782) owned by Railcraft 2014-08-17 22:04:06 [FINER] [Railcraft] Init-First Complete: ModuleExtras 2014-08-17 22:04:06 [FINER] [Railcraft] Init-First Start: ModuleTrack 2014-08-17 22:04:06 [FINER] [Railcraft] Init-First Complete: ModuleTrack 2014-08-17 22:04:06 [FINER] [Railcraft] Init-First Start: ModuleTracksHighSpeed 2014-08-17 22:04:06 [FINER] [Railcraft] Init-First Complete: ModuleTracksHighSpeed 2014-08-17 22:04:06 [FINER] [Railcraft] Init-First Start: ModuleTracksWood 2014-08-17 22:04:06 [FINER] [Railcraft] Init-First Complete: ModuleTracksWood 2014-08-17 22:04:06 [FINER] [Railcraft] Init-First Start: ModuleTracksReinforced 2014-08-17 22:04:06 [FINER] [Railcraft] Init-First Complete: ModuleTracksReinforced 2014-08-17 22:04:06 [FINER] [Railcraft] Init-First Start: ModuleSignals 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.signals.ItemSignal(456) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.signals.ItemSignalBlockSurveyor(7828) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.signals.ItemSignalTuner(7821) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemCircuit(7800) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemRailcraft(7806) owned by Railcraft 2014-08-17 22:04:06 [FINER] [Railcraft] Init-First Complete: ModuleSignals 2014-08-17 22:04:06 [FINER] [Railcraft] Init-First Start: ModuleStructures 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.aesthetics.post.ItemPost(459) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.aesthetics.post.ItemPostMetal(460) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.aesthetics.wall.ItemWall(461) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.aesthetics.wall.ItemWall(463) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.aesthetics.stairs.ItemStair(464) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.aesthetics.slab.ItemSlab(465) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.aesthetics.glass.ItemStrengthGlass(474) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.aesthetics.lamp.ItemStoneLamp(479) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.aesthetics.brick.ItemBrick(467) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.aesthetics.brick.ItemBrick(466) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.aesthetics.brick.ItemBrick(469) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.aesthetics.brick.ItemBrick(472) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.aesthetics.brick.ItemBrick(471) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.aesthetics.brick.ItemBrick(470) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.aesthetics.brick.ItemBrick(468) owned by Railcraft 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.aesthetics.brick.ItemBrick(475) owned by Railcraft 2014-08-17 22:04:06 [FINER] [Railcraft] Init-First Complete: ModuleStructures 2014-08-17 22:04:06 [FINER] [Railcraft] Init-First Start: ModuleAutomation 2014-08-17 22:04:06 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.detector.ItemDetector(450) owned by Railcraft 2014-08-17 22:04:07 [iNFO] [Railcraft] An updated version of Railcraft is available from <http://railcraft.info>: 9.2.2.0 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.machine.ItemMachine(453) owned by Railcraft 2014-08-17 22:04:07 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity railcraft.cart.bore as Railcraft.railcraft.cart.bore 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemTunnelBore(7769) owned by Railcraft 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemBoreHeadDiamond(7814) owned by Railcraft 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemBoreHeadSteel(7816) owned by Railcraft 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemBoreHeadIron(7815) owned by Railcraft 2014-08-17 22:04:07 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity railcraft.cart.track.relayer as Railcraft.railcraft.cart.track.relayer 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemCart(7780) owned by Railcraft 2014-08-17 22:04:07 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity railcraft.cart.undercutter as Railcraft.railcraft.cart.undercutter 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemCart(7781) owned by Railcraft 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Complete: ModuleAutomation 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Start: ModuleTransport 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.machine.ItemMachine(452) owned by Railcraft 2014-08-17 22:04:07 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity railcraft.cart.tank as Railcraft.railcraft.cart.tank 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemCart(7777) owned by Railcraft 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Complete: ModuleTransport 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Start: ModuleIC2 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemRailcraft(7797) owned by Railcraft 2014-08-17 22:04:07 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity railcraft.cart.energy.batbox as Railcraft.railcraft.cart.energy.batbox 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemCart(7770) owned by Railcraft 2014-08-17 22:04:07 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity railcraft.cart.energy.mfe as Railcraft.railcraft.cart.energy.mfe 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemCart(7772) owned by Railcraft 2014-08-17 22:04:07 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity railcraft.cart.energy.cesu as Railcraft.railcraft.cart.energy.cesu 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemCart(7771) owned by Railcraft 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemRailcraft(7810) owned by Railcraft 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemRailcraft(7809) owned by Railcraft 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemRailcraft(7808) owned by Railcraft 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Complete: ModuleIC2 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Start: ModuleThaumcraft 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.plugins.thaumcraft.ItemCrowbarMagic(7818) owned by Railcraft 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Complete: ModuleThaumcraft 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Start: ModuleSteam 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemGear(7801) owned by Railcraft 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Complete: ModuleSteam 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Start: ModuleWorld 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.blocks.ore.ItemOre(458) owned by Railcraft 2014-08-17 22:04:07 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreSulfur, id=458 meta=0 2014-08-17 22:04:07 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreSaltpeter, id=458 meta=1 2014-08-17 22:04:07 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreDiamond, id=458 meta=2 2014-08-17 22:04:07 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreEmerald, id=458 meta=3 2014-08-17 22:04:07 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreLapis, id=458 meta=4 2014-08-17 22:04:07 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreFirestone, id=458 meta=5 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(462) owned by Railcraft 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Complete: ModuleWorld 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Start: ModuleChunkLoading 2014-08-17 22:04:07 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity railcraft.cart.anchor as Railcraft.railcraft.cart.anchor 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemCartAnchor(7766) owned by Railcraft 2014-08-17 22:04:07 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity railcraft.cart.anchor.personal as Railcraft.railcraft.cart.anchor.personal 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemCartAnchor(7768) owned by Railcraft 2014-08-17 22:04:07 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity railcraft.cart.anchor.admin as Railcraft.railcraft.cart.anchor.admin 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemCartAnchor(7767) owned by Railcraft 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Complete: ModuleChunkLoading 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Start: ModuleSeasonal 2014-08-17 22:04:07 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity railcraft.cart.pumpkin as Railcraft.railcraft.cart.pumpkin 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemCart(7776) owned by Railcraft 2014-08-17 22:04:07 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity railcraft.cart.gift as Railcraft.railcraft.cart.gift 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemCart(7774) owned by Railcraft 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Complete: ModuleSeasonal 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Start: ModuleTrain 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Complete: ModuleTrain 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Start: ModuleLocomotives 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemWhistleTuner(7829) owned by Railcraft 2014-08-17 22:04:07 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity railcraft.cart.loco.steam as Railcraft.railcraft.cart.loco.steam 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.carts.ItemLocomotive(7775) owned by Railcraft 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Complete: ModuleLocomotives 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Start: ModuleRouting 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemRoutingTable(7811) owned by Railcraft 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemTicketGold(7813) owned by Railcraft 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemTicket(7812) owned by Railcraft 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Complete: ModuleRouting 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Start: ModuleEmblem 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.emblems.ItemEmblem(7784) owned by Railcraft 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Complete: ModuleEmblem 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Start: ModuleMagic 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(477) owned by Railcraft 2014-08-17 22:04:07 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity ItemFirestone as Railcraft.ItemFirestone 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.firestone.ItemFirestoneRaw(7787) owned by Railcraft 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.firestone.ItemFirestoneCut(7786) owned by Railcraft 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.firestone.ItemFirestoneRefined(7788) owned by Railcraft 2014-08-17 22:04:07 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.firestone.ItemFirestoneCracked(7785) owned by Railcraft 2014-08-17 22:04:07 [FINER] [Railcraft] Init-First Complete: ModuleMagic 2014-08-17 22:04:07 [FINEST] [Railcraft] Sent event FMLPreInitializationEvent to mod Railcraft 2014-08-17 22:04:07 [FINEST] [TwilightForest] Sending event FMLPreInitializationEvent to mod TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFMeta(2163) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFMeta(2170) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFMeta(2164) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2160) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2171) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2162) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFMeta(2165) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFMeta(2166) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFMeta(2167) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2168) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFPlant(2169) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2172) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFMeta(2173) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFMeta(2174) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFMeta(2175) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2178) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFMeta(2176) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFMeta(2177) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFMeta(2179) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFMeta(2180) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFMeta(2181) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFMeta(2183) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFMeta(2184) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFMeta(2182) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFMeta(2185) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFMeta(2186) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemBlockTFMeta(2187) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTF(27957) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFNagaArmor(27958) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFNagaArmor(27959) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFTwilightWand(27960) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFLifeDrainWand(27961) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFZombieWand(27962) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFOreMeter(27964) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFMagicMap(27965) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFMazeMap(27966) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFMazeMap(27967) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTF(27968) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTF(27969) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTF(27970) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTF(27972) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTF(27973) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTF(27974) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFIronwoodArmor(27975) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFIronwoodArmor(27976) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFIronwoodArmor(27977) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFIronwoodArmor(27978) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFIronwoodSword(27979) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFIronwoodShovel(27980) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFIronwoodPick(27981) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFIronwoodAxe(27982) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFIronwoodHoe(27983) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTF(27984) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFSpawnEgg(27985) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFFood(27986) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFFood(27987) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFFood(27988) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTF(27989) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFTrophy(27990) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTF(27991) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFFieryArmor(27992) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFFieryArmor(27993) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFFieryArmor(27994) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFFieryArmor(27995) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFFierySword(27996) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFFieryPick(27997) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTF(27998) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFSteeleafArmor(27999) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFSteeleafArmor(28000) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFSteeleafArmor(28001) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFSteeleafArmor(28002) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFSteeleafSword(28003) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFSteeleafShovel(28004) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFSteeleafPick(28005) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFSteeleafAxe(28006) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFSteeleafHoe(28007) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFMinotaurAxe(28008) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFMazebreakerPick(28009) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFTransformPowder(28010) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFFood(28011) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFFood(28012) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFFood(28013) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFFood(28014) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFEmptyMagicMap(28015) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFEmptyMazeMap(28016) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFEmptyMazeMap(28017) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFOreMagnet(28018) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFCrumbleHorn(28019) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFPeacockFan(28020) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFMoonwormQueen(28021) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFCharm(28022) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFCharm(28023) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFCharm(28026) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFCharm(28024) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFCharm(28025) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFTowerKey(28027) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTF(28028) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTF(28029) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFFood(28030) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTF(28031) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTF(28032) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTF(28033) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFKnightlyArmor(28034) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFKnightlyArmor(28035) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFKnightlyArmor(28036) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFKnightlyArmor(28037) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFKnightlySword(28038) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFKnightlyPick(28039) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFKnightlyAxe(28040) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFPhantomArmor(28041) owned by TwilightForest 2014-08-17 22:04:08 [FINE] [fml.ItemTracker] Adding item twilightforest.item.ItemTFPhantomArmor(28042) owned by TwilightForest 2014-08-17 22:04:08 [FINEST] [TwilightForest] Sent event FMLPreInitializationEvent to mod TwilightForest 2014-08-17 22:04:08 [FINEST] [DartCraft] Sending event FMLPreInitializationEvent to mod DartCraft 2014-08-17 22:04:08 [iNFO] [DartCraft] DartCraft Beta 0.2.20 Initializing. 2014-08-17 22:04:08 [iNFO] [DartCraft] by: bluedart 2014-08-17 22:04:09 [FINEST] [DartCraft] Sent event FMLPreInitializationEvent to mod DartCraft 2014-08-17 22:04:09 [FINEST] [MoCreatures] Sending event FMLPreInitializationEvent to mod MoCreatures 2014-08-17 22:04:09 [FINEST] [MoCreatures] Sent event FMLPreInitializationEvent to mod MoCreatures 2014-08-17 22:04:09 [FINEST] [Tombenpotter's Electro-Magic Tools] Sending event FMLPreInitializationEvent to mod Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:09 [iNFO] [sTDOUT] [EMT] Electro-Magic Tools : Successful PreInit 2014-08-17 22:04:09 [FINEST] [Tombenpotter's Electro-Magic Tools] Sent event FMLPreInitializationEvent to mod Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:09 [FINEST] [FlansMod] Sending event FMLPreInitializationEvent to mod FlansMod 2014-08-17 22:04:09 [iNFO] [sTDOUT] Flan's Mod : Preinitializing Flan's mod. 2014-08-17 22:04:09 [iNFO] [sTDOUT] Flan's Mod : Preinitializing complete. 2014-08-17 22:04:09 [FINEST] [FlansMod] Sent event FMLPreInitializationEvent to mod FlansMod 2014-08-17 22:04:09 [FINEST] [ThaumicTinkerer] Sending event FMLPreInitializationEvent to mod ThaumicTinkerer 2014-08-17 22:04:09 [iNFO] [sTDOUT] Registering Thaumic Tinkerer's automatic crash reporter 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.quartz.ItemDarkQuartzBlock(2615) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2618) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.quartz.ItemDarkQuartzSlab(2616) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.quartz.ItemDarkQuartzSlab(2617) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2619) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2620) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2621) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2622) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.ItemBlockMagnet(2624) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2625) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2626) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2627) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2628) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2629) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2630) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2631) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2632) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2817) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.ItemBlockWarpGate(2815) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2816) owned by ThaumicTinkerer 2014-08-17 22:04:09 [iNFO] [sTDOUT] Registered micro material: tile.blockCustomOre 2014-08-17 22:04:09 [iNFO] [sTDOUT] Registered micro material: tile.blockCustomOre_7 2014-08-17 22:04:09 [iNFO] [sTDOUT] Registered micro material: tile.blockWoodenDevice_6 2014-08-17 22:04:09 [iNFO] [sTDOUT] Registered micro material: tile.blockWoodenDevice_7 2014-08-17 22:04:09 [iNFO] [sTDOUT] Registered micro material: tile.blockMagicalLog 2014-08-17 22:04:09 [iNFO] [sTDOUT] Registered micro material: tile.blockMagicalLeaves 2014-08-17 22:04:09 [iNFO] [sTDOUT] Registered micro material: tile.blockCosmeticOpaque 2014-08-17 22:04:09 [iNFO] [sTDOUT] Registered micro material: tile.blockCosmeticSolid 2014-08-17 22:04:09 [iNFO] [sTDOUT] Registered micro material: tile.blockCosmeticSolid_1 2014-08-17 22:04:09 [iNFO] [sTDOUT] Registered micro material: tile.blockCosmeticSolid_2 2014-08-17 22:04:09 [iNFO] [sTDOUT] Registered micro material: tile.blockCosmeticSolid_3 2014-08-17 22:04:09 [iNFO] [sTDOUT] Registered micro material: tile.blockCosmeticSolid_4 2014-08-17 22:04:09 [iNFO] [sTDOUT] Registered micro material: tile.blockCosmeticSolid_5 2014-08-17 22:04:09 [iNFO] [sTDOUT] Registered micro material: tile.blockCosmeticSolid_6 2014-08-17 22:04:09 [iNFO] [sTDOUT] Registered micro material: tile.ttinkerer:darkQuartz 2014-08-17 22:04:09 [iNFO] [sTDOUT] Registered micro material: tile.ttinkerer:darkQuartz_1 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.ItemGas(22408) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.ItemMod(22406) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.ItemConnector(22407) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.ItemGas(22409) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.ItemGasRemover(22410) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.ItemSpellCloth(22411) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.foci.ItemFocusFlight(22412) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.foci.ItemFocusDislocation(22413) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.ItemCleansingTalisman(22414) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.ItemBrightNitor(22415) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.foci.ItemFocusTelekinesis(22416) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.ItemSoulMould(22417) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.ItemXPTalisman(22418) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.foci.ItemFocusSmelt(22419) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.foci.ItemFocusHeal(22420) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.foci.ItemFocusEnderChest(22421) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.ItemBloodSword(22422) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.ItemRevealingHelm(22423) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.ItemInfusedInkwell(22424) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.foci.ItemFocusDeflect(22425) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.ItemShareBook(22426) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.ItemKamiResource(23406) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.armor.ItemIchorclothArmor(23407) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.armor.ItemIchorclothArmor(23408) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.armor.ItemIchorclothArmor(23409) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.armor.ItemIchorclothArmor(23410) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.armor.ItemGemHelm(23411) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.armor.ItemGemChest(23412) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.armor.ItemGemLegs(23413) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.armor.ItemGemBoots(23414) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.ItemCatAmulet(23415) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.tool.ItemIchorPick(23416) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.tool.ItemIchorShovel(23417) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.tool.ItemIchorAxe(23418) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.tool.ItemIchorSword(23419) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.tool.ItemIchorPickAdv(23420) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.tool.ItemIchorShovelAdv(23421) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.tool.ItemIchorAxeAdv(23422) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.tool.ItemIchorSwordAdv(23423) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.ItemIchorPouch(23424) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.ItemBlockTalisman(23425) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.ItemPlacementMirror(23426) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.foci.ItemFocusShadowbeam(23427) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINEST] [ForgeModLoader] Automatically registered mod ThaumicTinkerer entity ShadowbeamStaffBeam as ThaumicTinkerer.ShadowbeamStaffBeam 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.foci.ItemFocusXPDrain(23428) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.ItemProtoclay(23429) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.ItemSkyPearl(23430) owned by ThaumicTinkerer 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item vazkii.tinkerer.common.item.kami.foci.ItemFocusRecall(23431) owned by ThaumicTinkerer 2014-08-17 22:04:09 [iNFO] [Minecraft-Server] ComputerCraftAPI: ComputerCraft not found. 2014-08-17 22:04:09 [iNFO] [sTDOUT] ComputerCraftAPI: CCTurtle not found. 2014-08-17 22:04:09 [FINEST] [ThaumicTinkerer] Sent event FMLPreInitializationEvent to mod ThaumicTinkerer 2014-08-17 22:04:09 [FINEST] [ForbiddenMagic] Sending event FMLPreInitializationEvent to mod ForbiddenMagic 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item com.spiteful.forbidden.items.ItemDeadlyShard(9598) owned by ForbiddenMagic 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item com.spiteful.forbidden.items.ItemGluttonyShard(9612) owned by ForbiddenMagic 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item com.spiteful.forbidden.items.ItemTaintShovel(9601) owned by ForbiddenMagic 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item com.spiteful.forbidden.items.ItemTaintPickaxe(9604) owned by ForbiddenMagic 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item com.spiteful.forbidden.items.ItemArcaneCake(9600) owned by ForbiddenMagic 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item com.spiteful.forbidden.items.ItemSkullAxe(9599) owned by ForbiddenMagic 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item com.spiteful.forbidden.items.ItemMorphPickaxe(9607) owned by ForbiddenMagic 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item com.spiteful.forbidden.items.ItemMorphSword(9608) owned by ForbiddenMagic 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item com.spiteful.forbidden.items.ItemMorphShovel(9609) owned by ForbiddenMagic 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item com.spiteful.forbidden.items.ItemMorphAxe(9610) owned by ForbiddenMagic 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item com.spiteful.forbidden.items.ItemMobCrystal(9605) owned by ForbiddenMagic 2014-08-17 22:04:09 [FINE] [fml.ItemTracker] Adding item com.spiteful.forbidden.items.ItemDiabolistFork(9606) owned by ForbiddenMagic 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item com.spiteful.forbidden.items.wands.ItemWandCores(9602) owned by ForbiddenMagic 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item com.spiteful.forbidden.items.wands.ItemWandCaps(9611) owned by ForbiddenMagic 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item com.spiteful.forbidden.items.ItemResource(9603) owned by ForbiddenMagic 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item com.spiteful.forbidden.items.ItemBloodwell(9613) owned by ForbiddenMagic 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item com.spiteful.forbidden.items.ItemDivineOrb(9616) owned by ForbiddenMagic 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item com.spiteful.forbidden.items.ItemCrystalwell(9614) owned by ForbiddenMagic 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item com.spiteful.forbidden.items.ItemRidingCrop(9615) owned by ForbiddenMagic 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item com.spiteful.forbidden.items.ItemDivinewell(9617) owned by ForbiddenMagic 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3000) owned by ForbiddenMagic 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3002) owned by ForbiddenMagic 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3001) owned by ForbiddenMagic 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3003) owned by ForbiddenMagic 2014-08-17 22:04:10 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockNetherStar, id=3003 meta=0 2014-08-17 22:04:10 [FINEST] [ForbiddenMagic] Sent event FMLPreInitializationEvent to mod ForbiddenMagic 2014-08-17 22:04:10 [FINEST] [GalacticraftCore] Sending event FMLPreInitializationEvent to mod GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.moon.items.GCMoonItemBlock(3863) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3862) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.moon.items.GCMoonItemCheese(10107) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.moon.items.GCMoonItemReed(10109) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.moon.items.GCMoonItemRawIron(10108) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.moon.items.GCMoonItem(10110) owned by GalacticraftCore 2014-08-17 22:04:10 [iNFO] [sTDOUT] Galacticraft successfully injected bytecode into: micdoodle8/mods/galacticraft/core/tile/GCCoreTileEntityUniversalElectrical (5 / 1) 2014-08-17 22:04:10 [iNFO] [sTDOUT] Galacticraft successfully injected bytecode into: micdoodle8/mods/galacticraft/core/tile/GCCoreTileEntityElectric (1 / 1) 2014-08-17 22:04:10 [iNFO] [sTDOUT] Galacticraft successfully injected bytecode into: micdoodle8/mods/galacticraft/core/tile/GCCoreTileEntityUniversalConductor (3 / 1) 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3381) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlockLandingPad(3860) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3859) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3858) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3857) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3861) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3856) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3855) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3854) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3370) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3371) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3373) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3374) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3853) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3852) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlockBase(3372) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3851) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3380) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3378) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3850) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlockEnclosedBlock(3379) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3849) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlockCargoLoader(3848) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3382) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlockSolar(3383) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlockMachine(3847) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlockMachine(3364) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlockAluminumWire(3846) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBlock(3384) owned by GalacticraftCore 2014-08-17 22:04:10 [iNFO] [sTDOUT] Galacticraft successfully injected bytecode into: micdoodle8/mods/galacticraft/core/items/GCCoreItemWrench (1 / 1) 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemOxygenTank(10112) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemOxygenTank(10113) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemOxygenTank(10114) owned by GalacticraftCore 2014-08-17 22:04:10 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemOxygenMask(10115) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemSpaceship(10111) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemSensorGlasses(10116) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemPickaxe(10142) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemAxe(10145) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemHoe(10144) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemSpade(10143) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemSword(10141) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemArmor(10146) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemArmor(10147) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemArmor(10148) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemArmor(10149) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemCanister(10117) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItem(10118) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItem(10120) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItem(10119) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBow(10121) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItem(10123) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemRocketEngine(10122) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItem(10125) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItem(10124) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItem(10126) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBuggy(10127) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemFlag(10129) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemOxygenGear(10130) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemParachute(10132) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItem(10131) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemFuelCanister(10135) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItem(10128) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemOilCanister(10134) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemOilExtractor(10133) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemSchematic(10138) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemFuel(10136) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemKey(10139) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBuggyMaterial(10140) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemKnowledgeBook(10137) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBasic(10150) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemBattery(14226) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemInfiniteBattery(14227) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemMeteorChunk(10151) owned by GalacticraftCore 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.core.items.GCCoreItemWrench(10152) owned by GalacticraftCore 2014-08-17 22:04:11 [FINEST] [GalacticraftCore] Sent event FMLPreInitializationEvent to mod GalacticraftCore 2014-08-17 22:04:11 [FINEST] [GalacticraftMars] Sending event FMLPreInitializationEvent to mod GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.mars.items.GCMarsItemBlock(3390) owned by GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3391) owned by GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3392) owned by GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.mars.items.GCMarsItemBlockRock(3393) owned by GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3394) owned by GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.mars.items.GCMarsItemBlockMachine(3395) owned by GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3396) owned by GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.mars.items.GCMarsItemBlockTintedGlassPane(3397) owned by GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.mars.items.GCMarsItem(10161) owned by GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.mars.items.GCMarsItemPickaxe(10164) owned by GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.mars.items.GCMarsItemAxe(10167) owned by GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.mars.items.GCMarsItemHoe(10166) owned by GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.mars.items.GCMarsItemSpade(10165) owned by GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.mars.items.GCMarsItemSword(10163) owned by GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.mars.items.GCMarsItemArmor(10168) owned by GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.mars.items.GCMarsItemArmor(10169) owned by GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.mars.items.GCMarsItemArmor(10170) owned by GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.mars.items.GCMarsItemArmor(10171) owned by GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.mars.items.GCMarsItemSpaceshipTier2(10162) owned by GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.mars.items.GCMarsItemKey(10172) owned by GalacticraftMars 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item micdoodle8.mods.galacticraft.mars.items.GCMarsItemSchematic(10173) owned by GalacticraftMars 2014-08-17 22:04:11 [FINEST] [GalacticraftMars] Sent event FMLPreInitializationEvent to mod GalacticraftMars 2014-08-17 22:04:11 [FINEST] [GraviSuite] Sending event FMLPreInitializationEvent to mod GraviSuite 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item gravisuite.ItemGraviChestPlate(30473) owned by GraviSuite 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item gravisuite.ItemAdvancedNanoChestPlate(30483) owned by GraviSuite 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item gravisuite.ItemUltimateLappack(30474) owned by GraviSuite 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item gravisuite.ItemAdvancedLappack(30480) owned by GraviSuite 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item gravisuite.ItemAdvancedJetPack(30481) owned by GraviSuite 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item gravisuite.ItemVajra(30477) owned by GraviSuite 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item gravisuite.ItemGraviTool(30482) owned by GraviSuite 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item gravisuite.ItemAdvDDrill(30478) owned by GraviSuite 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item gravisuite.ItemAdvChainsaw(30479) owned by GraviSuite 2014-08-17 22:04:11 [FINE] [fml.ItemTracker] Adding item gravisuite.ItemSimpleItems(30475) owned by GraviSuite 2014-08-17 22:04:11 [FINEST] [GraviSuite] Sent event FMLPreInitializationEvent to mod GraviSuite 2014-08-17 22:04:11 [FINEST] [HatStand] Sending event FMLPreInitializationEvent to mod HatStand 2014-08-17 22:04:11 [FINEST] [HatStand] Sent event FMLPreInitializationEvent to mod HatStand 2014-08-17 22:04:11 [FINEST] [inventorytweaks] Sending event FMLPreInitializationEvent to mod inventorytweaks 2014-08-17 22:04:11 [FINEST] [inventorytweaks] Sent event FMLPreInitializationEvent to mod inventorytweaks 2014-08-17 22:04:11 [FINEST] [ironChest] Sending event FMLPreInitializationEvent to mod IronChest 2014-08-17 22:04:11 [FINE] [ironChest] Attempting to load the file version.properties from ironchest-universal-1.6.4-5.4.1.676.zip to locate a version number for IronChest 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item cpw.mods.ironchest.ItemChestChanger(19757) owned by IronChest 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item cpw.mods.ironchest.ItemChestChanger(19758) owned by IronChest 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item cpw.mods.ironchest.ItemChestChanger(19759) owned by IronChest 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item cpw.mods.ironchest.ItemChestChanger(19760) owned by IronChest 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item cpw.mods.ironchest.ItemChestChanger(19761) owned by IronChest 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item cpw.mods.ironchest.ItemChestChanger(19762) owned by IronChest 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item cpw.mods.ironchest.ItemChestChanger(19763) owned by IronChest 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item cpw.mods.ironchest.ItemChestChanger(19764) owned by IronChest 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item cpw.mods.ironchest.ItemChestChanger(19765) owned by IronChest 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item cpw.mods.ironchest.ItemIronChest(3967) owned by IronChest 2014-08-17 22:04:12 [FINEST] [ironChest] Sent event FMLPreInitializationEvent to mod IronChest 2014-08-17 22:04:12 [FINEST] [JABBA] Sending event FMLPreInitializationEvent to mod JABBA 2014-08-17 22:04:12 [FINEST] [JABBA] Sent event FMLPreInitializationEvent to mod JABBA 2014-08-17 22:04:12 [FINEST] [LogisticsPipes|Main] Sending event FMLPreInitializationEvent to mod LogisticsPipes|Main 2014-08-17 22:04:12 [FINE] [LogisticsPipes|Main] You are using a dev version. 2014-08-17 22:04:12 [FINE] [LogisticsPipes|Main] While the dev versions contain cutting edge features, they may also contain more bugs. 2014-08-17 22:04:12 [FINE] [LogisticsPipes|Main] Please report any you find to https://github.com/RS485/LogisticsPipes-Dev/issues 2014-08-17 22:04:12 [iNFO] [LogisticsPipes|Main] BlockGenericPipe was found with ID: 1513 2014-08-17 22:04:12 [iNFO] [LogisticsPipes|Main] LogisticsBlockGenericPipe was added at ID: 1513 2014-08-17 22:04:12 [FINEST] [LogisticsPipes|Main] Sent event FMLPreInitializationEvent to mod LogisticsPipes|Main 2014-08-17 22:04:12 [FINEST] [Mekanism] Sending event FMLPreInitializationEvent to mod Mekanism 2014-08-17 22:04:12 [FINEST] [Mekanism] Sent event FMLPreInitializationEvent to mod Mekanism 2014-08-17 22:04:12 [FINEST] [MekanismGenerators] Sending event FMLPreInitializationEvent to mod MekanismGenerators 2014-08-17 22:04:12 [FINEST] [MekanismGenerators] Sent event FMLPreInitializationEvent to mod MekanismGenerators 2014-08-17 22:04:12 [FINEST] [MekanismTools] Sending event FMLPreInitializationEvent to mod MekanismTools 2014-08-17 22:04:12 [FINEST] [MekanismTools] Sent event FMLPreInitializationEvent to mod MekanismTools 2014-08-17 22:04:12 [FINEST] [MFR Compat Forestry Trees] Sending event FMLPreInitializationEvent to mod MFR Compat Forestry Trees 2014-08-17 22:04:12 [FINEST] [MFR Compat Forestry Trees] Sent event FMLPreInitializationEvent to mod MFR Compat Forestry Trees 2014-08-17 22:04:12 [FINEST] [MFR Compat Extra Trees] Sending event FMLPreInitializationEvent to mod MFR Compat Extra Trees 2014-08-17 22:04:12 [FINEST] [MFR Compat Extra Trees] Sent event FMLPreInitializationEvent to mod MFR Compat Extra Trees 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded 2014-08-17 22:04:12 [iNFO] [sTDOUT] Adding runtime interfaces to powercrystals.minefactoryreloaded.tile.base.TileEntityFactoryInventory 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item powercrystals.minefactoryreloaded.item.ItemFactoryBucket(12252) owned by MineFactoryReloaded 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item powercrystals.minefactoryreloaded.item.ItemFactoryBucket(12253) owned by MineFactoryReloaded 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item powercrystals.minefactoryreloaded.item.ItemFactoryBucket(12254) owned by MineFactoryReloaded 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item powercrystals.minefactoryreloaded.item.ItemFactoryBucket(12266) owned by MineFactoryReloaded 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item powercrystals.minefactoryreloaded.item.ItemFactoryBucket(12285) owned by MineFactoryReloaded 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item powercrystals.minefactoryreloaded.item.ItemFactoryBucket(12286) owned by MineFactoryReloaded 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item powercrystals.minefactoryreloaded.item.ItemFactoryBucket(12290) owned by MineFactoryReloaded 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item powercrystals.minefactoryreloaded.item.ItemFactoryBucket(12291) owned by MineFactoryReloaded 2014-08-17 22:04:12 [iNFO] [fml.ItemTracker] The mod MineFactoryReloaded is overwriting existing item at 335 (net.minecraft.item.ItemBucketMilk from Minecraft) with powercrystals.minefactoryreloaded.item.ItemFactoryBucket 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item powercrystals.minefactoryreloaded.item.ItemFactoryBucket(335) owned by MineFactoryReloaded 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatAppliedEnergistics] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatAppliedEnergistics 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatAppliedEnergistics] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatAppliedEnergistics 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatAtum] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatAtum 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatAtum] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatAtum 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatBackTools] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatBackTools 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatBackTools] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatBackTools 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatBuildCraft] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatBuildCraft 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatBuildCraft] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatBuildCraft 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatChococraft] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatChococraft 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatChococraft] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatChococraft 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatExtraBiomes] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatExtraBiomes 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatExtraBiomes] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatExtraBiomes 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatForestry] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatForestry 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatForestry] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatForestry 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatForestryPre] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatForestryPre 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatForestryPre] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatForestryPre 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatForgeMicroblock] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatForgeMicroblock 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatForgeMicroblock] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatForgeMicroblock 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatIC2] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatIC2 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatIC2] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatIC2 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatMystcraft] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatMystcraft 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatMystcraft] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatMystcraft 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatPams] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatPams 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatPams] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatPams 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatProjRed] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatProjRed 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatProjRed] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatProjRed 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatRailcraft] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatRailcraft 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatRailcraft] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatRailcraft 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatRP2] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatRP2 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatRP2] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatRP2 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatSufficientBiomes] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatSufficientBiomes 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatSufficientBiomes] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatSufficientBiomes 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatThaumcraft] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatThaumcraft 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatThaumcraft] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatThaumcraft 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatThermalExpansion] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatThermalExpansion 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatThermalExpansion] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatThermalExpansion 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatTwilightForest] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatTwilightForest 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatTwilightForest] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatTwilightForest 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatVanilla] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatVanilla 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatVanilla] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatVanilla 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatXyCraft] Sending event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatXyCraft 2014-08-17 22:04:12 [FINEST] [MineFactoryReloaded|CompatXyCraft] Sent event FMLPreInitializationEvent to mod MineFactoryReloaded|CompatXyCraft 2014-08-17 22:04:12 [FINEST] [ResonantEngine] Sending event FMLPreInitializationEvent to mod ResonantEngine 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item resonant.lib.prefab.item.ItemBlockTooltip(4040) owned by ResonantEngine 2014-08-17 22:04:12 [iNFO] [sTDOUT] subProxy list: [] 2014-08-17 22:04:12 [FINEST] [ResonantEngine] Sent event FMLPreInitializationEvent to mod ResonantEngine 2014-08-17 22:04:12 [FINEST] [MFFS] Sending event FMLPreInitializationEvent to mod MFFS 2014-08-17 22:04:12 [iNFO] [ForgeModLoader] [Modstats] Config loaded. allowUpdates: true, betaNotification: false, strict: false 2014-08-17 22:04:12 [iNFO] [sTDOUT] [universal Electricity] Injected universalelectricity.core.asm.template.tile.TemplateICTile API into: mffs/base/TileMFFSElectrical 2014-08-17 22:04:12 [iNFO] [sTDOUT] [universal Electricity] Injected universalelectricity.core.asm.template.tile.TemplateBCTile API into: mffs/base/TileMFFSElectrical 2014-08-17 22:04:12 [iNFO] [sTDOUT] [universal Electricity] Injected universalelectricity.core.asm.template.tile.TemplateTETile API into: mffs/base/TileMFFSElectrical 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.ItemRemoteController(11386) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.base.ItemMFFS(11387) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.mode.ItemModeCube(11388) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.mode.ItemModeSphere(11389) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.mode.ItemModeTube(11390) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.mode.ItemModePyramid(11391) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.mode.ItemModeCylinder(11392) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.mode.ItemModeCustom(11393) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.ItemModule(11394) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.ItemModule(11395) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.ItemModule(11396) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.ItemModule(11397) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.ItemModule(11398) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.projector.ItemModuleFusion(11399) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.projector.ItemModuleDome(11400) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.ItemModule(11401) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.projector.ItemModuleDisintegration(11402) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.projector.ItemModuleShock(11403) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.ItemModule(11404) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.projector.ItemModuleSponge(11405) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.projector.ItemModuleStablize(11406) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.card.ItemCard(11407) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.card.ItemCardFrequency(11408) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.card.ItemCardLink(11409) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.card.ItemCardID(11410) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.card.ItemCardInfinite(11411) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.interdiction.ItemModuleAntiFriendly(11412) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.interdiction.ItemModuleAntiHostile(11413) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.interdiction.ItemModuleAntiPersonnel(11414) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.interdiction.ItemModuleConfiscate(11415) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.interdiction.ItemModuleWarn(11416) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.interdiction.ItemModuleInterdictionMatrix(11417) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.interdiction.ItemModuleInterdictionMatrix(11418) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.interdiction.ItemModuleInterdictionMatrix(11419) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.ItemModule(11420) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.ItemModule(11421) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.ItemModule(11422) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.projector.ItemModuleRepulsion(11423) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.ItemModule(11424) owned by MFFS 2014-08-17 22:04:12 [FINE] [fml.ItemTracker] Adding item mffs.item.module.projector.ItemModuleArray(11425) owned by MFFS 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1680) owned by MFFS 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1681) owned by MFFS 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1682) owned by MFFS 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1683) owned by MFFS 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1684) owned by MFFS 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1685) owned by MFFS 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1686) owned by MFFS 2014-08-17 22:04:13 [FINEST] [MFFS] Sent event FMLPreInitializationEvent to mod MFFS 2014-08-17 22:04:13 [FINEST] [moreplayermodels] Sending event FMLPreInitializationEvent to mod moreplayermodels 2014-08-17 22:04:13 [FINEST] [moreplayermodels] Sent event FMLPreInitializationEvent to mod moreplayermodels 2014-08-17 22:04:13 [FINEST] [OpenMods] Sending event FMLPreInitializationEvent to mod OpenMods 2014-08-17 22:04:13 [FINEST] [OpenMods] Sent event FMLPreInitializationEvent to mod OpenMods 2014-08-17 22:04:13 [FINEST] [OpenBlocks] Sending event FMLPreInitializationEvent to mod OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemOBGeneric(15232) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemOBGenericUnstackable(15252) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemFilledBucket(15242) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemHangGlider(15231) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemLuggage(15233) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemSonicGlasses(15234) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemImaginationGlasses(15235) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemImaginationGlasses$ItemCrayonGlasses(15236) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemImaginationGlasses(15237) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemImaginationGlasses(15238) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemCraneControl(15239) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemCraneBackpack(15240) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemSlimalyzer(15241) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemSleepingBag(15243) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemPaintBrush(15244) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemStencil(15245) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemSqueegee(15246) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemHeightMap(15247) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemEmptyMap(15248) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemCartographer(15249) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemGoldenEye(15251) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemTastyClay(15250) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemCursor(15253) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemTunedCrystal(15254) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemInfoBook(15255) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2540) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2541) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2542) owned by OpenBlocks 2014-08-17 22:04:13 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2543) owned by OpenBlocks 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2545) owned by OpenBlocks 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2546) owned by OpenBlocks 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemFlagBlock(2547) owned by OpenBlocks 2014-08-17 22:04:14 [iNFO] [OpenModsCore] Adding interface net/minecraftforge/fluids/IFluidHandler to openblocks/common/tileentity/TileEntityTank 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemTankBlock(2548) owned by OpenBlocks 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemTrophyBlock(2549) owned by OpenBlocks 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2550) owned by OpenBlocks 2014-08-17 22:04:14 [iNFO] [OpenModsCore] Adding interface net/minecraftforge/fluids/IFluidHandler to openblocks/common/tileentity/TileEntitySprinkler 2014-08-17 22:04:14 [iNFO] [OpenModsCore] Adding interface net/minecraft/inventory/IInventory to openblocks/common/tileentity/TileEntitySprinkler 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2551) owned by OpenBlocks 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2552) owned by OpenBlocks 2014-08-17 22:04:14 [iNFO] [OpenModsCore] Adding interface net/minecraft/inventory/ISidedInventory to openblocks/common/tileentity/TileEntityVacuumHopper 2014-08-17 22:04:14 [iNFO] [OpenModsCore] Adding interface net/minecraftforge/fluids/IFluidHandler to openblocks/common/tileentity/TileEntityVacuumHopper 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2553) owned by OpenBlocks 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2554) owned by OpenBlocks 2014-08-17 22:04:14 [iNFO] [OpenModsCore] Adding interface net/minecraft/inventory/IInventory to openblocks/common/tileentity/TileEntityBigButton 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2555) owned by OpenBlocks 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemImaginary(2556) owned by OpenBlocks 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2576) owned by OpenBlocks 2014-08-17 22:04:14 [iNFO] [OpenModsCore] Adding interface net/minecraft/inventory/ISidedInventory to openblocks/common/tileentity/TileEntityXPBottler 2014-08-17 22:04:14 [iNFO] [OpenModsCore] Adding interface net/minecraftforge/fluids/IFluidHandler to openblocks/common/tileentity/TileEntityXPBottler 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2557) owned by OpenBlocks 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2558) owned by OpenBlocks 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2559) owned by OpenBlocks 2014-08-17 22:04:14 [iNFO] [OpenModsCore] Adding interface net/minecraft/inventory/ISidedInventory to openblocks/common/tileentity/TileEntityAutoAnvil 2014-08-17 22:04:14 [iNFO] [OpenModsCore] Adding interface net/minecraftforge/fluids/IFluidHandler to openblocks/common/tileentity/TileEntityAutoAnvil 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2560) owned by OpenBlocks 2014-08-17 22:04:14 [iNFO] [OpenModsCore] Adding interface net/minecraft/inventory/ISidedInventory to openblocks/common/tileentity/TileEntityAutoEnchantmentTable 2014-08-17 22:04:14 [iNFO] [OpenModsCore] Adding interface net/minecraftforge/fluids/IFluidHandler to openblocks/common/tileentity/TileEntityAutoEnchantmentTable 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2561) owned by OpenBlocks 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2562) owned by OpenBlocks 2014-08-17 22:04:14 [iNFO] [OpenModsCore] Adding interface net/minecraft/inventory/IInventory to openblocks/common/tileentity/TileEntityBlockBreaker 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2563) owned by OpenBlocks 2014-08-17 22:04:14 [iNFO] [OpenModsCore] Adding interface net/minecraft/inventory/IInventory to openblocks/common/tileentity/TileEntityBlockPlacer 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2564) owned by OpenBlocks 2014-08-17 22:04:14 [iNFO] [OpenModsCore] Adding interface net/minecraft/inventory/IInventory to openblocks/common/tileentity/TileEntityItemDropper 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2565) owned by OpenBlocks 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2566) owned by OpenBlocks 2014-08-17 22:04:14 [iNFO] [OpenModsCore] Adding interface net/minecraft/inventory/IInventory to openblocks/common/tileentity/TileEntityDonationStation 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2567) owned by OpenBlocks 2014-08-17 22:04:14 [iNFO] [OpenModsCore] Adding interface net/minecraft/inventory/IInventory to openblocks/common/tileentity/TileEntityPaintMixer 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2568) owned by OpenBlocks 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2569) owned by OpenBlocks 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openblocks.common.item.ItemPaintCan(2571) owned by OpenBlocks 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2572) owned by OpenBlocks 2014-08-17 22:04:14 [iNFO] [OpenModsCore] Adding interface net/minecraft/inventory/IInventory to openblocks/common/tileentity/TileEntityProjector 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2573) owned by OpenBlocks 2014-08-17 22:04:14 [iNFO] [OpenModsCore] Adding interface net/minecraft/inventory/IInventory to openblocks/common/tileentity/TileEntityDrawingTable 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2574) owned by OpenBlocks 2014-08-17 22:04:14 [iNFO] [OpenModsCore] Adding interface net/minecraft/inventory/IInventory to openblocks/common/tileentity/TileEntityRadio 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item openmods.item.ItemOpenBlock(2577) owned by OpenBlocks 2014-08-17 22:04:14 [FINEST] [ForgeModLoader] Automatically registered mod OpenBlocks entity Luggage as OpenBlocks.Luggage 2014-08-17 22:04:14 [FINEST] [ForgeModLoader] Automatically registered mod OpenBlocks entity Hang Glider as OpenBlocks.Hang Glider 2014-08-17 22:04:14 [FINEST] [ForgeModLoader] Automatically registered mod OpenBlocks entity Magnet as OpenBlocks.Magnet 2014-08-17 22:04:14 [FINEST] [ForgeModLoader] Automatically registered mod OpenBlocks entity Block as OpenBlocks.Block 2014-08-17 22:04:14 [FINEST] [ForgeModLoader] Automatically registered mod OpenBlocks entity Player-Magnet as OpenBlocks.Player-Magnet 2014-08-17 22:04:14 [FINEST] [ForgeModLoader] Automatically registered mod OpenBlocks entity Cartographer as OpenBlocks.Cartographer 2014-08-17 22:04:14 [FINEST] [ForgeModLoader] Automatically registered mod OpenBlocks entity EntityItemProjectile as OpenBlocks.EntityItemProjectile 2014-08-17 22:04:14 [FINEST] [ForgeModLoader] Automatically registered mod OpenBlocks entity GoldenEye as OpenBlocks.GoldenEye 2014-08-17 22:04:14 [FINEST] [OpenBlocks] Sent event FMLPreInitializationEvent to mod OpenBlocks 2014-08-17 22:04:14 [FINEST] [Redstone Arsenal] Sending event FMLPreInitializationEvent to mod Redstone Arsenal 2014-08-17 22:04:14 [FINEST] [Redstone Arsenal] Sent event FMLPreInitializationEvent to mod Redstone Arsenal 2014-08-17 22:04:14 [FINEST] [TConstruct] Sending event FMLPreInitializationEvent to mod TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.TitleIcon(14358) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.CraftingItem(14275) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.MaterialItem(14276) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14277) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolShard(14278) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.Pattern(14279) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.MetalPattern(14280) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.Manual(14274) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.FilledBucket(14357) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.Pickaxe(14307) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.Shovel(14308) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.Hatchet(14309) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.Broadsword(14311) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.Longsword(14312) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.Rapier(14313) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.Dagger(14321) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.Cutlass(14328) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.FryingPan(14314) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.BattleSign(14315) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.Mattock(14316) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.Chisel(14322) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.LumberAxe(14317) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.Cleaver(14324) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.Scythe(14323) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.Excavator(14325) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.Hammer(14326) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.Battleaxe(14327) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.Shortbow(14319) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.Arrow(14329) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.tools.PotionLauncher(14320) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14282) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14283) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14284) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14290) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14297) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14298) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14300) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14286) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14287) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14288) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14289) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14294) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPartHidden(14303) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14291) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14292) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14295) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14296) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14293) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14301) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14299) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14302) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.Bowstring(14304) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.ToolPart(14305) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.Fletching(14306) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.DiamondApple(14363) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.StrangeFood(14359) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.OreBerries(14360) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.Jerky(14371) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.armor.HeartCanister(14361) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.armor.Knapsack(14368) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.GoldenHead(14369) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.CreativeModifier(14376) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.armor.ArmorBasic(14362) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.armor.ArmorBasic(14364) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.armor.ArmorBasic(14365) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.armor.ArmorBasic(14366) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.armor.ExoArmor(14372) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.armor.ExoArmor(14373) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.armor.ExoArmor(14374) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.armor.ExoArmor(14375) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.ToolStationItemBlock(1471) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.MetadataItemBlock(1468) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3233) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.CraftingSlabItemBlock(3243) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3192) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1472) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.CraftedSoilItemBlock(1476) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.SearedSlabItem(3230) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.SpeedSlabItem(3231) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.MetalItemBlock(1478) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.HamboneItemBlock(3242) owned by TConstruct 2014-08-17 22:04:14 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: hambone, id=3242 meta=0 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3219) owned by TConstruct 2014-08-17 22:04:14 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockRubber, id=3219 meta=0 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.WoolSlab1Item(3244) owned by TConstruct 2014-08-17 22:04:14 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.WoolSlab2Item(3245) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.SmelteryItemBlock(1474) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.SmelteryItemBlock(3187) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.LavaTankItemBlock(1473) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.LavaTankItemBlock(3186) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.SearedTableItemBlock(1477) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.SearedTableItemBlock(3188) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.CastingChannelItem(3249) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3246) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.ItemBlockLandmine(1470) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3232) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.BarricadeItem(1469) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.BarricadeItem(1482) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.BarricadeItem(1483) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.BarricadeItem(1487) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.MetadataItemBlock(3247) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3227) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3201) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3202) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3203) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3204) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3205) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3206) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3207) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3208) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3209) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3210) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3211) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3212) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3213) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3214) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3215) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3216) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3217) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3197) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3196) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3195) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3198) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3199) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3200) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3218) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3235) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3220) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.SlimeGelItemBlock(3237) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.SlimeGrassItemBlock(3238) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.SlimeTallGrassItem(3239) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.SlimeLeavesItemBlock(3240) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.SlimeSaplingItemBlock(3241) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3190) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3189) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3191) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1484) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1479) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.MultiBrickItem(1481) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.MultiBrickFancyItem(1467) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.OreberryBushItem(1485) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.OreberryBushSecondItem(1486) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.MetalOreItemBlock(1475) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.GravelOreItem(1488) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.SpeedBlockItem(1489) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.GlassBlockItem(3223) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.GlassPaneItem(3228) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.StainedGlassClearItem(3225) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item tconstruct.items.blocks.StainedGlassClearPaneItem(3229) owned by TConstruct 2014-08-17 22:04:15 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3250) owned by TConstruct 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreCobalt, id=1475 meta=1 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreArdite, id=1475 meta=2 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreCopper, id=1475 meta=3 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreTin, id=1475 meta=4 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreAluminum, id=1475 meta=5 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreAluminium, id=1475 meta=5 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreIron, id=1488 meta=0 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreGold, id=1488 meta=1 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreCobalt, id=1488 meta=5 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreCopper, id=1488 meta=2 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreTin, id=1488 meta=3 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreAluminum, id=1488 meta=4 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreAluminium, id=1488 meta=4 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockCobalt, id=1478 meta=0 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockArdite, id=1478 meta=1 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockManyullyn, id=1478 meta=2 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockCopper, id=1478 meta=3 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockBronze, id=1478 meta=4 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockTin, id=1478 meta=5 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockAluminum, id=1478 meta=6 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockAluminium, id=1478 meta=6 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockAluminumBrass, id=1478 meta=7 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockAluminiumBrass, id=1478 meta=7 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockAlumite, id=1478 meta=8 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockSteel, id=1478 meta=9 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockEnder, id=1478 meta=10 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: slabCloth, id=3244 meta=32767 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: slabCloth, id=3245 meta=32767 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: stoneMossy, id=98 meta=1 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: stoneMossy, id=48 meta=0 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: crafterWood, id=58 meta=0 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: craftingTableWood, id=58 meta=0 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: torchStone, id=1484 meta=0 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: glassWhite, id=3225 meta=0 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: glassOrange, id=3225 meta=1 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: glassMagenta, id=3225 meta=2 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: glassLightBlue, id=3225 meta=3 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: glassYellow, id=3225 meta=4 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: glassLime, id=3225 meta=5 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: glassPink, id=3225 meta=6 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: glassGray, id=3225 meta=7 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: glassLightGray, id=3225 meta=8 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: glassCyan, id=3225 meta=9 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: glassPurple, id=3225 meta=10 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: glassBlue, id=3225 meta=11 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: glassBrown, id=3225 meta=12 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: glassGreen, id=3225 meta=13 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: glassRed, id=3225 meta=14 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: glassBlack, id=3225 meta=15 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: glass, id=3223 meta=0 2014-08-17 22:04:15 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: glass, id=20 meta=0 2014-08-17 22:04:15 [iNFO] [TConstruct] Building stick database 2014-08-17 22:04:17 [FINEST] [TConstruct] Sent event FMLPreInitializationEvent to mod TConstruct 2014-08-17 22:04:17 [FINEST] [ThaumcraftExtras] Sending event FMLPreInitializationEvent to mod ThaumcraftExtras 2014-08-17 22:04:17 [FINEST] [ThaumcraftExtras] Sent event FMLPreInitializationEvent to mod ThaumcraftExtras 2014-08-17 22:04:17 [FINEST] [ThaumicExploration] Sending event FMLPreInitializationEvent to mod ThaumicExploration 2014-08-17 22:04:17 [FINEST] [ThaumicExploration] Sent event FMLPreInitializationEvent to mod ThaumicExploration 2014-08-17 22:04:17 [FINEST] [witchery] Sending event FMLPreInitializationEvent to mod witchery 2014-08-17 22:04:17 [WARNING] [ForgeModLoader] A mod has attempted to assign BlockID 3845 to the Fluid 'fluidwitcheryspirit' but this Fluid has already been linked to BlockID 4012. Configure your mods to prevent this from happening. 2014-08-17 22:04:17 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3845) owned by witchery 2014-08-17 22:04:17 [FINE] [fml.ItemTracker] Adding item com.emoniph.witchery.item.ItemBucketSpirit(10901) owned by witchery 2014-08-17 22:04:17 [WARNING] [ForgeModLoader] A mod has attempted to assign BlockID 3844 to the Fluid 'fluidwitcheryhollowtears' but this Fluid has already been linked to BlockID 4009. Configure your mods to prevent this from happening. 2014-08-17 22:04:17 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3844) owned by witchery 2014-08-17 22:04:17 [FINE] [fml.ItemTracker] Adding item com.emoniph.witchery.item.ItemBucketSpirit(10908) owned by witchery 2014-08-17 22:04:17 [FINEST] [witchery] Sent event FMLPreInitializationEvent to mod witchery 2014-08-17 22:04:17 [FINEST] [YALSM] Sending event FMLPreInitializationEvent to mod YALSM 2014-08-17 22:04:17 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.Item(10009) owned by YALSM 2014-08-17 22:04:17 [FINEST] [YALSM] Sent event FMLPreInitializationEvent to mod YALSM 2014-08-17 22:04:17 [FINEST] [McMultipart] Sending event FMLPreInitializationEvent to mod McMultipart 2014-08-17 22:04:17 [FINEST] [McMultipart] Sent event FMLPreInitializationEvent to mod McMultipart 2014-08-17 22:04:17 [FINEST] [ForgeMicroblock] Sending event FMLPreInitializationEvent to mod ForgeMicroblock 2014-08-17 22:04:17 [FINE] [fml.ItemTracker] Adding item codechicken.microblock.ItemMicroPart(25131) owned by ForgeMicroblock 2014-08-17 22:04:17 [FINE] [fml.ItemTracker] Adding item codechicken.microblock.ItemSaw(25132) owned by ForgeMicroblock 2014-08-17 22:04:17 [FINE] [fml.ItemTracker] Adding item codechicken.microblock.ItemSaw(25133) owned by ForgeMicroblock 2014-08-17 22:04:17 [FINE] [fml.ItemTracker] Adding item codechicken.microblock.ItemSaw(25134) owned by ForgeMicroblock 2014-08-17 22:04:17 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.Item(25135) owned by ForgeMicroblock 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.stone 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.dirt 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.stonebrick 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.wood 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.wood_1 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.wood_2 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.wood_3 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.log 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.log_1 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.log_2 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.log_3 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.leaves 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.leaves_1 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.leaves_2 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.leaves_3 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.sponge 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.glass 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.blockLapis 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.sandStone 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.sandStone_1 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.sandStone_2 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.cloth 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.cloth_1 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.cloth_2 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.cloth_3 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.cloth_4 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.cloth_5 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.cloth_6 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.cloth_7 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.cloth_8 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.cloth_9 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.cloth_10 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.cloth_11 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.cloth_12 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.cloth_13 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.cloth_14 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.cloth_15 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.blockGold 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.blockIron 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.brick 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.bookshelf 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.stoneMoss 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.obsidian 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.blockDiamond 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.ice 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.snow 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.clay 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.hellrock 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.hellsand 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.lightgem 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.stonebricksmooth 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.stonebricksmooth_1 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.stonebricksmooth_2 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.stonebricksmooth_3 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.netherBrick 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.whiteStone 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.blockEmerald 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.blockRedstone 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.quartzBlock 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.clayHardenedStained 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.clayHardenedStained_1 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.clayHardenedStained_2 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.clayHardenedStained_3 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.clayHardenedStained_4 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.clayHardenedStained_5 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.clayHardenedStained_6 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.clayHardenedStained_7 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.clayHardenedStained_8 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.clayHardenedStained_9 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.clayHardenedStained_10 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.clayHardenedStained_11 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.clayHardenedStained_12 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.clayHardenedStained_13 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.clayHardenedStained_14 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.clayHardenedStained_15 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.clayHardened 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.blockCoal 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.grass 2014-08-17 22:04:17 [iNFO] [sTDOUT] Registered micro material: tile.mycel 2014-08-17 22:04:17 [FINEST] [ForgeMicroblock] Sent event FMLPreInitializationEvent to mod ForgeMicroblock 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class am2.items.ItemWakebloom with ID 4068 owned by mod arsmagica2, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.moon.items.GCMoonItemCheese with ID 10107 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.moon.items.GCMoonItemRawIron with ID 10108 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.moon.items.GCMoonItemReed with ID 10109 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.moon.items.GCMoonItem with ID 10110 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemSpaceship with ID 10111 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemOxygenTank with ID 10112 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemOxygenTank with ID 10113 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemOxygenTank with ID 10114 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemOxygenMask with ID 10115 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemSensorGlasses with ID 10116 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemCanister with ID 10117 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItem with ID 10118 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItem with ID 10119 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItem with ID 10120 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemBow with ID 10121 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemRocketEngine with ID 10122 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItem with ID 10123 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItem with ID 10124 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItem with ID 10125 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItem with ID 10126 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemBuggy with ID 10127 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItem with ID 10128 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemFlag with ID 10129 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemOxygenGear with ID 10130 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItem with ID 10131 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemParachute with ID 10132 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemOilExtractor with ID 10133 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemOilCanister with ID 10134 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemFuelCanister with ID 10135 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemFuel with ID 10136 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemKnowledgeBook with ID 10137 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemSchematic with ID 10138 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemKey with ID 10139 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemBuggyMaterial with ID 10140 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemSword with ID 10141 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemPickaxe with ID 10142 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemSpade with ID 10143 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemHoe with ID 10144 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemAxe with ID 10145 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemArmor with ID 10146 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemArmor with ID 10147 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemArmor with ID 10148 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemArmor with ID 10149 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemBasic with ID 10150 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemMeteorChunk with ID 10151 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemWrench with ID 10152 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.mars.items.GCMarsItem with ID 10161 owned by mod GalacticraftMars, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.mars.items.GCMarsItemSpaceshipTier2 with ID 10162 owned by mod GalacticraftMars, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.mars.items.GCMarsItemSword with ID 10163 owned by mod GalacticraftMars, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.mars.items.GCMarsItemPickaxe with ID 10164 owned by mod GalacticraftMars, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.mars.items.GCMarsItemSpade with ID 10165 owned by mod GalacticraftMars, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.mars.items.GCMarsItemHoe with ID 10166 owned by mod GalacticraftMars, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.mars.items.GCMarsItemAxe with ID 10167 owned by mod GalacticraftMars, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.mars.items.GCMarsItemArmor with ID 10168 owned by mod GalacticraftMars, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.mars.items.GCMarsItemArmor with ID 10169 owned by mod GalacticraftMars, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.mars.items.GCMarsItemArmor with ID 10170 owned by mod GalacticraftMars, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.mars.items.GCMarsItemArmor with ID 10171 owned by mod GalacticraftMars, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.mars.items.GCMarsItemKey with ID 10172 owned by mod GalacticraftMars, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.mars.items.GCMarsItemSchematic with ID 10173 owned by mod GalacticraftMars, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class com.emoniph.witchery.item.ItemBucketSpirit with ID 10901 owned by mod witchery, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class com.emoniph.witchery.item.ItemBucketSpirit with ID 10908 owned by mod witchery, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class net.ixios.advancedthaumaturgy.items.ItemInfusedThaumium with ID 13591 owned by mod AdvancedThaumaturgy, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class net.ixios.advancedthaumaturgy.items.ItemFocusVoidCage with ID 13594 owned by mod AdvancedThaumaturgy, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class net.ixios.advancedthaumaturgy.items.ItemEtherealJar with ID 13595 owned by mod AdvancedThaumaturgy, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class net.ixios.advancedthaumaturgy.items.ItemAeroSphere with ID 13596 owned by mod AdvancedThaumaturgy, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class net.ixios.advancedthaumaturgy.items.ItemArcaneCrystal with ID 13597 owned by mod AdvancedThaumaturgy, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class net.ixios.advancedthaumaturgy.items.ItemEndstoneChunk with ID 13598 owned by mod AdvancedThaumaturgy, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemBattery with ID 14226 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class micdoodle8.mods.galacticraft.core.items.GCCoreItemInfiniteBattery with ID 14227 owned by mod GalacticraftCore, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class tconstruct.items.armor.ExoArmor with ID 14372 owned by mod TConstruct, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class tconstruct.items.armor.ExoArmor with ID 14373 owned by mod TConstruct, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class tconstruct.items.armor.ExoArmor with ID 14374 owned by mod TConstruct, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class tconstruct.items.armor.ExoArmor with ID 14375 owned by mod TConstruct, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class net.minecraft.item.Item with ID 25135 owned by mod ForgeMicroblock, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class gravisuite.ItemGraviChestPlate with ID 30473 owned by mod GraviSuite, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class gravisuite.ItemUltimateLappack with ID 30474 owned by mod GraviSuite, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class gravisuite.ItemSimpleItems with ID 30475 owned by mod GraviSuite, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class gravisuite.ItemVajra with ID 30477 owned by mod GraviSuite, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class gravisuite.ItemAdvDDrill with ID 30478 owned by mod GraviSuite, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class gravisuite.ItemAdvChainsaw with ID 30479 owned by mod GraviSuite, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class gravisuite.ItemAdvancedLappack with ID 30480 owned by mod GraviSuite, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class gravisuite.ItemAdvancedJetPack with ID 30481 owned by mod GraviSuite, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class gravisuite.ItemGraviTool with ID 30482 owned by mod GraviSuite, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [sEVERE] [ForgeModLoader] Found anonymous item of class gravisuite.ItemAdvancedNanoChestPlate with ID 30483 owned by mod GraviSuite, this item will NOT survive a 1.7 upgrade! 2014-08-17 22:04:17 [iNFO] [Minecraft-Server] Loading properties 2014-08-17 22:04:17 [iNFO] [Minecraft-Server] Default game type: SURVIVAL 2014-08-17 22:04:17 [iNFO] [Minecraft-Server] Generating keypair 2014-08-17 22:04:17 [WARNING] [buildcraft] Unable to read from remote version authority. 2014-08-17 22:04:17 [WARNING] [buildcraft] java.io.FileNotFoundException: https://dl.dropboxusercontent.com/u/38558957/Minecraft/Buildcraft/version.txt 2014-08-17 22:04:17 [iNFO] [buildcraft] Version check attempt 3 failed, trying again in 10 seconds 2014-08-17 22:04:18 [iNFO] [Minecraft-Server] Starting Minecraft server on *:25565 2014-08-17 22:04:18 [FINEST] [mcp] Sending event FMLInitializationEvent to mod mcp 2014-08-17 22:04:18 [FINEST] [mcp] Sent event FMLInitializationEvent to mod mcp 2014-08-17 22:04:18 [FINEST] [FML] Sending event FMLInitializationEvent to mod FML 2014-08-17 22:04:18 [FINEST] [FML] Sent event FMLInitializationEvent to mod FML 2014-08-17 22:04:18 [FINEST] [Forge] Sending event FMLInitializationEvent to mod Forge 2014-08-17 22:04:18 [FINEST] [Forge] Sent event FMLInitializationEvent to mod Forge 2014-08-17 22:04:18 [FINEST] [AM2-Preloader] Sending event FMLInitializationEvent to mod AM2-Preloader 2014-08-17 22:04:18 [FINEST] [AM2-Preloader] Sent event FMLInitializationEvent to mod AM2-Preloader 2014-08-17 22:04:18 [FINEST] [AppliedEnergistics-Core] Sending event FMLInitializationEvent to mod AppliedEnergistics-Core 2014-08-17 22:04:18 [FINEST] [AppliedEnergistics-Core] Sent event FMLInitializationEvent to mod AppliedEnergistics-Core 2014-08-17 22:04:18 [FINEST] [CodeChickenCore] Sending event FMLInitializationEvent to mod CodeChickenCore 2014-08-17 22:04:18 [FINEST] [CodeChickenCore] Sent event FMLInitializationEvent to mod CodeChickenCore 2014-08-17 22:04:18 [FINEST] [Micdoodlecore] Sending event FMLInitializationEvent to mod Micdoodlecore 2014-08-17 22:04:18 [FINEST] [Micdoodlecore] Sent event FMLInitializationEvent to mod Micdoodlecore 2014-08-17 22:04:18 [FINEST] [OpenModsCore] Sending event FMLInitializationEvent to mod OpenModsCore 2014-08-17 22:04:18 [FINEST] [OpenModsCore] Sent event FMLInitializationEvent to mod OpenModsCore 2014-08-17 22:04:18 [FINEST] [PowerCrystalsCore] Sending event FMLInitializationEvent to mod PowerCrystalsCore 2014-08-17 22:04:18 [FINEST] [PowerCrystalsCore] Sent event FMLInitializationEvent to mod PowerCrystalsCore 2014-08-17 22:04:18 [FINEST] [TConstruct-Preloader] Sending event FMLInitializationEvent to mod TConstruct-Preloader 2014-08-17 22:04:18 [FINEST] [TConstruct-Preloader] Sent event FMLInitializationEvent to mod TConstruct-Preloader 2014-08-17 22:04:18 [FINEST] [Hats] Sending event FMLInitializationEvent to mod Hats 2014-08-17 22:04:18 [FINEST] [Hats] Sent event FMLInitializationEvent to mod Hats 2014-08-17 22:04:18 [FINEST] [iChunUtil] Sending event FMLInitializationEvent to mod iChunUtil 2014-08-17 22:04:18 [FINEST] [iChunUtil] Sent event FMLInitializationEvent to mod iChunUtil 2014-08-17 22:04:18 [FINEST] [Morph] Sending event FMLInitializationEvent to mod Morph 2014-08-17 22:04:18 [FINEST] [Morph] Sent event FMLInitializationEvent to mod Morph 2014-08-17 22:04:18 [FINEST] [PortalGun] Sending event FMLInitializationEvent to mod PortalGun 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item portalgun.common.item.ItemPlaceholder(13456) owned by PortalGun 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item portalgun.common.item.ItemPortalGunBlue(13457) owned by PortalGun 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item portalgun.common.item.ItemPortalGunOrange(13458) owned by PortalGun 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item portalgun.common.item.ItemPortalSpawner(13459) owned by PortalGun 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item portalgun.common.item.ItemEnderDust(13466) owned by PortalGun 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item portalgun.common.item.ItemPotato(13467) owned by PortalGun 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item portalgun.common.item.ItemPlaceholder(13468) owned by PortalGun 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item portalgun.common.item.ItemPedestal(13464) owned by PortalGun 2014-08-17 22:04:18 [FINEST] [ForgeModLoader] Automatically registered mod PortalGun entity portal_entityblock as PortalGun.portal_entityblock 2014-08-17 22:04:18 [FINEST] [ForgeModLoader] Automatically registered mod PortalGun entity portal_entityball as PortalGun.portal_entityball 2014-08-17 22:04:18 [FINEST] [ForgeModLoader] Automatically registered mod PortalGun entity portal_entityapg as PortalGun.portal_entityapg 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1100) owned by PortalGun 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item portalgun.common.item.ItemPlaceholder(13460) owned by PortalGun 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item portalgun.common.item.ItemArmour(13461) owned by PortalGun 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item portalgun.common.item.ItemMulti(13462) owned by PortalGun 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1101) owned by PortalGun 2014-08-17 22:04:18 [FINEST] [ForgeModLoader] Automatically registered mod PortalGun entity portal_entitycube as PortalGun.portal_entitycube 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item portalgun.common.item.ItemRecords(13657) owned by PortalGun 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item portalgun.common.item.ItemRecords(13658) owned by PortalGun 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item portalgun.common.item.ItemRecords(13659) owned by PortalGun 2014-08-17 22:04:18 [FINEST] [ForgeModLoader] Automatically registered mod PortalGun entity portal_entityradio as PortalGun.portal_entityradio 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item portalgun.common.item.ItemTurret(13463) owned by PortalGun 2014-08-17 22:04:18 [FINEST] [ForgeModLoader] Automatically registered mod PortalGun entity portal_entitybullet as PortalGun.portal_entitybullet 2014-08-17 22:04:18 [FINEST] [ForgeModLoader] Automatically registered mod PortalGun entity portal_entityturret as PortalGun.portal_entityturret 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item portalgun.common.item.ItemAFP(13465) owned by PortalGun 2014-08-17 22:04:18 [FINEST] [ForgeModLoader] Automatically registered mod PortalGun entity portal_entityhep as PortalGun.portal_entityhep 2014-08-17 22:04:18 [FINEST] [PortalGun] Sent event FMLInitializationEvent to mod PortalGun 2014-08-17 22:04:18 [FINEST] [buildCraft|Core] Sending event FMLInitializationEvent to mod BuildCraft|Core 2014-08-17 22:04:18 [FINEST] [ForgeModLoader] Automatically registered mod BuildCraft|Core entity bcRobot as BuildCraft|Core.bcRobot 2014-08-17 22:04:18 [FINEST] [ForgeModLoader] Automatically registered mod BuildCraft|Core entity bcLaser as BuildCraft|Core.bcLaser 2014-08-17 22:04:18 [FINEST] [ForgeModLoader] Automatically registered mod BuildCraft|Core entity bcEnergyLaser as BuildCraft|Core.bcEnergyLaser 2014-08-17 22:04:18 [FINEST] [buildCraft|Core] Sent event FMLInitializationEvent to mod BuildCraft|Core 2014-08-17 22:04:18 [FINEST] [buildCraft|Energy] Sending event FMLInitializationEvent to mod BuildCraft|Energy 2014-08-17 22:04:18 [FINEST] [buildCraft|Energy] Sent event FMLInitializationEvent to mod BuildCraft|Energy 2014-08-17 22:04:18 [FINEST] [CoFHCore] Sending event FMLInitializationEvent to mod CoFHCore 2014-08-17 22:04:18 [FINEST] [CoFHCore] Sent event FMLInitializationEvent to mod CoFHCore 2014-08-17 22:04:18 [FINEST] [NetherOres] Sending event FMLInitializationEvent to mod NetherOres 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item powercrystals.netherores.ores.ItemBlockNetherOre(1440) owned by NetherOres 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item powercrystals.netherores.ores.ItemBlockNetherOre(1442) owned by NetherOres 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1441) owned by NetherOres 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherCoal, id=1440 meta=0 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherDiamond, id=1440 meta=1 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherGold, id=1440 meta=2 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherIron, id=1440 meta=3 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherLapis, id=1440 meta=4 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherRedstone, id=1440 meta=5 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherCopper, id=1440 meta=6 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherTin, id=1440 meta=7 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherEmerald, id=1440 meta=8 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherSilver, id=1440 meta=9 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherLead, id=1440 meta=10 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherUranium, id=1440 meta=11 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherNikolite, id=1440 meta=12 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherRuby, id=1440 meta=13 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherPeridot, id=1440 meta=14 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherSapphire, id=1440 meta=15 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherPlatinum, id=1442 meta=0 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherNickel, id=1442 meta=1 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherSteel, id=1442 meta=2 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherIridium, id=1442 meta=3 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherOsmium, id=1442 meta=4 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherSulfur, id=1442 meta=5 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherTitanium, id=1442 meta=6 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherMythril, id=1442 meta=7 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherAdamantium, id=1442 meta=8 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherRutile, id=1442 meta=9 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherTungsten, id=1442 meta=10 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherAmber, id=1442 meta=11 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherTennantite, id=1442 meta=12 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherSalt, id=1442 meta=13 2014-08-17 22:04:18 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNetherSaltpeter, id=1442 meta=14 2014-08-17 22:04:18 [FINEST] [ForgeModLoader] Automatically registered mod NetherOres entity netherOresArmedOre as NetherOres.netherOresArmedOre 2014-08-17 22:04:18 [FINEST] [ForgeModLoader] Automatically registered mod NetherOres entity netherOresHellfish as NetherOres.netherOresHellfish 2014-08-17 22:04:18 [FINEST] [NetherOres] Sent event FMLInitializationEvent to mod NetherOres 2014-08-17 22:04:18 [FINEST] [universalElectricity] Sending event FMLInitializationEvent to mod UniversalElectricity 2014-08-17 22:04:18 [FINEST] [universalElectricity] Sent event FMLInitializationEvent to mod UniversalElectricity 2014-08-17 22:04:18 [FINEST] [ForgeMultipart] Sending event FMLInitializationEvent to mod ForgeMultipart 2014-08-17 22:04:18 [FINEST] [ForgeMultipart] Sent event FMLInitializationEvent to mod ForgeMultipart 2014-08-17 22:04:18 [FINEST] [ThermalExpansion] Sending event FMLInitializationEvent to mod ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item thermalexpansion.item.tool.ItemWrench(31987) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item thermalexpansion.item.tool.ItemMultimeter(31986) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item thermalexpansion.item.tool.ItemCapacitor(31983) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item thermalexpansion.item.ItemDiagram(31982) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item thermalexpansion.item.ItemTEBase(31981) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item thermalexpansion.item.ItemTEBase(31980) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item thermalexpansion.part.conduit.ItemConduitPart(31979) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item cofh.item.ItemArmorAdv(31978) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item cofh.item.ItemArmorAdv(31977) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item cofh.item.ItemArmorAdv(31976) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item cofh.item.ItemArmorAdv(31975) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item cofh.item.ItemSwordAdv(31974) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item cofh.item.ItemShovelAdv(31973) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item cofh.item.ItemPickaxeAdv(31972) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item cofh.item.ItemAxeAdv(31971) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item cofh.item.ItemHoeAdv(31970) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item cofh.item.ItemShearsAdv(31969) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item cofh.item.ItemFishingRodAdv(31968) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item cofh.item.ItemSickleAdv(31967) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item thermalexpansion.item.tool.ItemWrenchBattle(31966) owned by ThermalExpansion 2014-08-17 22:04:18 [iNFO] [Hats] [2.1.8] Loaded 119 hats 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item thermalexpansion.block.simple.ItemBlockOre(3932) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item thermalexpansion.block.machine.ItemBlockMachine(3931) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item thermalexpansion.block.device.ItemBlockDevice(2002) owned by ThermalExpansion 2014-08-17 22:04:18 [FINE] [fml.ItemTracker] Adding item thermalexpansion.block.dynamo.ItemBlockDynamo(2003) owned by ThermalExpansion 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item thermalexpansion.block.energycell.ItemBlockEnergyCell(2004) owned by ThermalExpansion 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item thermalexpansion.block.tank.ItemBlockTank(2005) owned by ThermalExpansion 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item thermalexpansion.block.strongbox.ItemBlockStrongbox(3930) owned by ThermalExpansion 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item thermalexpansion.block.conduit.ItemBlockConduit(2007) owned by ThermalExpansion 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item thermalexpansion.block.ender.ItemBlockTesseract(3929) owned by ThermalExpansion 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item thermalexpansion.block.lamp.ItemBlockLamp(2010) owned by ThermalExpansion 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item thermalexpansion.block.simple.ItemBlockStorage(2011) owned by ThermalExpansion 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item thermalexpansion.block.simple.ItemBlockGlass(2012) owned by ThermalExpansion 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item thermalexpansion.block.simple.ItemBlockRockwool(3927) owned by ThermalExpansion 2014-08-17 22:04:19 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreCopper, id=3932 meta=0 2014-08-17 22:04:19 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreTin, id=3932 meta=1 2014-08-17 22:04:19 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreSilver, id=3932 meta=2 2014-08-17 22:04:19 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreLead, id=3932 meta=3 2014-08-17 22:04:19 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNickel, id=3932 meta=4 2014-08-17 22:04:19 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockCopper, id=2011 meta=0 2014-08-17 22:04:19 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockTin, id=2011 meta=1 2014-08-17 22:04:19 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockSilver, id=2011 meta=2 2014-08-17 22:04:19 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockLead, id=2011 meta=3 2014-08-17 22:04:19 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockNickel, id=2011 meta=4 2014-08-17 22:04:19 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockPlatinum, id=2011 meta=5 2014-08-17 22:04:19 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockElectrum, id=2011 meta=6 2014-08-17 22:04:19 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockInvar, id=2011 meta=7 2014-08-17 22:04:19 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockBronze, id=2011 meta=8 2014-08-17 22:04:19 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockEnderium, id=2011 meta=10 2014-08-17 22:04:19 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: glassHardened, id=2012 meta=0 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3925) owned by ThermalExpansion 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3924) owned by ThermalExpansion 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3923) owned by ThermalExpansion 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3922) owned by ThermalExpansion 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2019) owned by ThermalExpansion 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2021) owned by ThermalExpansion 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item thermalexpansion.item.tool.ItemBucket(31985) owned by ThermalExpansion 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item thermalexpansion.item.tool.ItemFlorb(31984) owned by ThermalExpansion 2014-08-17 22:04:19 [iNFO] [sTDERR] Trait already registered for net.minecraftforge.fluids.IFluidHandler 2014-08-17 22:04:19 [iNFO] [sTDERR] Trait already registered for net.minecraftforge.fluids.IFluidHandler 2014-08-17 22:04:19 [FINEST] [ThermalExpansion] Sent event FMLInitializationEvent to mod ThermalExpansion 2014-08-17 22:04:19 [FINEST] [iC2] Sending event FMLInitializationEvent to mod IC2 2014-08-17 22:04:19 [FINEST] [iC2] Sent event FMLInitializationEvent to mod IC2 2014-08-17 22:04:19 [FINEST] [Thaumcraft] Sending event FMLInitializationEvent to mod Thaumcraft 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity SpecialItem as Thaumcraft.SpecialItem 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity FollowItem as Thaumcraft.FollowItem 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity Golem as Thaumcraft.Golem 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity TravelingTrunk as Thaumcraft.TravelingTrunk 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity BrainyZombie as Thaumcraft.BrainyZombie 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity GiantBrainyZombie as Thaumcraft.GiantBrainyZombie 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity Alumentum as Thaumcraft.Alumentum 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity PrimalOrb as Thaumcraft.PrimalOrb 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity Wisp as Thaumcraft.Wisp 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity Firebat as Thaumcraft.Firebat 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity FrostShard as Thaumcraft.FrostShard 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity Dart as Thaumcraft.Dart 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity PrimalArrow as Thaumcraft.PrimalArrow 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity ThaumSlime as Thaumcraft.ThaumSlime 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity AspectOrb as Thaumcraft.AspectOrb 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity FallingTaint as Thaumcraft.FallingTaint 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity TaintSpider as Thaumcraft.TaintSpider 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity Taintacle as Thaumcraft.Taintacle 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity TaintacleTiny as Thaumcraft.TaintacleTiny 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity TaintSpore as Thaumcraft.TaintSpore 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity TaintSwarmer as Thaumcraft.TaintSwarmer 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity TaintSwarm as Thaumcraft.TaintSwarm 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity TaintedChicken as Thaumcraft.TaintedChicken 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity TaintedCow as Thaumcraft.TaintedCow 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity TaintedCreeper as Thaumcraft.TaintedCreeper 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity TaintedPig as Thaumcraft.TaintedPig 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity TaintedSheep as Thaumcraft.TaintedSheep 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity TaintedVillager as Thaumcraft.TaintedVillager 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity Pech as Thaumcraft.Pech 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Thaumcraft entity PechBlast as Thaumcraft.PechBlast 2014-08-17 22:04:19 [FINEST] [Thaumcraft] Sent event FMLInitializationEvent to mod Thaumcraft 2014-08-17 22:04:19 [FINEST] [AdvancedThaumaturgy] Sending event FMLInitializationEvent to mod AdvancedThaumaturgy 2014-08-17 22:04:19 [FINEST] [AdvancedThaumaturgy] Sent event FMLInitializationEvent to mod AdvancedThaumaturgy 2014-08-17 22:04:19 [FINEST] [Aether II] Sending event FMLInitializationEvent to mod Aether II 2014-08-17 22:04:19 [FINE] [ForgeModLoader] Skipping automatic mod Aether II entity registration for already registered class net.aetherteam.aether.entities.bosses.slider.EntitySlider 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity FloatingBlock as Aether II.FloatingBlock 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity PoisonNeedle as Aether II.PoisonNeedle 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity DartGolden as Aether II.DartGolden 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity DartEnchanted as Aether II.DartEnchanted 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity DartPoison as Aether II.DartPoison 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity LightningKnife as Aether II.LightningKnife 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity NotchWave as Aether II.NotchWave 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity ZephyrSnowball as Aether II.ZephyrSnowball 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity TNTPresent as Aether II.TNTPresent 2014-08-17 22:04:19 [FINE] [ForgeModLoader] Skipping automatic mod Aether II entity registration for already registered class net.aetherteam.aether.entities.mounts.EntityAerbunny 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity AetherLightning as Aether II.AetherLightning 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity DartPhoenix as Aether II.DartPhoenix 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity HostEye as Aether II.HostEye 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity Sentry Projectile as Aether II.Sentry Projectile 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity MiniSlider as Aether II.MiniSlider 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity AetherCoin as Aether II.AetherCoin 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity Cog as Aether II.Cog 2014-08-17 22:04:19 [FINE] [ForgeModLoader] Skipping automatic mod Aether II entity registration for already registered class net.aetherteam.aether.entities.bosses.EntityLabyrinthEye 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity TempestBall as Aether II.TempestBall 2014-08-17 22:04:19 [FINE] [ForgeModLoader] Skipping automatic mod Aether II entity registration for already registered class net.aetherteam.aether.entities.EntityZephyroo 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity FakeItem as Aether II.FakeItem 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity RewardItem as Aether II.RewardItem 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity SoaringWisp as Aether II.SoaringWisp 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity FleetingWisp as Aether II.FleetingWisp 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity EtherealWisp as Aether II.EtherealWisp 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity ShadeOfArkenzus as Aether II.ShadeOfArkenzus 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity Fangrin as Aether II.Fangrin 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity PinkSwet as Aether II.PinkSwet 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod Aether II entity Kraisith as Aether II.Kraisith 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3843) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3842) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemBlockAetherGrass(3841) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemBlockQuicksoil(246) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemBlockHolystone(245) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3840) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemBlockAercloud(3839) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3838) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3837) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3836) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemBlockAetherLog(3835) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3834) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3833) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3832) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(179) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(180) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3831) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3830) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3829) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3828) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3827) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemBlockTrap(3826) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3825) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3824) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemBlockDungeon(3823) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemBlockDungeon(3822) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemBlockDungeon(3821) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemBlockDungeon(3820) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemBlockDungeon(3819) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3818) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3817) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3816) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3815) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3814) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemBlockChristmasLeaves(3813) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3812) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3811) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3810) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3808) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3807) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3806) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3805) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3804) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3803) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3802) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3801) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3800) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3799) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3798) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3797) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3796) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3795) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3792) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3794) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3793) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(221) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(222) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3791) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3790) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(225) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(227) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(226) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3789) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3788) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(230) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3787) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemBlockDungeonHolystone(3786) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3784) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3785) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3809) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3782) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3783) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2677) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3059) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAether(31910) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherKey(31909) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemMoaEgg(31908) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherMusicDisc(31907) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAether(31906) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAether(31905) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAether(31904) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.weapons.ItemDart(31903) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.weapons.ItemDartShooter(31902) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAether(31901) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAether(31900) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemSkyrootBucket(31899) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.tools.ItemAetherTool(31898) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.tools.ItemHolystoneTool(31897) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.tools.ItemZaniteTool(31896) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.tools.ItemGravititeTool(31895) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.tools.ItemAetherTool(31894) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.tools.ItemHolystoneTool(31893) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.tools.ItemZaniteTool(31892) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.tools.ItemGravititeTool(31891) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.tools.ItemAetherTool(31890) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.tools.ItemHolystoneTool(31889) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.tools.ItemZaniteTool(31888) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.tools.ItemGravititeTool(31887) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.weapons.ItemSkyrootSword(31886) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.weapons.ItemHolystoneSword(31885) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.weapons.ItemZaniteSword(31884) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.weapons.ItemGravititeSword(31883) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(31882) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.weapons.ItemPigSlayer(31881) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.weapons.ItemVampireBlade(31880) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.weapons.ItemElementalSword(31879) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.weapons.ItemElementalSword(31878) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.weapons.ItemElementalSword(31877) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.weapons.ItemLightningKnife(31876) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemGummieSwet(31875) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.weapons.ItemHammerOfNotch(31874) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemCloudParachute(31873) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemCloudParachute(31872) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemShardOfLife(31871) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemCompanionSummoner(31870) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.weapons.ItemValkyrieLance(31869) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(31868) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(31867) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(31866) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(31865) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(31864) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(31863) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemCompanionSummoner(31862) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(31861) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(31860) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(31859) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(31858) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(31857) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(31856) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(31855) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(31854) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(31853) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(31852) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(31851) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(31850) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(31849) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(31848) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(31847) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(31846) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(31845) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(31844) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(31843) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(17327) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(31842) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(31841) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(31840) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(31839) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(31838) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemNeptuneArmor(31837) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemNeptuneArmor(17334) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemNeptuneArmor(17335) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemNeptuneArmor(31836) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(31835) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemCompanionSummoner(31834) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemCompanionSummoner(31833) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemCompanionSummoner(31832) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemCompanionSummoner(31831) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.tools.ItemValkyrieTool(17344) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.tools.ItemValkyrieTool(17345) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.tools.ItemValkyrieTool(17346) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemHealingStone(17347) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(17348) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(17349) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherFood(17350) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherFood(17351) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherFood(17352) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.weapons.ItemCandyCaneSword(17353) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemPoisonCure(17354) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAether(17355) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(17356) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherMusicDisc(17357) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(17358) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(17359) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(17360) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherArmor(17361) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(17362) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemCompanionSummoner(17363) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(17364) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAccessory(17365) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherFood(17366) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherFood(17368) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemContinuum(17369) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherFood(17370) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherMusicDisc(17371) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherMusicDisc(17372) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherMusicDisc(17373) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemCrystalBottle(17374) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemPiggieBank(17375) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemCloudParachute(17376) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemCloudParachute(17377) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemCloudParachute(17378) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemAetherFood(17379) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemSkyrootBucket(17383) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemSkyrootBucket(17384) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemSkyrootBucket(17395) owned by Aether II 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.aetherteam.aether.items.ItemBlockAetherDoor(17398) owned by Aether II 2014-08-17 22:04:19 [iNFO] [Hats] [2.1.8] Loaded 64 contributor hats 2014-08-17 22:04:19 [FINEST] [Aether II] Sent event FMLInitializationEvent to mod Aether II 2014-08-17 22:04:19 [FINEST] [AnimationAPI] Sending event FMLInitializationEvent to mod AnimationAPI 2014-08-17 22:04:19 [FINEST] [AnimationAPI] Sent event FMLInitializationEvent to mod AnimationAPI 2014-08-17 22:04:19 [FINEST] [arsmagica2] Sending event FMLInitializationEvent to mod arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4095) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4094) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4092) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4091) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4090) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4089) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4088) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4087) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4085) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4086) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item am2.items.OreItem(4084) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4083) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4082) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4081) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4080) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4078) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4079) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4077) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4076) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4075) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4074) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4072) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4073) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4071) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4070) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4069) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4067) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4066) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4065) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4064) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4063) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4062) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4061) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4060) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4059) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4056) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4055) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4054) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4053) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4052) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4051) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4050) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4048) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4047) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4046) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4045) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4044) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4043) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4042) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(4041) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemSlab(4058) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemSlab(4057) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemMultiTextureTile(4093) owned by arsmagica2 2014-08-17 22:04:19 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemMultiTextureTile(4049) owned by arsmagica2 2014-08-17 22:04:19 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: logWood, id=4066 meta=0 2014-08-17 22:04:19 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: stairWood, id=4056 meta=0 2014-08-17 22:04:19 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: plankWood, id=4059 meta=0 2014-08-17 22:04:19 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: slabWood, id=4058 meta=0 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity EarthElemental as arsmagica2.EarthElemental 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity MobFireElemental as arsmagica2.MobFireElemental 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity BattleChicken as arsmagica2.BattleChicken 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity MobDryad as arsmagica2.MobDryad 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity SpellProjectile as arsmagica2.SpellProjectile 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity MobHecate as arsmagica2.MobHecate 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity MobManaElemental as arsmagica2.MobManaElemental 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity MobManaCreeper as arsmagica2.MobManaCreeper 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity ManaVortex as arsmagica2.ManaVortex 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity MobWaterElemental as arsmagica2.MobWaterElemental 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity MobLightMage as arsmagica2.MobLightMage 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity MobDarkMage as arsmagica2.MobDarkMage 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity ZoneSpell as arsmagica2.ZoneSpell 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity MobMageVillager as arsmagica2.MobMageVillager 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity MobDarkling as arsmagica2.MobDarkling 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity RiftStorage as arsmagica2.RiftStorage 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity BossNatureGuardian as arsmagica2.BossNatureGuardian 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity ThrownSickle as arsmagica2.ThrownSickle 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity BossArcaneGuardian as arsmagica2.BossArcaneGuardian 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity BossEarthGuardian as arsmagica2.BossEarthGuardian 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity ThrownRock as arsmagica2.ThrownRock 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity BossWaterGuardian as arsmagica2.BossWaterGuardian 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity BossWinterGuardian as arsmagica2.BossWinterGuardian 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity ThrownArm as arsmagica2.ThrownArm 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity BossAirGuardian as arsmagica2.BossAirGuardian 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity BossFireGuardian as arsmagica2.BossFireGuardian 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity Whirlwind as arsmagica2.Whirlwind 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity Shockwave as arsmagica2.Shockwave 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity HellCow as arsmagica2.HellCow 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity DaBroom as arsmagica2.DaBroom 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity AirSled as arsmagica2.AirSled 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity BossLifeGuardian as arsmagica2.BossLifeGuardian 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity Flicker as arsmagica2.Flicker 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity BossLightningGuardian as arsmagica2.BossLightningGuardian 2014-08-17 22:04:19 [FINEST] [ForgeModLoader] Automatically registered mod arsmagica2 entity BossEnderGuardian as arsmagica2.BossEnderGuardian 2014-08-17 22:04:19 [WARNING] [ForgeModLoader] Redundant call to BiomeDictionary.registerAllBiomes ignored 2014-08-17 22:04:20 [iNFO] [ForgeModLoader] Ars Magica 2 >> Unregistered spell part in skill trees: am2.spell.components.MeltArmor@151a3906 2014-08-17 22:04:20 [iNFO] [ForgeModLoader] Ars Magica 2 >> Unregistered spell part in skill trees: am2.spell.components.ScrambleSynapses@6c95c3bc 2014-08-17 22:04:20 [iNFO] [ForgeModLoader] Ars Magica 2 >> Unregistered spell part in skill trees: am2.spell.components.Nauseate@5c65a355 2014-08-17 22:04:20 [iNFO] [ForgeModLoader] Ars Magica 2 >> Initializing API Hooks... 2014-08-17 22:04:20 [iNFO] [ForgeModLoader] Ars Magica 2 >> Finished API Initialization 2014-08-17 22:04:20 [FINEST] [arsmagica2] Sent event FMLInitializationEvent to mod arsmagica2 2014-08-17 22:04:20 [FINEST] [AppliedEnergistics] Sending event FMLInitializationEvent to mod AppliedEnergistics 2014-08-17 22:04:21 [iNFO] [ForgeModLoader] [AppEng] Starting Applied Energistics 2014-08-17 22:04:21 [FINE] [fml.ItemTracker] Adding item appeng.common.base.AppEngMultiItem(4361) owned by AppliedEnergistics 2014-08-17 22:04:21 [FINE] [fml.ItemTracker] Adding item appeng.common.base.AppEngMaterials(4362) owned by AppliedEnergistics 2014-08-17 22:04:21 [FINE] [fml.ItemTracker] Adding item appeng.common.base.AppEngMultiChargeable(4373) owned by AppliedEnergistics 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item appeng.common.base.AppEngMultiItemBlock(3583) owned by AppliedEnergistics 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item appeng.common.base.AppEngMultiItemBlock(3582) owned by AppliedEnergistics 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item appeng.common.base.AppEngMultiItemBlock(3581) owned by AppliedEnergistics 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item appeng.common.base.AppEngMultiItemBlock(3580) owned by AppliedEnergistics 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item appeng.tools.toolEntropyAccelerator(4363) owned by AppliedEnergistics 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item appeng.tools.toolVibrationCatalyst(4364) owned by AppliedEnergistics 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item appeng.tools.toolMassCannon(4372) owned by AppliedEnergistics 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item appeng.tools.toolQuartzAxe(4365) owned by AppliedEnergistics 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item appeng.tools.toolQuartzHoe(4366) owned by AppliedEnergistics 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item appeng.tools.toolQuartzShovel(4367) owned by AppliedEnergistics 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item appeng.tools.toolQuartzPick(4368) owned by AppliedEnergistics 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item appeng.tools.toolQuartzSword(4369) owned by AppliedEnergistics 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item appeng.tools.toolQuartzWrench(4370) owned by AppliedEnergistics 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item appeng.tools.toolQuartzCuttingKnife(4371) owned by AppliedEnergistics 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3579) owned by AppliedEnergistics 2014-08-17 22:04:22 [FINEST] [ForgeModLoader] Automatically registered mod AppliedEnergistics entity EntityTinyTNTPrimed as AppliedEnergistics.EntityTinyTNTPrimed 2014-08-17 22:04:22 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreCertusQuartz, id=3580 meta=0 2014-08-17 22:04:22 [FINEST] [AppliedEnergistics] Sent event FMLInitializationEvent to mod AppliedEnergistics 2014-08-17 22:04:22 [FINEST] [ArchimedesShipsMod] Sending event FMLInitializationEvent to mod ArchimedesShipsMod 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3611) owned by ArchimedesShipsMod 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3612) owned by ArchimedesShipsMod 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemCloth(3613) owned by ArchimedesShipsMod 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item shipmod.blockitem.ItemGaugeBlock(3614) owned by ArchimedesShipsMod 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3615) owned by ArchimedesShipsMod 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3616) owned by ArchimedesShipsMod 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3617) owned by ArchimedesShipsMod 2014-08-17 22:04:22 [FINEST] [ForgeModLoader] Automatically registered mod ArchimedesShipsMod entity shipmod as ArchimedesShipsMod.shipmod 2014-08-17 22:04:22 [FINEST] [ForgeModLoader] Automatically registered mod ArchimedesShipsMod entity shipseat as ArchimedesShipsMod.shipseat 2014-08-17 22:04:22 [FINEST] [ForgeModLoader] Automatically registered mod ArchimedesShipsMod entity parachute as ArchimedesShipsMod.parachute 2014-08-17 22:04:22 [FINEST] [ArchimedesShipsMod] Sent event FMLInitializationEvent to mod ArchimedesShipsMod 2014-08-17 22:04:22 [FINEST] [biblioCraft] Sending event FMLInitializationEvent to mod BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.blocks.BlockItemWritingDesk(2248) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.blocks.BlockItemBookcaseMaster(2250) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.blocks.BlockItemPotionShelfMaster(2252) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.blocks.BlockItemGenericShelfMaster(2254) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.blocks.BlockItemWeaponRackMaster(2253) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.blocks.BlockItemWeaponCaseMaster(2255) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.blocks.BlockItemLabelMaster(2251) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.blocks.BlockItemTable(2245) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2249) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2246) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2247) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.blocks.BlockItemLantern(2243) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.blocks.BlockItemLamp(2244) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.blocks.BlockItemStuffsMaster(2242) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.blocks.BlockItemMapFrame(2290) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.blocks.BlockItemSeat(2291) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.items.TapeMeasure(22478) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.items.ItemTape(22479) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.items.ItemChase(22480) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.items.ItemPlate(22481) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.items.ItemEnchantedPlate(22484) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.items.ItemRedstoneBook(22482) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.items.ItemReadingGlasses(22483) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.items.ItemDrill(22486) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.items.ItemLock(22487) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.items.ItemClipboard(22488) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.items.ItemSeatBack(22492) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.items.ItemSeatBack2(22493) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.items.ItemSeatBack3(22494) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.items.ItemSeatBack4(22495) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.items.ItemSeatBack5(22496) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.items.ItemMapTool(22490) owned by BiblioCraft 2014-08-17 22:04:22 [FINE] [fml.ItemTracker] Adding item jds.bibliocraft.items.ItemWaypointCompass(22491) owned by BiblioCraft 2014-08-17 22:04:22 [FINEST] [ForgeModLoader] Automatically registered mod BiblioCraft entity SeatEntity as BiblioCraft.SeatEntity 2014-08-17 22:04:22 [FINEST] [biblioCraft] Sent event FMLInitializationEvent to mod BiblioCraft 2014-08-17 22:04:22 [FINEST] [Natura] Sending event FMLInitializationEvent to mod Natura 2014-08-17 22:04:23 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: cropVine, id=3282 meta=0 2014-08-17 22:04:23 [FINE] [Natura] [FMP] Registering Natura decorative blocks with FMP. 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bloodwood 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.willow 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.planks0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.planks1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.planks2 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.planks3 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.planks4 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.planks5 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.planks6 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.planks7 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.planks8 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.planks9 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.planks10 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.planks11 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.planks12 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.treeblock0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.treeblock1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.treeblock2 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.treeblock3 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.RareTree0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.RareTree1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.RareTree2 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.RareTree3 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.RareLeaves0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.RareLeaves1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.RareLeaves2 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.RareLeaves3 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.Darkleaves0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.Darkleaves1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.Darkleaves2 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.Darkleaves3 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.redwood0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.redwood1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.redwood2 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.leaves0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.leaves1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.leaves2 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.leavesnocolor0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.leavesnocolor1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.natura.leavesnocolor2 2014-08-17 22:04:23 [FINE] [Natura] [MFR] Registering Natura trees/plants/crops with MFR Farming Registry. 2014-08-17 22:04:23 [FINEST] [Natura] Sent event FMLInitializationEvent to mod Natura 2014-08-17 22:04:23 [FINEST] [biomesOPlenty] Sending event FMLInitializationEvent to mod BiomesOPlenty 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.mud.0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.mud.1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.generic.dried_dirt 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.redRocks.0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.redRocks.1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.redRocks.2 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.ash 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leaves1.0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leaves1.1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leaves1.2 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leaves1.3 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leaves2.0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leaves2.1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leaves2.2 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leaves2.3 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leaves3.0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leaves3.1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leaves3.2 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leaves3.3 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leaves4.0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leaves4.1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.generic.ash_stone 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.generic.hard_ice 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leavesFruit.0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leavesFruit2.0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.generic.mud_brick 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.originGrass 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.longGrass 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.wood1.0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.wood1.1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.wood1.2 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.wood1.3 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.wood2.0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.wood2.1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.wood2.2 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.wood2.3 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.wood3.0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.wood3.1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.wood3.2 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.wood3.3 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.wood4.0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.wood4.1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.wood4.2 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.petals.0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.petals.1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.generic.hard_sand 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.generic.hard_dirt 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.generic.crystal 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.holyGrass 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.generic.holy_dirt 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.holyStone.0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.holyStone.1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.holyStone.2 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.amethystOre.0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.amethystOre.1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.amethystOre.2 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.amethystOre.3 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.amethystOre.4 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.amethystOre.5 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.amethystOre.6 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.amethystOre.7 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.amethystOre.8 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.amethystOre.9 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.amethystOre.10 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.amethystOre.11 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.amethystOre.12 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.amethystOre.13 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.generic.crag_rock 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.cloud 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.planks.0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.planks.1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.planks.2 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.planks.3 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.planks.4 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.planks.5 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.planks.6 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.planks.7 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.planks.8 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.planks.9 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.planks.10 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.planks.11 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.planks.12 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.planks.13 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leavesColorized1.0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leavesColorized1.1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leavesColorized1.2 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leavesColorized1.3 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leavesColorized2.0 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leavesColorized2.1 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leavesColorized2.2 2014-08-17 22:04:23 [iNFO] [sTDOUT] Registered micro material: tile.bop.leavesColorized2.3 2014-08-17 22:04:23 [FINEST] [biomesOPlenty] Sent event FMLInitializationEvent to mod BiomesOPlenty 2014-08-17 22:04:23 [FINEST] [AWWayofTime] Sending event FMLInitializationEvent to mod AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.EnergyBattery(17256) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.ApprenticeBloodOrb(17267) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.MagicianBloodOrb(17281) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.MasterBloodOrb(17294) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.ArchmageBloodOrb(17305) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.EnergyBlast(17257) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.EnergySword(17258) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.LavaCrystal(17259) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.sigil.WaterSigil(17260) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.sigil.LavaSigil(17261) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.sigil.VoidSigil(17262) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.AWBaseItems(17263) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.AWBaseItems(17264) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.SacrificialDagger(17265) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.DaggerOfSacrifice(17268) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.sigil.AirSigil(17269) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.sigil.SigilOfTheFastMiner(17270) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.sigil.SigilOfElementalAffinity(17282) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.sigil.SigilOfHaste(17283) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.sigil.SigilOfHolding(17284) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.sigil.DivinationSigil(17275) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.WaterScribeTool(17276) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.FireScribeTool(17277) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.EarthScribeTool(17278) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.AirScribeTool(17279) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.ActivationCrystal(17280) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.BoundPickaxe(17285) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.BoundAxe(17286) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.BoundShovel(17287) owned by AWWayofTime 2014-08-17 22:04:23 [FINEST] [ForgeModLoader] Optional removal - found optionals for class WayofTime.alchemicalWizardry.common.items.BoundArmour - processing 2014-08-17 22:04:23 [FINEST] [ForgeModLoader] Optional removal skipped - mod present Thaumcraft 2014-08-17 22:04:23 [FINEST] [ForgeModLoader] Optional removal skipped - mod present Thaumcraft 2014-08-17 22:04:23 [FINEST] [ForgeModLoader] Optional removal skipped - mod present Thaumcraft 2014-08-17 22:04:23 [FINEST] [ForgeModLoader] Optional removal skipped - mod present Thaumcraft 2014-08-17 22:04:23 [FINEST] [ForgeModLoader] Optional removal skipped - mod present Thaumcraft 2014-08-17 22:04:23 [FINEST] [ForgeModLoader] Optional removal skipped - mod present Thaumcraft 2014-08-17 22:04:23 [FINEST] [ForgeModLoader] Optional removal skipped - mod present Thaumcraft 2014-08-17 22:04:23 [FINEST] [ForgeModLoader] Optional removal skipped - mod present Thaumcraft 2014-08-17 22:04:23 [FINEST] [ForgeModLoader] Optional removal - class WayofTime.alchemicalWizardry.common.items.BoundArmour processed 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.BoundArmour(17288) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.BoundArmour(17289) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.BoundArmour(17290) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.BoundArmour(17291) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.BloodShard(17292) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.sigil.SigilOfGrowth(17293) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.BlankSpell(17295) owned by AWWayofTime 2014-08-17 22:04:23 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.AlchemyFlask(17296) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.StandardBindingAgent(17297) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.MundanePowerCatalyst(17298) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.AveragePowerCatalyst(17299) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.GreaterPowerCatalyst(17300) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.MundaneLengtheningCatalyst(17301) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.AverageLengtheningCatalyst(17302) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.GreaterLengtheningCatalyst(17303) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.AlchemyReagent(17317) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.AlchemyReagent(17318) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.AlchemyReagent(17319) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.AlchemyReagent(17320) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.AlchemyReagent(17316) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.AlchemyReagent(17321) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.AlchemyReagent(17322) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.AlchemyReagent(17323) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.AlchemyReagent(17324) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.AlchemyReagent(17325) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.BloodShard(17304) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.sigil.SigilOfWind(17306) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.TelepositionFocus(17307) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.EnhancedTelepositionFocus(17308) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.ReinforcedTelepositionFocus(17309) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.DemonicTelepositionFocus(17310) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.AWBaseItems(17311) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.AWBaseItems(17312) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.DuskScribeTool(17271) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.sigil.SigilOfTheBridge(17313) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.ArmourInhibitor(17274) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.CheatyItem(17314) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.DemonPlacer(17272) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.WeakFillingAgent(17328) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.StandardFillingAgent(17329) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.EnhancedFillingAgent(17330) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.potion.WeakBindingAgent(17326) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.ItemRitualDiviner(17315) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.sigil.SigilOfMagnetism(17336) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.ItemDiabloKey(17337) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.EnergyBazooka(17338) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.sigil.ItemBloodLightSigil(17339) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.ItemComplexSpellCrystal(31993) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.ItemComponents(31991) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.ItemAlchemyBase(17340) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.sigil.ItemSigilOfSupression(17341) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.LifeBucket(17266) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1403) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1407) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.ItemBloodRuneBlock(1404) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.ItemSpellParadigmBlock(1427) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.ItemSpellEnhancementBlock(1429) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.ItemSpellModifierBlock(1428) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item WayofTime.alchemicalWizardry.common.items.ItemSpellEffectBlock(1426) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1405) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1406) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1408) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1409) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1410) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1411) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1414) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1412) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1415) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1413) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1417) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1416) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1418) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1419) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1420) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1421) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1422) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1423) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1424) owned by AWWayofTime 2014-08-17 22:04:24 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1425) owned by AWWayofTime 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity energyBlastProjectile as AWWayofTime.energyBlastProjectile 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity fireProjectile as AWWayofTime.fireProjectile 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity iceProjectile as AWWayofTime.iceProjectile 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity explosionProjectile as AWWayofTime.explosionProjectile 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity holyProjectile as AWWayofTime.holyProjectile 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity windGustProjectile as AWWayofTime.windGustProjectile 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity lightningBoltProjectile as AWWayofTime.lightningBoltProjectile 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity waterProjectile as AWWayofTime.waterProjectile 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity mudProjectile as AWWayofTime.mudProjectile 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity teleportProjectile as AWWayofTime.teleportProjectile 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity energyBazookaMain as AWWayofTime.energyBazookaMain 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity energyBazookaSecondary as AWWayofTime.energyBazookaSecondary 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity bloodLightProjectile as AWWayofTime.bloodLightProjectile 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity Meteor as AWWayofTime.Meteor 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity spellProjectile as AWWayofTime.spellProjectile 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity FallenAngel as AWWayofTime.FallenAngel 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity LowerGuardian as AWWayofTime.LowerGuardian 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity BileDemon as AWWayofTime.BileDemon 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity WingedFireDemon as AWWayofTime.WingedFireDemon 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity SmallEarthGolem as AWWayofTime.SmallEarthGolem 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity IceDemon as AWWayofTime.IceDemon 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity BoulderFist as AWWayofTime.BoulderFist 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity Shade as AWWayofTime.Shade 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity AirElemental as AWWayofTime.AirElemental 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity WaterElemental as AWWayofTime.WaterElemental 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity EarthElemental as AWWayofTime.EarthElemental 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity FireElemental as AWWayofTime.FireElemental 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity ShadeElemental as AWWayofTime.ShadeElemental 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity HolyElemental as AWWayofTime.HolyElemental 2014-08-17 22:04:24 [FINEST] [ForgeModLoader] Automatically registered mod AWWayofTime entity TestDemon as AWWayofTime.TestDemon 2014-08-17 22:04:24 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreCoal, id=16 meta=0 2014-08-17 22:04:24 [FINEST] [AWWayofTime] Sent event FMLInitializationEvent to mod AWWayofTime 2014-08-17 22:04:24 [FINEST] [buildCraft|Builders] Sending event FMLInitializationEvent to mod BuildCraft|Builders 2014-08-17 22:04:24 [FINEST] [buildCraft|Builders] Sent event FMLInitializationEvent to mod BuildCraft|Builders 2014-08-17 22:04:24 [FINEST] [buildCraft|Factory] Sending event FMLInitializationEvent to mod BuildCraft|Factory 2014-08-17 22:04:24 [FINEST] [buildCraft|Factory] Sent event FMLInitializationEvent to mod BuildCraft|Factory 2014-08-17 22:04:24 [FINEST] [buildCraft|Transport] Sending event FMLInitializationEvent to mod BuildCraft|Transport 2014-08-17 22:04:25 [FINEST] [buildCraft|Transport] Sent event FMLInitializationEvent to mod BuildCraft|Transport 2014-08-17 22:04:25 [FINEST] [buildCraft|Silicon] Sending event FMLInitializationEvent to mod BuildCraft|Silicon 2014-08-17 22:04:25 [FINEST] [buildCraft|Silicon] Sent event FMLInitializationEvent to mod BuildCraft|Silicon 2014-08-17 22:04:25 [FINEST] [CalclaviaCore] Sending event FMLInitializationEvent to mod CalclaviaCore 2014-08-17 22:04:25 [FINE] [Calclavia] Attempting to load 4 items. 2014-08-17 22:04:25 [FINE] [fml.ItemTracker] Adding item calclavia.components.ItemBase(14228) owned by CalclaviaCore 2014-08-17 22:04:25 [iNFO] [ForgeModLoader] Calclavia Core: Successfully requested item: circuitBasic 2014-08-17 22:04:25 [FINE] [fml.ItemTracker] Adding item calclavia.components.ItemBase(14229) owned by CalclaviaCore 2014-08-17 22:04:25 [iNFO] [ForgeModLoader] Calclavia Core: Successfully requested item: circuitAdvanced 2014-08-17 22:04:25 [FINE] [fml.ItemTracker] Adding item calclavia.components.ItemBase(14230) owned by CalclaviaCore 2014-08-17 22:04:25 [iNFO] [ForgeModLoader] Calclavia Core: Successfully requested item: circuitElite 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Optional removal - found optionals for class calclavia.components.ItemScrewdriver - processing 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Optional removal skipped - mod present BuildCraft|Core 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Optional removal - class calclavia.components.ItemScrewdriver processed 2014-08-17 22:04:25 [FINE] [fml.ItemTracker] Adding item calclavia.components.ItemScrewdriver(31965) owned by CalclaviaCore 2014-08-17 22:04:25 [iNFO] [ForgeModLoader] Calclavia Core: Successfully requested item: wrench 2014-08-17 22:04:25 [FINE] [Calclavia] Loaded: 13 Languages. 2014-08-17 22:04:25 [FINEST] [CalclaviaCore] Sent event FMLInitializationEvent to mod CalclaviaCore 2014-08-17 22:04:25 [FINEST] [CoFHLoot] Sending event FMLInitializationEvent to mod CoFHLoot 2014-08-17 22:04:25 [FINEST] [CoFHLoot] Sent event FMLInitializationEvent to mod CoFHLoot 2014-08-17 22:04:25 [FINEST] [CoFHMasquerade] Sending event FMLInitializationEvent to mod CoFHMasquerade 2014-08-17 22:04:25 [FINEST] [CoFHMasquerade] Sent event FMLInitializationEvent to mod CoFHMasquerade 2014-08-17 22:04:25 [FINEST] [CoFHSocial] Sending event FMLInitializationEvent to mod CoFHSocial 2014-08-17 22:04:25 [FINEST] [CoFHSocial] Sent event FMLInitializationEvent to mod CoFHSocial 2014-08-17 22:04:25 [FINEST] [CoFHWorld] Sending event FMLInitializationEvent to mod CoFHWorld 2014-08-17 22:04:25 [FINEST] [CoFHWorld] Sent event FMLInitializationEvent to mod CoFHWorld 2014-08-17 22:04:25 [FINEST] [CustomSpawner] Sending event FMLInitializationEvent to mod CustomSpawner 2014-08-17 22:04:25 [FINEST] [CustomSpawner] Sent event FMLInitializationEvent to mod CustomSpawner 2014-08-17 22:04:25 [FINEST] [EnderStorage] Sending event FMLInitializationEvent to mod EnderStorage 2014-08-17 22:04:25 [FINE] [fml.ItemTracker] Adding item codechicken.enderstorage.common.ItemEnderStorage(241) owned by EnderStorage 2014-08-17 22:04:25 [FINE] [fml.ItemTracker] Adding item codechicken.enderstorage.storage.item.ItemEnderPouch(7493) owned by EnderStorage 2014-08-17 22:04:25 [FINEST] [EnderStorage] Sent event FMLInitializationEvent to mod EnderStorage 2014-08-17 22:04:25 [FINEST] [Railcraft] Sending event FMLInitializationEvent to mod Railcraft 2014-08-17 22:04:25 [FINE] [Railcraft] Init Phase 2014-08-17 22:04:25 [FINER] [Railcraft] Init-Second Start: ModuleCore 2014-08-17 22:04:25 [FINE] [fml.ItemTracker] Adding item mods.railcraft.common.items.ItemGoggles(7756) owned by Railcraft 2014-08-17 22:04:25 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(473) owned by Railcraft 2014-08-17 22:04:25 [FINER] [Railcraft] Init-Second Complete: ModuleCore 2014-08-17 22:04:25 [FINER] [Railcraft] Init-Second Start: ModuleFactory 2014-08-17 22:04:25 [FINEST] [Railcraft] Adding Coke Oven recipe: net.minecraft.item.ItemBlock, 173, 0 2014-08-17 22:04:25 [FINER] [Railcraft] Init-Second Complete: ModuleFactory 2014-08-17 22:04:25 [FINER] [Railcraft] Init-Second Start: ModuleStructures 2014-08-17 22:04:25 [FINER] [Railcraft] Init-Second Complete: ModuleStructures 2014-08-17 22:04:25 [FINER] [Railcraft] Init-Second Start: ModuleAutomation 2014-08-17 22:04:25 [FINER] [Railcraft] Init-Second Complete: ModuleAutomation 2014-08-17 22:04:25 [FINER] [Railcraft] Init-Second Start: ModuleThaumcraft 2014-08-17 22:04:25 [FINER] [Railcraft] Init-Second Complete: ModuleThaumcraft 2014-08-17 22:04:25 [FINER] [Railcraft] Init-Second Start: ModuleSteam 2014-08-17 22:04:25 [FINER] [Railcraft] Init-Second Complete: ModuleSteam 2014-08-17 22:04:25 [FINER] [Railcraft] Init-Second Start: ModuleTrain 2014-08-17 22:04:25 [FINER] [Railcraft] Init-Second Complete: ModuleTrain 2014-08-17 22:04:25 [FINEST] [Railcraft] Sent event FMLInitializationEvent to mod Railcraft 2014-08-17 22:04:25 [FINEST] [TwilightForest] Sending event FMLInitializationEvent to mod TwilightForest 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Wild Boar as TwilightForest.Wild Boar 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Bighorn Sheep as TwilightForest.Bighorn Sheep 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Wild Deer as TwilightForest.Wild Deer 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Redcap as TwilightForest.Redcap 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Swarm Spider as TwilightForest.Swarm Spider 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Naga as TwilightForest.Naga 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Skeleton Druid as TwilightForest.Skeleton Druid 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Hostile Wolf as TwilightForest.Hostile Wolf 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Twilight Wraith as TwilightForest.Twilight Wraith 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Hedge Spider as TwilightForest.Hedge Spider 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Hydra as TwilightForest.Hydra 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Twilight Lich as TwilightForest.Twilight Lich 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Penguin as TwilightForest.Penguin 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Lich Minion as TwilightForest.Lich Minion 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Loyal Zombie as TwilightForest.Loyal Zombie 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Tiny Bird as TwilightForest.Tiny Bird 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Forest Squirrel as TwilightForest.Forest Squirrel 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Forest Bunny as TwilightForest.Forest Bunny 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Forest Raven as TwilightForest.Forest Raven 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Questing Ram as TwilightForest.Questing Ram 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Twilight Kobold as TwilightForest.Twilight Kobold 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Boggard as TwilightForest.Boggard 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Mosquito Swarm as TwilightForest.Mosquito Swarm 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Death Tome as TwilightForest.Death Tome 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Minotaur as TwilightForest.Minotaur 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Minoshroom as TwilightForest.Minoshroom 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Fire Beetle as TwilightForest.Fire Beetle 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Slime Beetle as TwilightForest.Slime Beetle 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Pinch Beetle as TwilightForest.Pinch Beetle 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Maze Slime as TwilightForest.Maze Slime 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Redcap Sapper as TwilightForest.Redcap Sapper 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Mist Wolf as TwilightForest.Mist Wolf 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity King Spider as TwilightForest.King Spider 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Firefly as TwilightForest.Firefly 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Mini Ghast as TwilightForest.Mini Ghast 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Tower Ghast as TwilightForest.Tower Ghast 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Tower Golem as TwilightForest.Tower Golem 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Tower Termite as TwilightForest.Tower Termite 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Redscale Broodling as TwilightForest.Redscale Broodling 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Tower Boss as TwilightForest.Tower Boss 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Block&Chain Goblin as TwilightForest.Block&Chain Goblin 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Upper Goblin Knight as TwilightForest.Upper Goblin Knight 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Lower Goblin Knight as TwilightForest.Lower Goblin Knight 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Helmet Crab as TwilightForest.Helmet Crab 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity Knight Phantom as TwilightForest.Knight Phantom 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity HydraHead as TwilightForest.HydraHead 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity tfnaturebolt as TwilightForest.tfnaturebolt 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity tflichbolt as TwilightForest.tflichbolt 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity tftwilightwandbolt as TwilightForest.tftwilightwandbolt 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity tftomebolt as TwilightForest.tftomebolt 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity tfhydramortar as TwilightForest.tfhydramortar 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity tflichbomb as TwilightForest.tflichbomb 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity tfmoonwormshot as TwilightForest.tfmoonwormshot 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity tfslimeblob as TwilightForest.tfslimeblob 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity tfcharmeffect as TwilightForest.tfcharmeffect 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity tfthrownaxe as TwilightForest.tfthrownaxe 2014-08-17 22:04:25 [FINEST] [ForgeModLoader] Automatically registered mod TwilightForest entity tfthrownpick as TwilightForest.tfthrownpick 2014-08-17 22:04:25 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: logWood, id=2163 meta=32767 2014-08-17 22:04:25 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: logWood, id=2176 meta=32767 2014-08-17 22:04:25 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: treeSapling, id=2175 meta=32767 2014-08-17 22:04:25 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: treeLeaves, id=2164 meta=32767 2014-08-17 22:04:25 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: treeLeaves, id=2177 meta=32767 2014-08-17 22:04:25 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: plankWood, id=2180 meta=32767 2014-08-17 22:04:26 [FINEST] [TwilightForest] Sent event FMLInitializationEvent to mod TwilightForest 2014-08-17 22:04:26 [FINEST] [DartCraft] Sending event FMLInitializationEvent to mod DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.block.item.ItemBlockOre(1900) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.block.item.ItemBlockInfuser(1902) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.block.item.ItemBlockBrick(1903) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.block.item.ItemBlockUnbreakable(1910) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.block.item.ItemBlockSlab(1908) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.block.item.ItemBlockStairs(1901) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.block.item.ItemBlockWood(1904) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1905) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1906) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1907) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1911) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.block.item.ItemBlockTorch(1912) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.block.item.ItemBlockMachine(1913) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.block.item.ItemBlockStorage(1909) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1914) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.DartItem(6256) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.DartItem(6259) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.DartItem(6257) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.DartItem(6276) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.DartItem(6258) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemClipboard(6260) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemForceSword(6270) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemEnderPack(6284) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemForcePack(6268) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemForceBelt(6291) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemForcePickaxe(6274) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemForceSpade(6277) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemForceAxe(6279) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemForceShears(6282) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemForceBow(6281) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.DartItem(6265) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.ItemFortuneCookie(6266) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.ItemFortune(6267) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemMemberCard(6296) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.ItemForceTome(6269) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemForceBucket(6288) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.ItemDartFood(6285) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.ItemDartFood(6286) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.ItemCrate(6283) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.DartItem(6300) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.ItemTear(6299) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.ItemInertCore(6301) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemForceRod(6271) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.ItemUpgradeCore(6275) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.DartItem(6278) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.DartItem(6280) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemForceWrench(6294) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.ItemForceArmor(6261) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.ItemForceArmor(6262) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.ItemForceArmor(6263) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.ItemForceArmor(6264) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.ItemEntityBottle(6292) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemForceFlask(6293) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemForceMitts(6295) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemLootBag(6297) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemMagnet(6298) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.ItemSoulWafer(6303) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.ItemTileBox(6304) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.ItemResource(6307) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemBaconator(6308) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.ItemMudora(6305) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemPowerDrill(6273) owned by DartCraft 2014-08-17 22:04:26 [FINE] [fml.ItemTracker] Adding item bluedart.item.tool.ItemPowerSaw(6272) owned by DartCraft 2014-08-17 22:04:26 [FINEST] [ForgeModLoader] Automatically registered mod DartCraft entity entityBottleItem as DartCraft.entityBottleItem 2014-08-17 22:04:26 [FINEST] [ForgeModLoader] Automatically registered mod DartCraft entity entityAngryEnderman as DartCraft.entityAngryEnderman 2014-08-17 22:04:26 [FINEST] [ForgeModLoader] Automatically registered mod DartCraft entity entityInvincibleItem as DartCraft.entityInvincibleItem 2014-08-17 22:04:26 [FINEST] [ForgeModLoader] Automatically registered mod DartCraft entity entityBeeFlask as DartCraft.entityBeeFlask 2014-08-17 22:04:26 [FINEST] [ForgeModLoader] Automatically registered mod DartCraft entity entityBeeSwarm as DartCraft.entityBeeSwarm 2014-08-17 22:04:26 [FINEST] [ForgeModLoader] Automatically registered mod DartCraft entity entityFrozenItem as DartCraft.entityFrozenItem 2014-08-17 22:04:26 [FINEST] [ForgeModLoader] Automatically registered mod DartCraft entity entityStructureItem as DartCraft.entityStructureItem 2014-08-17 22:04:26 [FINEST] [ForgeModLoader] Automatically registered mod DartCraft entity entityFlyingPoo as DartCraft.entityFlyingPoo 2014-08-17 22:04:26 [FINEST] [ForgeModLoader] Automatically registered mod DartCraft entity entityFairy as DartCraft.entityFairy 2014-08-17 22:04:26 [FINEST] [ForgeModLoader] Automatically registered mod DartCraft entity entityBomb as DartCraft.entityBomb 2014-08-17 22:04:26 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: logWood, id=1904 meta=0 2014-08-17 22:04:26 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: plankWood, id=1904 meta=1 2014-08-17 22:04:26 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: slabWood, id=1908 meta=16 2014-08-17 22:04:26 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: stairWood, id=1901 meta=16 2014-08-17 22:04:26 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: treeSapling, id=1906 meta=0 2014-08-17 22:04:26 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: treeLeaves, id=1905 meta=0 2014-08-17 22:04:27 [iNFO] [DartCraft] Loading Thermal Expansion Integration. 2014-08-17 22:04:27 [FINEST] [DartCraft] Sent event FMLInitializationEvent to mod DartCraft 2014-08-17 22:04:27 [FINEST] [MoCreatures] Sending event FMLInitializationEvent to mod MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemRecord(9028) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemHorseSaddle(9029) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9031) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemHayStack(9032) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemSugarLump(9033) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemEgg(9034) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9035) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemWhip(9036) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.ItemStaffTeleport(9039) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9040) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemKittyBed(9041) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemLitterBox(9042) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9043) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9045) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.ItemBuilderHammer(9046) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9047) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9048) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9049) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9050) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9051) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFishBowl(9052) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFishBowl(9053) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFishBowl(9054) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFishBowl(9055) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFishBowl(9056) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFishBowl(9057) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFishBowl(9058) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFishBowl(9059) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFishBowl(9060) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFishBowl(9061) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFishBowl(9062) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFishBowl(9063) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9064) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFood(9065) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFood(9066) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemTurtleSoup(9067) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemWeapon(9068) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemWeapon(9069) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemWeapon(9070) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemWeapon(9071) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemWeapon(9072) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9073) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9074) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9075) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemHorseAmulet(9076) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemHorseAmulet(9077) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemHorseAmulet(9078) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemHorseAmulet(9079) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemHorseAmulet(9080) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemHorseAmulet(9081) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemHorseAmulet(9082) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemHorseAmulet(9083) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9084) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9085) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9086) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9087) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9088) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9089) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9090) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9091) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9092) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFood(9093) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFood(9094) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9095) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemPetAmulet(9096) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9098) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFood(9100) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFood(9101) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9102) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9103) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9104) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9105) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9106) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFood(9107) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFood(9108) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFood(9109) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9110) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9111) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9112) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9113) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemWeapon(9114) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemWeapon(9115) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemWeapon(9116) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemWeapon(9117) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9118) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9119) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9120) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9121) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9122) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9123) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9124) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9125) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9126) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9127) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9128) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9129) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9130) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9131) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9132) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemArmor(9133) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemWeapon(9134) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemWeapon(9135) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemWeapon(9136) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemWeapon(9137) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9138) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9139) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemWeapon(9140) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemWeapon(9141) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemWeapon(9142) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9143) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9144) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9145) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9146) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9147) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFood(9148) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemFood(9149) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemWeapon(9150) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.ItemStaffPortal(9151) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItem(9152) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.item.MoCItemPetAmulet(9153) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.block.MultiItemBlock(247) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.block.MultiItemBlock(248) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.block.MultiItemBlock(251) owned by MoCreatures 2014-08-17 22:04:27 [iNFO] [sTDOUT] Idfix: changing block id for drzhark.mocreatures.MoCreatures|4095 because of conflict with item electricMagicTools.tombenpotter.electricmagictools.common.ElectricMagicTools|4006; from 4006 to 3870 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.block.MultiItemBlock(3870) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.block.MultiItemBlock(3999) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.block.MultiItemBlock(3998) owned by MoCreatures 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item drzhark.mocreatures.block.MultiItemBlock(3997) owned by MoCreatures 2014-08-17 22:04:27 [FINEST] [MoCreatures] Sent event FMLInitializationEvent to mod MoCreatures 2014-08-17 22:04:27 [FINEST] [Tombenpotter's Electro-Magic Tools] Sending event FMLInitializationEvent to mod Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.tools.ItemThaumiumDrill(4256) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.tools.ItemThaumiumChainsaw(4257) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.armor.ItemQuantumThaumicHelmet(4258) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.tools.ItemDiamondChainsaw(4259) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.tools.ItemOmnitoolIron(4260) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.tools.ItemOmnitoolDiamond(4261) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.tools.ItemOmnitoolThaumium(4262) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.armor.ItemNanoThaumicHelmet(4263) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.foci.ItemExplosionFocus(4264) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.foci.ItemChristmasFocus(4265) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.foci.ItemShieldFocus(4266) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.armor.ItemElectricGoggles(4267) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.tools.ItemStreamChainsaw(4268) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.tools.ItemRockbreakerDrill(4269) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.ItemThaumiumPlate(4270) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.armor.ItemSolarHelmetRevealing(4271) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.tools.hammer.ItemThorHammer(4272) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:27 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.tools.hammer.ItemTaintedThorHammer(4273) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:28 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.ItemLightningSummoner(4274) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:28 [iNFO] [buildcraft] Version check failed 2014-08-17 22:04:28 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.tools.hammer.ItemElectricThorHammer(4276) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:28 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.armor.ItemElectricBootsTraveller(4277) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:28 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.armor.ItemNanoBootsTraveller(4278) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:28 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.armor.ItemQuantumBootsTraveller(4279) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:28 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.ItemElectricScribingTools(4280) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:28 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.ItemEMTItems(4281) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:28 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.tools.ItemElectricHoeGrowth(4282) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:28 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.foci.ItemChargeFocus(4283) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:28 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3996) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:28 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3995) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:28 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.ItemBlockEMTSolars(3994) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:28 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.ItemBlockEssentiaGenerators(3993) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:28 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.ItemBlockEMTMachines(3992) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:28 [FINE] [fml.ItemTracker] Adding item electricMagicTools.tombenpotter.electricmagictools.common.items.ItemBlockEMTSolars2(3991) owned by Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:28 [FINEST] [ForgeModLoader] Automatically registered mod Tombenpotter's Electro-Magic Tools entity entityLaser as Tombenpotter's Electro-Magic Tools.entityLaser 2014-08-17 22:04:28 [FINEST] [ForgeModLoader] Automatically registered mod Tombenpotter's Electro-Magic Tools entity entityArcher as Tombenpotter's Electro-Magic Tools.entityArcher 2014-08-17 22:04:28 [iNFO] [sTDOUT] [EMT] Electro-Magic Tools : Successful Init 2014-08-17 22:04:28 [FINEST] [Tombenpotter's Electro-Magic Tools] Sent event FMLInitializationEvent to mod Tombenpotter's Electro-Magic Tools 2014-08-17 22:04:28 [FINEST] [FlansMod] Sending event FMLInitializationEvent to mod FlansMod 2014-08-17 22:04:28 [iNFO] [sTDOUT] Flan's Mod : Loading Flan's mod. 2014-08-17 22:04:28 [FINE] [fml.ItemTracker] Adding item co.uk.flansmods.common.ItemBlockManyNames(3867) owned by FlansMod 2014-08-17 22:04:28 [FINE] [ForgeModLoader] Skipping automatic mod FlansMod entity registration for already registered class co.uk.flansmods.common.driveables.EntityPlane 2014-08-17 22:04:28 [FINE] [ForgeModLoader] Skipping automatic mod FlansMod entity registration for already registered class co.uk.flansmods.common.driveables.EntityVehicle 2014-08-17 22:04:28 [FINE] [ForgeModLoader] Skipping automatic mod FlansMod entity registration for already registered class co.uk.flansmods.common.driveables.EntitySeat 2014-08-17 22:04:28 [FINE] [ForgeModLoader] Skipping automatic mod FlansMod entity registration for already registered class co.uk.flansmods.common.EntityParachute 2014-08-17 22:04:28 [FINE] [ForgeModLoader] Skipping automatic mod FlansMod entity registration for already registered class co.uk.flansmods.common.driveables.mechas.EntityMecha 2014-08-17 22:04:28 [FINEST] [ForgeModLoader] Automatically registered mod FlansMod entity Bullet as FlansMod.Bullet 2014-08-17 22:04:28 [FINE] [ForgeModLoader] Skipping automatic mod FlansMod entity registration for already registered class co.uk.flansmods.common.guns.EntityGrenade 2014-08-17 22:04:28 [FINE] [ForgeModLoader] Skipping automatic mod FlansMod entity registration for already registered class co.uk.flansmods.common.guns.EntityMG 2014-08-17 22:04:28 [FINE] [ForgeModLoader] Skipping automatic mod FlansMod entity registration for already registered class co.uk.flansmods.common.guns.EntityAAGun 2014-08-17 22:04:28 [FINE] [fml.ItemTracker] Adding item co.uk.flansmods.common.ItemGunBox(3866) owned by FlansMod 2014-08-17 22:04:28 [FINE] [fml.ItemTracker] Adding item co.uk.flansmods.common.teams.ItemOpStick(23540) owned by FlansMod 2014-08-17 22:04:28 [FINE] [ForgeModLoader] Skipping automatic mod FlansMod entity registration for already registered class co.uk.flansmods.common.teams.EntityFlagpole 2014-08-17 22:04:29 [FINE] [ForgeModLoader] Skipping automatic mod FlansMod entity registration for already registered class co.uk.flansmods.common.teams.EntityFlag 2014-08-17 22:04:29 [FINE] [fml.ItemTracker] Adding item co.uk.flansmods.common.teams.ItemFlagpole(23797) owned by FlansMod 2014-08-17 22:04:29 [FINE] [fml.ItemTracker] Adding item co.uk.flansmods.common.ItemBlockManyNames(3865) owned by FlansMod 2014-08-17 22:04:29 [FINE] [ForgeModLoader] Skipping automatic mod FlansMod entity registration for already registered class co.uk.flansmods.common.teams.EntityTeamItem 2014-08-17 22:04:29 [FINE] [ForgeModLoader] Skipping automatic mod FlansMod entity registration for already registered class co.uk.flansmods.common.teams.EntityGunItem 2014-08-17 22:04:29 [iNFO] [sTDOUT] Flan's Mod : Loaded content pack list server side. 2014-08-17 22:04:29 [iNFO] [sTDOUT] Flan's Mod : Loaded bullets. 2014-08-17 22:04:29 [iNFO] [sTDOUT] Flan's Mod : Loaded attachments. 2014-08-17 22:04:29 [iNFO] [sTDOUT] Flan's Mod : Loaded guns. 2014-08-17 22:04:29 [iNFO] [sTDOUT] Flan's Mod : Loaded grenades. 2014-08-17 22:04:29 [iNFO] [sTDOUT] Flan's Mod : Loaded parts. 2014-08-17 22:04:29 [iNFO] [sTDOUT] Flan's Mod : Loaded planes. 2014-08-17 22:04:29 [iNFO] [sTDOUT] Flan's Mod : Loaded vehicles. 2014-08-17 22:04:29 [iNFO] [sTDOUT] Flan's Mod : Loaded AA guns. 2014-08-17 22:04:29 [iNFO] [sTDOUT] Flan's Mod : Loaded mecha tools. 2014-08-17 22:04:29 [iNFO] [sTDOUT] Flan's Mod : Loaded mechas. 2014-08-17 22:04:29 [iNFO] [sTDOUT] Flan's Mod : Loaded tools. 2014-08-17 22:04:29 [iNFO] [sTDOUT] Flan's Mod : Loaded gun boxes. 2014-08-17 22:04:29 [iNFO] [sTDOUT] Flan's Mod : Loaded armour. 2014-08-17 22:04:29 [iNFO] [sTDOUT] Flan's Mod : Loaded classes. 2014-08-17 22:04:29 [iNFO] [sTDOUT] Flan's Mod : Loaded teams. 2014-08-17 22:04:29 [iNFO] [sTDOUT] Flan's Mod : Loaded recipes. 2014-08-17 22:04:29 [iNFO] [sTDOUT] Flan's Mod : Loading complete. 2014-08-17 22:04:29 [FINEST] [FlansMod] Sent event FMLInitializationEvent to mod FlansMod 2014-08-17 22:04:29 [FINEST] [ThaumicTinkerer] Sending event FMLInitializationEvent to mod ThaumicTinkerer 2014-08-17 22:04:29 [FINEST] [ThaumicTinkerer] Sent event FMLInitializationEvent to mod ThaumicTinkerer 2014-08-17 22:04:29 [FINEST] [ForbiddenMagic] Sending event FMLInitializationEvent to mod ForbiddenMagic 2014-08-17 22:04:29 [FINEST] [ForbiddenMagic] Sent event FMLInitializationEvent to mod ForbiddenMagic 2014-08-17 22:04:29 [FINEST] [GalacticraftCore] Sending event FMLInitializationEvent to mod GalacticraftCore 2014-08-17 22:04:29 [sEVERE] [GalacticraftCore] The language resource /micdoodle8/mods/galacticraft/moon/client/lang/cz_CZE.properties cannot be located on the classpath. This is a programming error. 2014-08-17 22:04:29 [sEVERE] [GalacticraftCore] The language resource /micdoodle8/mods/galacticraft/moon/client/lang/de_DE.properties cannot be located on the classpath. This is a programming error. 2014-08-17 22:04:29 [sEVERE] [GalacticraftCore] The language resource /micdoodle8/mods/galacticraft/moon/client/lang/en_GB.properties cannot be located on the classpath. This is a programming error. 2014-08-17 22:04:29 [sEVERE] [GalacticraftCore] The language resource /micdoodle8/mods/galacticraft/moon/client/lang/en_US.properties cannot be located on the classpath. This is a programming error. 2014-08-17 22:04:29 [sEVERE] [GalacticraftCore] The language resource /micdoodle8/mods/galacticraft/moon/client/lang/es_ES.properties cannot be located on the classpath. This is a programming error. 2014-08-17 22:04:29 [sEVERE] [GalacticraftCore] The language resource /micdoodle8/mods/galacticraft/moon/client/lang/es_ES.properties cannot be located on the classpath. This is a programming error. 2014-08-17 22:04:29 [sEVERE] [GalacticraftCore] The language resource /micdoodle8/mods/galacticraft/moon/client/lang/es_ES.properties cannot be located on the classpath. This is a programming error. 2014-08-17 22:04:29 [sEVERE] [GalacticraftCore] The language resource /micdoodle8/mods/galacticraft/moon/client/lang/es_ES.properties cannot be located on the classpath. This is a programming error. 2014-08-17 22:04:29 [sEVERE] [GalacticraftCore] The language resource /micdoodle8/mods/galacticraft/moon/client/lang/es_ES.properties cannot be located on the classpath. This is a programming error. 2014-08-17 22:04:29 [sEVERE] [GalacticraftCore] The language resource /micdoodle8/mods/galacticraft/moon/client/lang/fi_FI.properties cannot be located on the classpath. This is a programming error. 2014-08-17 22:04:29 [sEVERE] [GalacticraftCore] The language resource /micdoodle8/mods/galacticraft/moon/client/lang/fr_FR.properties cannot be located on the classpath. This is a programming error. 2014-08-17 22:04:29 [sEVERE] [GalacticraftCore] The language resource /micdoodle8/mods/galacticraft/moon/client/lang/ja_JP.properties cannot be located on the classpath. This is a programming error. 2014-08-17 22:04:29 [sEVERE] [GalacticraftCore] The language resource /micdoodle8/mods/galacticraft/moon/client/lang/nl_NL.properties cannot be located on the classpath. This is a programming error. 2014-08-17 22:04:29 [sEVERE] [GalacticraftCore] The language resource /micdoodle8/mods/galacticraft/moon/client/lang/pl_PL.properties cannot be located on the classpath. This is a programming error. 2014-08-17 22:04:29 [sEVERE] [GalacticraftCore] The language resource /micdoodle8/mods/galacticraft/moon/client/lang/ru_RU.properties cannot be located on the classpath. This is a programming error. 2014-08-17 22:04:29 [sEVERE] [GalacticraftCore] The language resource /micdoodle8/mods/galacticraft/moon/client/lang/zh_CN.properties cannot be located on the classpath. This is a programming error. 2014-08-17 22:04:29 [sEVERE] [GalacticraftCore] The language resource /micdoodle8/mods/galacticraft/moon/client/lang/zh_CN.properties cannot be located on the classpath. This is a programming error. 2014-08-17 22:04:29 [iNFO] [sTDOUT] Galacticraft Moon Loaded: 17 Languages. 2014-08-17 22:04:30 [iNFO] [sTDOUT] [universalElectricity] Loading compatibility API version @MAJOR@.@MINOR@.@REVIS@ 2014-08-17 22:04:30 [iNFO] [sTDOUT] [universalElectricity] Compiled with IndustrialCraft API version @ICxVersion@ 2014-08-17 22:04:30 [iNFO] [sTDOUT] [universalElectricity] Compiled with BuildCraft API version @BCxVersion@ 2014-08-17 22:04:30 [iNFO] [sTDOUT] [universalElectricity] Compiled with ThermalExpansion API version @TExVersion@ 2014-08-17 22:04:30 [FINE] [ForgeModLoader] Skipping automatic mod GalacticraftCore entity registration for already registered class micdoodle8.mods.galacticraft.core.entities.GCCoreEntitySpider 2014-08-17 22:04:30 [FINE] [ForgeModLoader] Skipping automatic mod GalacticraftCore entity registration for already registered class micdoodle8.mods.galacticraft.core.entities.GCCoreEntityZombie 2014-08-17 22:04:30 [FINE] [ForgeModLoader] Skipping automatic mod GalacticraftCore entity registration for already registered class micdoodle8.mods.galacticraft.core.entities.GCCoreEntityCreeper 2014-08-17 22:04:30 [FINE] [ForgeModLoader] Skipping automatic mod GalacticraftCore entity registration for already registered class micdoodle8.mods.galacticraft.core.entities.GCCoreEntitySkeleton 2014-08-17 22:04:30 [FINE] [ForgeModLoader] Skipping automatic mod GalacticraftCore entity registration for already registered class micdoodle8.mods.galacticraft.core.entities.GCCoreEntitySkeletonBoss 2014-08-17 22:04:30 [FINE] [ForgeModLoader] Skipping automatic mod GalacticraftCore entity registration for already registered class micdoodle8.mods.galacticraft.core.entities.GCCoreEntityAlienVillager 2014-08-17 22:04:30 [FINEST] [ForgeModLoader] Automatically registered mod GalacticraftCore entity Spaceship as GalacticraftCore.Spaceship 2014-08-17 22:04:30 [FINEST] [ForgeModLoader] Automatically registered mod GalacticraftCore entity GravityArrow as GalacticraftCore.GravityArrow 2014-08-17 22:04:30 [FINEST] [ForgeModLoader] Automatically registered mod GalacticraftCore entity Meteor as GalacticraftCore.Meteor 2014-08-17 22:04:30 [FINEST] [ForgeModLoader] Automatically registered mod GalacticraftCore entity Buggy as GalacticraftCore.Buggy 2014-08-17 22:04:30 [FINEST] [ForgeModLoader] Automatically registered mod GalacticraftCore entity Flag as GalacticraftCore.Flag 2014-08-17 22:04:30 [FINEST] [ForgeModLoader] Automatically registered mod GalacticraftCore entity ParaChest as GalacticraftCore.ParaChest 2014-08-17 22:04:30 [FINEST] [ForgeModLoader] Automatically registered mod GalacticraftCore entity OxygenBubble as GalacticraftCore.OxygenBubble 2014-08-17 22:04:30 [FINEST] [ForgeModLoader] Automatically registered mod GalacticraftCore entity Lander as GalacticraftCore.Lander 2014-08-17 22:04:30 [FINEST] [ForgeModLoader] Automatically registered mod GalacticraftCore entity MeteorChunk as GalacticraftCore.MeteorChunk 2014-08-17 22:04:30 [FINEST] [GalacticraftCore] Sent event FMLInitializationEvent to mod GalacticraftCore 2014-08-17 22:04:30 [FINEST] [GalacticraftMars] Sending event FMLInitializationEvent to mod GalacticraftMars 2014-08-17 22:04:30 [FINE] [ForgeModLoader] Skipping automatic mod GalacticraftMars entity registration for already registered class micdoodle8.mods.galacticraft.mars.entities.GCMarsEntitySludgeling 2014-08-17 22:04:30 [FINE] [ForgeModLoader] Skipping automatic mod GalacticraftMars entity registration for already registered class micdoodle8.mods.galacticraft.mars.entities.GCMarsEntitySlimeling 2014-08-17 22:04:30 [FINE] [ForgeModLoader] Skipping automatic mod GalacticraftMars entity registration for already registered class micdoodle8.mods.galacticraft.mars.entities.GCMarsEntityCreeperBoss 2014-08-17 22:04:30 [FINEST] [ForgeModLoader] Automatically registered mod GalacticraftMars entity SpaceshipT2 as GalacticraftMars.SpaceshipT2 2014-08-17 22:04:30 [FINE] [ForgeModLoader] Skipping automatic mod GalacticraftMars entity registration for already registered class micdoodle8.mods.galacticraft.mars.entities.GCMarsEntityRocketT2 2014-08-17 22:04:30 [FINEST] [ForgeModLoader] Automatically registered mod GalacticraftMars entity TerraformBubble as GalacticraftMars.TerraformBubble 2014-08-17 22:04:30 [FINEST] [ForgeModLoader] Automatically registered mod GalacticraftMars entity ProjectileTNT as GalacticraftMars.ProjectileTNT 2014-08-17 22:04:30 [FINEST] [ForgeModLoader] Automatically registered mod GalacticraftMars entity LandingBalloons as GalacticraftMars.LandingBalloons 2014-08-17 22:04:30 [FINEST] [ForgeModLoader] Automatically registered mod GalacticraftMars entity CargoRocket as GalacticraftMars.CargoRocket 2014-08-17 22:04:30 [FINEST] [GalacticraftMars] Sent event FMLInitializationEvent to mod GalacticraftMars 2014-08-17 22:04:30 [FINEST] [GraviSuite] Sending event FMLInitializationEvent to mod GraviSuite 2014-08-17 22:04:30 [FINEST] [GraviSuite] Sent event FMLInitializationEvent to mod GraviSuite 2014-08-17 22:04:30 [FINEST] [HatStand] Sending event FMLInitializationEvent to mod HatStand 2014-08-17 22:04:30 [FINE] [fml.ItemTracker] Adding item hats.addons.hatstand.common.item.ItemHatStand(1300) owned by HatStand 2014-08-17 22:04:30 [FINEST] [HatStand] Sent event FMLInitializationEvent to mod HatStand 2014-08-17 22:04:30 [FINEST] [inventorytweaks] Sending event FMLInitializationEvent to mod inventorytweaks 2014-08-17 22:04:30 [FINEST] [inventorytweaks] Sent event FMLInitializationEvent to mod inventorytweaks 2014-08-17 22:04:30 [FINEST] [ironChest] Sending event FMLInitializationEvent to mod IronChest 2014-08-17 22:04:30 [FINEST] [ironChest] Sent event FMLInitializationEvent to mod IronChest 2014-08-17 22:04:30 [FINEST] [JABBA] Sending event FMLInitializationEvent to mod JABBA 2014-08-17 22:04:30 [FINE] [fml.ItemTracker] Adding item mcp.mobius.betterbarrels.common.items.ItemCapaUpg(31813) owned by JABBA 2014-08-17 22:04:30 [FINE] [fml.ItemTracker] Adding item mcp.mobius.betterbarrels.common.items.ItemBarrelSticker(31812) owned by JABBA 2014-08-17 22:04:30 [FINE] [fml.ItemTracker] Adding item mcp.mobius.betterbarrels.common.items.ItemBarrelMover(31811) owned by JABBA 2014-08-17 22:04:30 [FINE] [fml.ItemTracker] Adding item mcp.mobius.betterbarrels.common.items.ItemTuningFork(31810) owned by JABBA 2014-08-17 22:04:30 [FINE] [fml.ItemTracker] Adding item mcp.mobius.betterbarrels.common.items.ItemBSpaceInterface(31809) owned by JABBA 2014-08-17 22:04:30 [FINE] [fml.ItemTracker] Adding item mcp.mobius.betterbarrels.common.items.ItemBarrelLocker(31808) owned by JABBA 2014-08-17 22:04:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3500) owned by JABBA 2014-08-17 22:04:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3869) owned by JABBA 2014-08-17 22:04:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(3868) owned by JABBA 2014-08-17 22:04:30 [FINEST] [JABBA] Sent event FMLInitializationEvent to mod JABBA 2014-08-17 22:04:30 [FINEST] [LogisticsPipes|Main] Sending event FMLInitializationEvent to mod LogisticsPipes|Main 2014-08-17 22:04:31 [FINEST] [LogisticsPipes|Main] Sent event FMLInitializationEvent to mod LogisticsPipes|Main 2014-08-17 22:04:31 [FINEST] [Mekanism] Sending event FMLInitializationEvent to mod Mekanism 2014-08-17 22:04:31 [iNFO] [sTDOUT] [Mekanism] Version 6.0.5 initializing... 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.multipart.ItemPartTransmitter(31916) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemMekanism(11468) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemMekanism(11471) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemMekanism(11470) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemMekanism(11467) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemMekanism(11474) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemMekanism(11558) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemMekanism(11472) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemMekanism(11764) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemMachineUpgrade(11463) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemMachineUpgrade(11464) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemEnergized(11462) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemDictionary(31915) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemElectricBow(11756) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemPortableTeleporter(11473) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemConfigurator(11477) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemNetworkReader(11478) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemWalkieTalkie(11490) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemAtomicDisassembler(31914) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemGasMask(11475) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemScubaTank(11476) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemJetpack(11479) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemJetpack(31913) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemFreeRunners(31912) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemMekanism(11480) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemMekanism(11481) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemMekanism(11482) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemIngot(11461) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemDirtyDust(11732) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemClump(11731) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemShard(11486) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemCrystal(11487) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemDust(11716) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemRobit(11465) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemBalloon(31911) owned by Mekanism 2014-08-17 22:04:31 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemProxy(11469) owned by Mekanism 2014-08-17 22:04:32 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemBlockBasic(2511) owned by Mekanism 2014-08-17 22:04:32 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemBlockBasic(3864) owned by Mekanism 2014-08-17 22:04:32 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemBlockMachine(2501) owned by Mekanism 2014-08-17 22:04:32 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemBlockMachine(3008) owned by Mekanism 2014-08-17 22:04:32 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemBlockOre(2502) owned by Mekanism 2014-08-17 22:04:32 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemBlockEnergyCube(2504) owned by Mekanism 2014-08-17 22:04:32 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2503) owned by Mekanism 2014-08-17 22:04:32 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2505) owned by Mekanism 2014-08-17 22:04:32 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemBlockGasTank(2506) owned by Mekanism 2014-08-17 22:04:32 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemBlockCardboardBox(3005) owned by Mekanism 2014-08-17 22:04:32 [FINE] [ForgeModLoader] Skipping automatic mod Mekanism entity registration for already registered class mekanism.common.entity.EntityObsidianTNT 2014-08-17 22:04:32 [FINE] [ForgeModLoader] Skipping automatic mod Mekanism entity registration for already registered class mekanism.common.entity.EntityRobit 2014-08-17 22:04:32 [FINE] [ForgeModLoader] Skipping automatic mod Mekanism entity registration for already registered class mekanism.common.entity.EntityBalloon 2014-08-17 22:04:32 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockOsmium, id=2511 meta=0 2014-08-17 22:04:32 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockBronze, id=2511 meta=1 2014-08-17 22:04:32 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockRefinedObsidian, id=2511 meta=2 2014-08-17 22:04:32 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockCharcoal, id=2511 meta=3 2014-08-17 22:04:32 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockRefinedGlowstone, id=2511 meta=4 2014-08-17 22:04:32 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockSteel, id=2511 meta=5 2014-08-17 22:04:32 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockCopper, id=2511 meta=12 2014-08-17 22:04:32 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockTin, id=2511 meta=13 2014-08-17 22:04:32 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreOsmium, id=2502 meta=0 2014-08-17 22:04:32 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreCopper, id=2502 meta=1 2014-08-17 22:04:32 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreTin, id=2502 meta=2 2014-08-17 22:04:32 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreCoal, id=16 meta=0 2014-08-17 22:04:32 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreRedstone, id=73 meta=0 2014-08-17 22:04:32 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreRedstone, id=74 meta=0 2014-08-17 22:04:32 [iNFO] [sTDERR] Trait already registered for cofh.api.energy.IEnergyHandler 2014-08-17 22:04:32 [iNFO] [sTDERR] Trait already registered for cofh.api.energy.IEnergyHandler 2014-08-17 22:04:33 [iNFO] [sTDOUT] [Mekanism] Loading complete. 2014-08-17 22:04:33 [iNFO] [Minecraft] [Mekanism] Mod loaded. 2014-08-17 22:04:33 [FINEST] [Mekanism] Sent event FMLInitializationEvent to mod Mekanism 2014-08-17 22:04:33 [FINEST] [MekanismGenerators] Sending event FMLInitializationEvent to mod MekanismGenerators 2014-08-17 22:04:34 [FINE] [fml.ItemTracker] Adding item mekanism.generators.common.item.ItemBlockGenerator(2510) owned by MekanismGenerators 2014-08-17 22:04:34 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemMekanism(11556) owned by MekanismGenerators 2014-08-17 22:04:34 [FINE] [fml.ItemTracker] Adding item mekanism.common.item.ItemMekanism(11557) owned by MekanismGenerators 2014-08-17 22:04:34 [iNFO] [Minecraft] [MekanismGenerators] Loaded module. 2014-08-17 22:04:34 [FINEST] [MekanismGenerators] Sent event FMLInitializationEvent to mod MekanismGenerators 2014-08-17 22:04:34 [FINEST] [MekanismTools] Sending event FMLInitializationEvent to mod MekanismTools 2014-08-17 22:04:34 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11656) owned by MekanismTools 2014-08-17 22:04:34 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11657) owned by MekanismTools 2014-08-17 22:04:34 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11658) owned by MekanismTools 2014-08-17 22:04:34 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11659) owned by MekanismTools 2014-08-17 22:04:34 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismPaxel(11660) owned by MekanismTools 2014-08-17 22:04:34 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismPickaxe(11661) owned by MekanismTools 2014-08-17 22:04:34 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismAxe(11662) owned by MekanismTools 2014-08-17 22:04:34 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismShovel(11663) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismHoe(11664) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismSword(11665) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11666) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11667) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11668) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11669) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismPaxel(11670) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismPickaxe(11671) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismAxe(11672) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismShovel(11673) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismHoe(11674) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismSword(11675) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11676) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11677) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11678) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11679) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismPaxel(11680) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismPickaxe(11681) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismAxe(11682) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismShovel(11683) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismHoe(11684) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismSword(11685) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismPaxel(11686) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismPickaxe(11687) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismAxe(11688) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismShovel(11689) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismHoe(11690) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismSword(11691) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11692) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11693) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11694) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11695) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismPaxel(11696) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismPickaxe(11697) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismAxe(11698) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismShovel(11699) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismHoe(11700) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismSword(11701) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11702) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11703) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11704) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11705) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismPaxel(11706) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismPaxel(11707) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismPaxel(11708) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismPaxel(11709) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismPaxel(11710) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismPaxel(11711) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismPickaxe(11712) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismAxe(11713) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismShovel(11714) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismHoe(11715) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismSword(11576) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11717) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11718) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11719) owned by MekanismTools 2014-08-17 22:04:35 [FINE] [fml.ItemTracker] Adding item mekanism.tools.item.ItemMekanismArmor(11720) owned by MekanismTools 2014-08-17 22:04:35 [iNFO] [Minecraft] [MekanismTools] Loaded module. 2014-08-17 22:04:35 [FINEST] [MekanismTools] Sent event FMLInitializationEvent to mod MekanismTools 2014-08-17 22:04:35 [FINEST] [MFR Compat Forestry Trees] Sending event FMLInitializationEvent to mod MFR Compat Forestry Trees 2014-08-17 22:04:35 [FINEST] [MFR Compat Forestry Trees] Sent event FMLInitializationEvent to mod MFR Compat Forestry Trees 2014-08-17 22:04:35 [FINEST] [MFR Compat Extra Trees] Sending event FMLInitializationEvent to mod MFR Compat Extra Trees 2014-08-17 22:04:35 [FINEST] [MFR Compat Extra Trees] Sent event FMLInitializationEvent to mod MFR Compat Extra Trees 2014-08-17 22:04:35 [FINEST] [MineFactoryReloaded] Sending event FMLInitializationEvent to mod MineFactoryReloaded 2014-08-17 22:04:36 [FINEST] [MineFactoryReloaded] Sent event FMLInitializationEvent to mod MineFactoryReloaded 2014-08-17 22:04:36 [FINEST] [MineFactoryReloaded|CompatAppliedEnergistics] Sending event FMLInitializationEvent to mod MineFactoryReloaded|CompatAppliedEnergistics 2014-08-17 22:04:36 [FINEST] [MineFactoryReloaded|CompatAppliedEnergistics] Sent event FMLInitializationEvent to mod MineFactoryReloaded|CompatAppliedEnergistics 2014-08-17 22:04:36 [FINEST] [MineFactoryReloaded|CompatAtum] Sending event FMLInitializationEvent to mod MineFactoryReloaded|CompatAtum 2014-08-17 22:04:36 [WARNING] [ForgeModLoader] Atum missing - MFR Atum Compat not loading 2014-08-17 22:04:36 [FINEST] [MineFactoryReloaded|CompatAtum] Sent event FMLInitializationEvent to mod MineFactoryReloaded|CompatAtum 2014-08-17 22:04:36 [FINEST] [MineFactoryReloaded|CompatBackTools] Sending event FMLInitializationEvent to mod MineFactoryReloaded|CompatBackTools 2014-08-17 22:04:36 [WARNING] [ForgeModLoader] BackTools missing - MFR BackTools Compat not loading 2014-08-17 22:04:36 [FINEST] [MineFactoryReloaded|CompatBackTools] Sent event FMLInitializationEvent to mod MineFactoryReloaded|CompatBackTools 2014-08-17 22:04:36 [FINEST] [MineFactoryReloaded|CompatBuildCraft] Sending event FMLInitializationEvent to mod MineFactoryReloaded|CompatBuildCraft 2014-08-17 22:04:36 [FINEST] [MineFactoryReloaded|CompatBuildCraft] Sent event FMLInitializationEvent to mod MineFactoryReloaded|CompatBuildCraft 2014-08-17 22:04:36 [sEVERE] [MineFactoryReloaded|CompatChococraft] Skipping event FMLInitializationEvent and marking errored mod MineFactoryReloaded|CompatChococraft since required dependency MineFactoryReloaded has errored 2014-08-17 22:04:36 [FINEST] [MineFactoryReloaded|CompatExtraBiomes] Sending event FMLInitializationEvent to mod MineFactoryReloaded|CompatExtraBiomes 2014-08-17 22:04:36 [WARNING] [ForgeModLoader] ExtraBiomesXL missing - MFR ExtraBiomesXL Compat not loading 2014-08-17 22:04:36 [FINEST] [MineFactoryReloaded|CompatExtraBiomes] Sent event FMLInitializationEvent to mod MineFactoryReloaded|CompatExtraBiomes 2014-08-17 22:04:36 [FINEST] [MineFactoryReloaded|CompatForestry] Sending event FMLInitializationEvent to mod MineFactoryReloaded|CompatForestry 2014-08-17 22:04:36 [WARNING] [ForgeModLoader] Forestry missing - MFR Forestry Compat not loading 2014-08-17 22:04:36 [FINEST] [MineFactoryReloaded|CompatForestry] Sent event FMLInitializationEvent to mod MineFactoryReloaded|CompatForestry 2014-08-17 22:04:36 [sEVERE] [MineFactoryReloaded|CompatForestryPre] Skipping event FMLInitializationEvent and marking errored mod MineFactoryReloaded|CompatForestryPre since required dependency MineFactoryReloaded has errored 2014-08-17 22:04:36 [FINEST] [MineFactoryReloaded|CompatForgeMicroblock] Sending event FMLInitializationEvent to mod MineFactoryReloaded|CompatForgeMicroblock 2014-08-17 22:04:36 [sEVERE] [MineFactoryReloaded|CompatForgeMicroblock] There was a problem loading MFR Compat: ForgeMicroblock. 2014-08-17 22:04:36 [FINEST] [MineFactoryReloaded|CompatForgeMicroblock] Sent event FMLInitializationEvent to mod MineFactoryReloaded|CompatForgeMicroblock 2014-08-17 22:04:36 [FINEST] [MineFactoryReloaded|CompatIC2] Sending event FMLInitializationEvent to mod MineFactoryReloaded|CompatIC2 2014-08-17 22:04:37 [FINEST] [MineFactoryReloaded|CompatIC2] Sent event FMLInitializationEvent to mod MineFactoryReloaded|CompatIC2 2014-08-17 22:04:37 [FINEST] [MineFactoryReloaded|CompatMystcraft] Sending event FMLInitializationEvent to mod MineFactoryReloaded|CompatMystcraft 2014-08-17 22:04:37 [WARNING] [ForgeModLoader] Mystcraft missing - MFR Mystcraft Compat not loading 2014-08-17 22:04:37 [FINEST] [MineFactoryReloaded|CompatMystcraft] Sent event FMLInitializationEvent to mod MineFactoryReloaded|CompatMystcraft 2014-08-17 22:04:38 [FINEST] [MineFactoryReloaded|CompatPams] Sending event FMLInitializationEvent to mod MineFactoryReloaded|CompatPams 2014-08-17 22:04:38 [WARNING] [ForgeModLoader] Pam's HC base missing - MFR Pam HC Compat not loading 2014-08-17 22:04:38 [WARNING] [ForgeModLoader] Pam's Weee! Flowers missing - MFR Pam Weee! Flowers Compat not loading 2014-08-17 22:04:38 [FINEST] [MineFactoryReloaded|CompatPams] Sent event FMLInitializationEvent to mod MineFactoryReloaded|CompatPams 2014-08-17 22:04:38 [FINEST] [MineFactoryReloaded|CompatProjRed] Sending event FMLInitializationEvent to mod MineFactoryReloaded|CompatProjRed 2014-08-17 22:04:38 [FINEST] [MineFactoryReloaded|CompatProjRed] Sent event FMLInitializationEvent to mod MineFactoryReloaded|CompatProjRed 2014-08-17 22:04:38 [FINEST] [MineFactoryReloaded|CompatRailcraft] Sending event FMLInitializationEvent to mod MineFactoryReloaded|CompatRailcraft 2014-08-17 22:04:38 [sEVERE] [MineFactoryReloaded|CompatRailcraft] There was a problem loading MFR Compat: Railcraft. 2014-08-17 22:04:39 [FINEST] [MineFactoryReloaded|CompatRailcraft] Sent event FMLInitializationEvent to mod MineFactoryReloaded|CompatRailcraft 2014-08-17 22:04:39 [FINEST] [MineFactoryReloaded|CompatRP2] Sending event FMLInitializationEvent to mod MineFactoryReloaded|CompatRP2 2014-08-17 22:04:39 [WARNING] [ForgeModLoader] RedPowerWorld missing - MFR RedPower2 Compat not loading 2014-08-17 22:04:39 [FINEST] [MineFactoryReloaded|CompatRP2] Sent event FMLInitializationEvent to mod MineFactoryReloaded|CompatRP2 2014-08-17 22:04:39 [FINEST] [MineFactoryReloaded|CompatSufficientBiomes] Sending event FMLInitializationEvent to mod MineFactoryReloaded|CompatSufficientBiomes 2014-08-17 22:04:39 [WARNING] [ForgeModLoader] Sufficient Biomes missing - MFR Sufficient Biomes Compat not loading 2014-08-17 22:04:39 [FINEST] [MineFactoryReloaded|CompatSufficientBiomes] Sent event FMLInitializationEvent to mod MineFactoryReloaded|CompatSufficientBiomes 2014-08-17 22:04:39 [FINEST] [MineFactoryReloaded|CompatThaumcraft] Sending event FMLInitializationEvent to mod MineFactoryReloaded|CompatThaumcraft 2014-08-17 22:04:39 [FINEST] [MineFactoryReloaded|CompatThaumcraft] Sent event FMLInitializationEvent to mod MineFactoryReloaded|CompatThaumcraft 2014-08-17 22:04:39 [FINEST] [MineFactoryReloaded|CompatThermalExpansion] Sending event FMLInitializationEvent to mod MineFactoryReloaded|CompatThermalExpansion 2014-08-17 22:04:40 [FINEST] [MineFactoryReloaded|CompatThermalExpansion] Sent event FMLInitializationEvent to mod MineFactoryReloaded|CompatThermalExpansion 2014-08-17 22:04:40 [FINEST] [MineFactoryReloaded|CompatTwilightForest] Sending event FMLInitializationEvent to mod MineFactoryReloaded|CompatTwilightForest 2014-08-17 22:04:41 [FINEST] [MineFactoryReloaded|CompatTwilightForest] Sent event FMLInitializationEvent to mod MineFactoryReloaded|CompatTwilightForest 2014-08-17 22:04:41 [FINEST] [MineFactoryReloaded|CompatVanilla] Sending event FMLInitializationEvent to mod MineFactoryReloaded|CompatVanilla 2014-08-17 22:04:42 [FINEST] [MineFactoryReloaded|CompatVanilla] Sent event FMLInitializationEvent to mod MineFactoryReloaded|CompatVanilla 2014-08-17 22:04:42 [FINEST] [MineFactoryReloaded|CompatXyCraft] Sending event FMLInitializationEvent to mod MineFactoryReloaded|CompatXyCraft 2014-08-17 22:04:42 [WARNING] [ForgeModLoader] XyCraft missing - MFR Xycraft Compat not loading 2014-08-17 22:04:42 [FINEST] [MineFactoryReloaded|CompatXyCraft] Sent event FMLInitializationEvent to mod MineFactoryReloaded|CompatXyCraft 2014-08-17 22:04:42 [FINEST] [ResonantEngine] Sending event FMLInitializationEvent to mod ResonantEngine 2014-08-17 22:04:48 [FINEST] [ResonantEngine] Sent event FMLInitializationEvent to mod ResonantEngine 2014-08-17 22:04:48 [sEVERE] [MFFS] Skipping event FMLInitializationEvent and marking errored mod MFFS since required dependency ResonantEngine has errored 2014-08-17 22:04:48 [FINEST] [moreplayermodels] Sending event FMLInitializationEvent to mod moreplayermodels 2014-08-17 22:04:49 [FINEST] [moreplayermodels] Sent event FMLInitializationEvent to mod moreplayermodels 2014-08-17 22:04:49 [FINEST] [OpenMods] Sending event FMLInitializationEvent to mod OpenMods 2014-08-17 22:04:50 [FINEST] [OpenMods] Sent event FMLInitializationEvent to mod OpenMods 2014-08-17 22:04:50 [sEVERE] [OpenBlocks] Skipping event FMLInitializationEvent and marking errored mod OpenBlocks since required dependency OpenMods has errored 2014-08-17 22:04:50 [FINEST] [Redstone Arsenal] Sending event FMLInitializationEvent to mod Redstone Arsenal 2014-08-17 22:04:50 [FINEST] [Redstone Arsenal] Sent event FMLInitializationEvent to mod Redstone Arsenal 2014-08-17 22:04:50 [FINEST] [TConstruct] Sending event FMLInitializationEvent to mod TConstruct 2014-08-17 22:04:51 [FINEST] [TConstruct] Sent event FMLInitializationEvent to mod TConstruct 2014-08-17 22:04:51 [FINEST] [ThaumcraftExtras] Sending event FMLInitializationEvent to mod ThaumcraftExtras 2014-08-17 22:04:53 [FINEST] [ThaumcraftExtras] Sent event FMLInitializationEvent to mod ThaumcraftExtras 2014-08-17 22:04:53 [FINEST] [ThaumicExploration] Sending event FMLInitializationEvent to mod ThaumicExploration 2014-08-17 22:04:54 [FINEST] [ThaumicExploration] Sent event FMLInitializationEvent to mod ThaumicExploration 2014-08-17 22:04:54 [FINEST] [witchery] Sending event FMLInitializationEvent to mod witchery 2014-08-17 22:04:55 [FINEST] [witchery] Sent event FMLInitializationEvent to mod witchery 2014-08-17 22:04:55 [FINEST] [YALSM] Sending event FMLInitializationEvent to mod YALSM 2014-08-17 22:04:55 [FINEST] [YALSM] Sent event FMLInitializationEvent to mod YALSM 2014-08-17 22:04:55 [FINEST] [McMultipart] Sending event FMLInitializationEvent to mod McMultipart 2014-08-17 22:04:55 [FINEST] [McMultipart] Sent event FMLInitializationEvent to mod McMultipart 2014-08-17 22:04:55 [FINEST] [ForgeMicroblock] Sending event FMLInitializationEvent to mod ForgeMicroblock 2014-08-17 22:04:56 [FINEST] [ForgeMicroblock] Sent event FMLInitializationEvent to mod ForgeMicroblock 2014-08-17 22:04:56 [sEVERE] [ForgeModLoader] Fatal errors were detected during the transition from INITIALIZATION to POSTINITIALIZATION. Loading cannot continue 2014-08-17 22:04:56 [sEVERE] [ForgeModLoader] mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized FML{6.4.49.965} [Forge Mod Loader] (Server_TheLastCraft.jar) Unloaded->Constructed->Pre-initialized->Initialized Forge{9.11.1.965} [Minecraft Forge] (Server_TheLastCraft.jar) Unloaded->Constructed->Pre-initialized->Initialized AM2-Preloader{0.0.1} [AMCore] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized AppliedEnergistics-Core{rv14.finale3} [AppliedEnergistics Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized CodeChickenCore{0.9.0.9} [CodeChicken Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized Micdoodlecore{} [Micdoodle8 Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized OpenModsCore{0.2} [OpenModsCore] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized PowerCrystalsCore{1.1.8} [PowerCrystals Core] (PowerCrystalsCore-1.1.8-9.jar) Unloaded->Constructed->Pre-initialized->Initialized TConstruct-Preloader{0.0.1} [Tinkers Corestruct] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized Hats{2.1.8} [Hats] ([1.6.4] Hats2.1.8.zip) Unloaded->Constructed->Pre-initialized->Initialized iChunUtil{2.4.0} [iChunUtil] ([1.6.4] iChunUtil2.4.0.zip) Unloaded->Constructed->Pre-initialized->Initialized Morph{0.7.2} [Morph] ([1.6.4] Morph-Beta-0.7.2.zip) Unloaded->Constructed->Pre-initialized->Initialized PortalGun{2.0.2} [PortalGun] ([1.6.4] PortalGun2.0.2.zip) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Core{4.2.2} [buildCraft] (buildcraft-A-1.6.4-4.2.2.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Energy{4.2.2} [bC Energy] (buildcraft-A-1.6.4-4.2.2.jar) Unloaded->Constructed->Pre-initialized->Initialized CoFHCore{2.0.0.5} [CoFH Core] (CoFHCore-2.0.0.5.jar) Unloaded->Constructed->Pre-initialized->Initialized NetherOres{1.6.2R2.2.2} [Nether Ores] (NetherOres-2.2.2-55.jar) Unloaded->Constructed->Pre-initialized->Initialized UniversalElectricity{3.1.0} [universal Electricity] (Universal-Electricity-3.1.0.115-core.jar) Unloaded->Constructed->Pre-initialized->Initialized ForgeMultipart{1.0.0.219} [Forge Multipart] (ForgeMultipart-universal-1.6.4-1.0.0.219.jar) Unloaded->Constructed->Pre-initialized->Initialized ThermalExpansion{3.0.0.7} [Thermal Expansion] (ThermalExpansion-3.0.0.7.jar) Unloaded->Constructed->Pre-initialized->Initialized IC2{2.0.397-experimental} [industrialCraft 2] (industrialcraft-2_2.0.397-experimental[Optimized].jar) Unloaded->Constructed->Pre-initialized->Initialized Thaumcraft{4.1.0g} [Thaumcraft] (Thaumcraft4.1.0g.zip) Unloaded->Constructed->Pre-initialized->Initialized AdvancedThaumaturgy{0.0.28} [Advanced Thaumaturgy] (AdvancedThaumaturgy-1.6.4-0.0.28.jar) Unloaded->Constructed->Pre-initialized->Initialized Aether II{Alpha 1.6.4.1} [Aether II] (aether.jar) Unloaded->Constructed->Pre-initialized->Initialized AnimationAPI{1.1.1} [AnimationAPI] (AnimationAPI v1.1.2 mc1.6.4.zip) Unloaded->Constructed->Pre-initialized->Initialized arsmagica2{1.2.0.018} [Ars Magica 2] (AM2_1.2.0.018.jar) Unloaded->Constructed->Pre-initialized->Initialized AppliedEnergistics{rv14.finale3} [Applied Energistics] (appeng-rv14-finale3-mc16x.jar) Unloaded->Constructed->Pre-initialized->Initialized ArchimedesShipsMod{1.6.4 v1.4.5} [Archimedes' Ships] (archimedesships.zip) Unloaded->Constructed->Pre-initialized->Initialized BiblioCraft{1.5.5} [biblioCraft] (BiblioCraft[v1.5.5].zip) Unloaded->Constructed->Pre-initialized->Initialized Natura{2.1.14} [Natura] (Natura_mc1.6.X_2.1.14.jar) Unloaded->Constructed->Pre-initialized->Initialized BiomesOPlenty{1.2.1} [biomes O' Plenty] (BiomesOPlenty-universal-1.6.4-1.2.1.434.jar) Unloaded->Constructed->Pre-initialized->Initialized AWWayofTime{v1.0.1g} [blood Magic: Alchemical Wizardry] (Blood Magic v1.0.1g.zip) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Builders{4.2.2} [bC Builders] (buildcraft-A-1.6.4-4.2.2.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Factory{4.2.2} [bC Factory] (buildcraft-A-1.6.4-4.2.2.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Transport{4.2.2} [bC Transport] (buildcraft-A-1.6.4-4.2.2.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Silicon{4.2.2} [bC Silicon] (buildcraft-A-1.6.4-4.2.2.jar) Unloaded->Constructed->Pre-initialized->Initialized CalclaviaCore{1.2.0} [CalclaviaCore] (Calclavia-Core-1.2.0.324-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized CoFHLoot{2.0.0.5} [CoFH Loot] (CoFHCore-2.0.0.5.jar) Unloaded->Constructed->Pre-initialized->Initialized CoFHMasquerade{2.0.0.5} [CoFH Masquerade] (CoFHCore-2.0.0.5.jar) Unloaded->Constructed->Pre-initialized->Initialized CoFHSocial{2.0.0.5} [CoFH Social] (CoFHCore-2.0.0.5.jar) Unloaded->Constructed->Pre-initialized->Initialized CoFHWorld{2.0.0.5} [CoFH World] (CoFHCore-2.0.0.5.jar) Unloaded->Constructed->Pre-initialized->Initialized CustomSpawner{3.0.0} [DrZhark's CustomSpawner] (CustomMobSpawner 3.0.0.zip) Unloaded->Constructed->Pre-initialized->Initialized EnderStorage{1.4.3.6} [EnderStorage] (EnderStorage 1.4.3.6.jar) Unloaded->Constructed->Pre-initialized->Initialized Railcraft{8.3.2.0} [Railcraft] (Railcraft_1.6.4-8.3.2.0.jar) Unloaded->Constructed->Pre-initialized->Initialized TwilightForest{1.20.4} [The Twilight Forest] (twilightforest-1.6.4-1.20.4.jar) Unloaded->Constructed->Pre-initialized->Initialized DartCraft{Beta 0.2.20} [DartCraft] (DartCraft Beta 0.2.20v2.jar) Unloaded->Constructed->Pre-initialized->Initialized MoCreatures{6.1.0} [DrZhark's Mo'Creatures Mod] (DrZharks MoCreatures Mod v6.1.0.zip) Unloaded->Constructed->Pre-initialized->Initialized Tombenpotter's Electro-Magic Tools{1.0.9} [Electro-Magic Tools] (ElectroMagicTools-1.0.9d.jar) Unloaded->Constructed->Pre-initialized->Initialized FlansMod{4.1.1} [Flans Mod] (FlansMod-4.1.1.jar) Unloaded->Constructed->Pre-initialized->Initialized ThaumicTinkerer{2.3-140} [Thaumic Tinkerer] (ThaumicTinkerer-2.3-140.jar) Unloaded->Constructed->Pre-initialized->Initialized ForbiddenMagic{0.35a} [Forbidden Magic] (ForbiddenMagic pr0.35a.jar) Unloaded->Constructed->Pre-initialized->Initialized GalacticraftCore{2.0.2} [Galacticraft Core] (Galacticraft-1.6.4-2.0.2.800.jar) Unloaded->Constructed->Pre-initialized->Initialized GalacticraftMars{2.0.2} [Galacticraft Mars] (Galacticraft-Planets-1.6.4-2.0.2.800.jar) Unloaded->Constructed->Pre-initialized->Initialized GraviSuite{1.9.8} [Gravitation Suite] (GraviSuite_1_9_8_MC_1_6_4_IC_EXP.zip) Unloaded->Constructed->Pre-initialized->Initialized HatStand{2.1.0} [HatStand] (HatStand2.1.0.zip) Unloaded->Constructed->Pre-initialized->Initialized inventorytweaks{1.56} [inventory Tweaks] (InventoryTweaks-MC1.6.2-1.56-b77.jar) Unloaded->Constructed->Pre-initialized->Initialized IronChest{5.4.1.676} [iron Chest] (ironchest-universal-1.6.4-5.4.1.676.zip) Unloaded->Constructed->Pre-initialized->Initialized JABBA{1.0.3} [JABBA] (JABBA_1.0.3.zip) Unloaded->Constructed->Pre-initialized->Initialized LogisticsPipes|Main{${lp.version.full}} [Logistics Pipes] (LogisticsPipes-MC1.6.4-0.7.4.dev.290.jar) Unloaded->Constructed->Pre-initialized->Initialized Mekanism{6.0.5} [Mekanism] (Mekanism-6.0.5.46[Optimized].jar) Unloaded->Constructed->Pre-initialized->Initialized MekanismGenerators{6.0.5} [MekanismGenerators] (MekanismGenerators-6.0.5.46.jar) Unloaded->Constructed->Pre-initialized->Initialized MekanismTools{6.0.5} [MekanismTools] (MekanismTools-6.0.5.46.jar) Unloaded->Constructed->Pre-initialized->Initialized MFR Compat Forestry Trees{1.0} [MFR Compat Forestry Trees] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Initialized MFR Compat Extra Trees{1.0} [MFR Compat Extra Trees] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded{1.6.4R2.7.9} [MineFactory Reloaded] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatAppliedEnergistics{1.6.4R2.7.9} [MFR Compat: Applied Energistics] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatAtum{1.6.4R2.7.9} [MFR Compat: Atum] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatBackTools{1.6.4R2.7.9} [MFR Compat: BackTools] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatBuildCraft{1.6.4R2.7.9} [MFR Compat: BuildCraft] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatChococraft{1.6.4R2.7.9} [MFR Compat: Chococraft] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatExtraBiomes{1.6.4R2.7.9} [MFR Compat: ExtraBiomes] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatForestry{1.6.4R2.7.9} [MFR Compat: Forestry] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatForestryPre{1.6.4R2.7.9} [MFR Compat: Forestry (part 2)] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatForgeMicroblock{1.6.4R2.7.9} [MFR Compat: ForgeMicroblock] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatIC2{1.6.4R2.7.9} [MFR Compat: IC2] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatMystcraft{1.6.4R2.7.9} [MFR Compat: Mystcraft] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatPams{1.6.4R2.7.9} [MFR Compat: Pam's Mods] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatProjRed{1.6.4R2.7.9} [MFR Compat ProjectRed] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatRailcraft{1.6.4R2.7.9} [MFR Compat: Railcraft] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatRP2{1.6.4R2.7.9} [MFR Compat: RP2] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatSufficientBiomes{1.6.4R2.7.9} [MFR Compat: Sufficient Biomes] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatThaumcraft{1.6.4R2.7.9} [MFR Compat: Thaumcraft] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatThermalExpansion{1.6.4R2.7.9} [MFR Compat: Thermal Expansion] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatTwilightForest{1.6.4R2.7.9} [MFR Compat: TwilightForest] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatVanilla{1.6.4R2.7.9} [MFR Compat: Vanilla] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatXyCraft{1.6.4R2.7.9} [MFR Compat: XyCraft] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized->Initialized ResonantEngine{@MAJOR@.@MINOR@.@REVIS@} [ResonantEngine] (Resonant-Engine-Development-1.2.0.266-universal.jar) Unloaded->Constructed->Pre-initialized->Errored MFFS{3.6.3} [Modular Force Field System] (Modular-Force-Field-System-3.6.3.91-core.jar) Unloaded->Constructed->Pre-initialized->Errored moreplayermodels{1.6.4} [MorePlayerModels] (MorePlayerModels_1.6.2-1.6.4.zip) Unloaded->Constructed->Pre-initialized->Errored OpenMods{0.2} [OpenMods] (OpenModsLib-0.2.jar) Unloaded->Constructed->Pre-initialized->Errored OpenBlocks{1.2.5} [OpenBlocks] (OpenBlocks-1.2.5.jar) Unloaded->Constructed->Pre-initialized->Errored Redstone Arsenal{1.0.0.0} [Redstone Arsenal] (RedstoneArsenal-1.0.0.0.jar) Unloaded->Constructed->Pre-initialized->Errored TConstruct{1.6.X_1.5.5.7} [Tinkers' Construct] (TConstruct_mc1.6.4_1.5.5.7.jar) Unloaded->Constructed->Pre-initialized->Errored ThaumcraftExtras{1.0.0.4} [Thaumcraft Extras] (ThaumcraftExtras-1.6.4-1.0.0.4.jar) Unloaded->Constructed->Pre-initialized->Errored ThaumicExploration{0.5.1} [Thaumic Exploration] (Thaumic Exploration 0.5.2.jar) Unloaded->Constructed->Pre-initialized->Errored witchery{0.19.2} [Witchery] (witchery-1.6.4-0.19.2.zip) Unloaded->Constructed->Pre-initialized->Errored YALSM{2.0.3} [Yet Another Leather Smelting Mod] (Yet-Another-Leather-Smelting-Mod-1.6.4.jar) Unloaded->Constructed->Pre-initialized->Initialized McMultipart{1.0.0.219} [Minecraft Multipart Plugin] (ForgeMultipart-universal-1.6.4-1.0.0.219.jar) Unloaded->Constructed->Pre-initialized->Initialized ForgeMicroblock{1.0.0.219} [Forge Microblocks] (ForgeMultipart-universal-1.6.4-1.0.0.219.jar) Unloaded->Constructed->Pre-initialized->Errored 2014-08-17 22:04:56 [sEVERE] [ForgeModLoader] The following problems were captured during this phase 2014-08-17 22:04:57 [iNFO] [Minecraft-Server] Stopping server 2014-08-17 22:04:58 [iNFO] [Minecraft-Server] Saving worlds 2014-08-17 22:04:59 [FINEST] [mcp] Sending event FMLServerStoppedEvent to mod mcp 2014-08-17 22:04:59 [FINEST] [mcp] Sent event FMLServerStoppedEvent to mod mcp 2014-08-17 22:04:59 [FINEST] [FML] Sending event FMLServerStoppedEvent to mod FML 2014-08-17 22:04:59 [FINEST] [FML] Sent event FMLServerStoppedEvent to mod FML 2014-08-17 22:04:59 [FINEST] [Forge] Sending event FMLServerStoppedEvent to mod Forge 2014-08-17 22:04:59 [FINEST] [Forge] Sent event FMLServerStoppedEvent to mod Forge 2014-08-17 22:04:59 [FINEST] [AM2-Preloader] Sending event FMLServerStoppedEvent to mod AM2-Preloader 2014-08-17 22:04:59 [FINEST] [AM2-Preloader] Sent event FMLServerStoppedEvent to mod AM2-Preloader 2014-08-17 22:04:59 [FINEST] [AppliedEnergistics-Core] Sending event FMLServerStoppedEvent to mod AppliedEnergistics-Core 2014-08-17 22:04:59 [FINEST] [AppliedEnergistics-Core] Sent event FMLServerStoppedEvent to mod AppliedEnergistics-Core 2014-08-17 22:04:59 [FINEST] [CodeChickenCore] Sending event FMLServerStoppedEvent to mod CodeChickenCore 2014-08-17 22:04:59 [FINEST] [CodeChickenCore] Sent event FMLServerStoppedEvent to mod CodeChickenCore 2014-08-17 22:05:21 [FINEST] [Micdoodlecore] Sending event FMLServerStoppedEvent to mod Micdoodlecore 2014-08-17 22:05:21 [FINEST] [Micdoodlecore] Sent event FMLServerStoppedEvent to mod Micdoodlecore 2014-08-17 22:05:21 [FINEST] [OpenModsCore] Sending event FMLServerStoppedEvent to mod OpenModsCore 2014-08-17 22:05:21 [FINEST] [OpenModsCore] Sent event FMLServerStoppedEvent to mod OpenModsCore 2014-08-17 22:05:21 [FINEST] [PowerCrystalsCore] Sending event FMLServerStoppedEvent to mod PowerCrystalsCore 2014-08-17 22:05:21 [FINEST] [PowerCrystalsCore] Sent event FMLServerStoppedEvent to mod PowerCrystalsCore 2014-08-17 22:05:21 [FINEST] [TConstruct-Preloader] Sending event FMLServerStoppedEvent to mod TConstruct-Preloader 2014-08-17 22:05:21 [FINEST] [TConstruct-Preloader] Sent event FMLServerStoppedEvent to mod TConstruct-Preloader 2014-08-17 22:05:21 [FINEST] [Hats] Sending event FMLServerStoppedEvent to mod Hats 2014-08-17 22:05:21 [FINEST] [Hats] Sent event FMLServerStoppedEvent to mod Hats 2014-08-17 22:05:21 [FINEST] [iChunUtil] Sending event FMLServerStoppedEvent to mod iChunUtil 2014-08-17 22:05:21 [FINEST] [iChunUtil] Sent event FMLServerStoppedEvent to mod iChunUtil 2014-08-17 22:05:21 [FINEST] [Morph] Sending event FMLServerStoppedEvent to mod Morph 2014-08-17 22:05:21 [FINEST] [Morph] Sent event FMLServerStoppedEvent to mod Morph 2014-08-17 22:05:21 [FINEST] [PortalGun] Sending event FMLServerStoppedEvent to mod PortalGun 2014-08-17 22:05:21 [FINEST] [PortalGun] Sent event FMLServerStoppedEvent to mod PortalGun 2014-08-17 22:05:21 [FINEST] [buildCraft|Core] Sending event FMLServerStoppedEvent to mod BuildCraft|Core 2014-08-17 22:05:21 [FINEST] [buildCraft|Core] Sent event FMLServerStoppedEvent to mod BuildCraft|Core 2014-08-17 22:05:21 [FINEST] [buildCraft|Energy] Sending event FMLServerStoppedEvent to mod BuildCraft|Energy 2014-08-17 22:05:21 [FINEST] [buildCraft|Energy] Sent event FMLServerStoppedEvent to mod BuildCraft|Energy 2014-08-17 22:05:21 [FINEST] [CoFHCore] Sending event FMLServerStoppedEvent to mod CoFHCore 2014-08-17 22:05:21 [FINEST] [CoFHCore] Sent event FMLServerStoppedEvent to mod CoFHCore 2014-08-17 22:05:21 [FINEST] [NetherOres] Sending event FMLServerStoppedEvent to mod NetherOres 2014-08-17 22:05:21 [FINEST] [NetherOres] Sent event FMLServerStoppedEvent to mod NetherOres 2014-08-17 22:05:21 [FINEST] [universalElectricity] Sending event FMLServerStoppedEvent to mod UniversalElectricity 2014-08-17 22:05:21 [FINEST] [universalElectricity] Sent event FMLServerStoppedEvent to mod UniversalElectricity 2014-08-17 22:05:21 [FINEST] [ForgeMultipart] Sending event FMLServerStoppedEvent to mod ForgeMultipart 2014-08-17 22:05:21 [FINEST] [ForgeMultipart] Sent event FMLServerStoppedEvent to mod ForgeMultipart 2014-08-17 22:05:21 [FINEST] [ThermalExpansion] Sending event FMLServerStoppedEvent to mod ThermalExpansion 2014-08-17 22:05:21 [FINEST] [ThermalExpansion] Sent event FMLServerStoppedEvent to mod ThermalExpansion 2014-08-17 22:05:21 [FINEST] [iC2] Sending event FMLServerStoppedEvent to mod IC2 2014-08-17 22:05:21 [FINEST] [iC2] Sent event FMLServerStoppedEvent to mod IC2 2014-08-17 22:05:21 [FINEST] [Thaumcraft] Sending event FMLServerStoppedEvent to mod Thaumcraft 2014-08-17 22:05:21 [FINEST] [Thaumcraft] Sent event FMLServerStoppedEvent to mod Thaumcraft 2014-08-17 22:05:21 [FINEST] [AdvancedThaumaturgy] Sending event FMLServerStoppedEvent to mod AdvancedThaumaturgy 2014-08-17 22:05:21 [FINEST] [AdvancedThaumaturgy] Sent event FMLServerStoppedEvent to mod AdvancedThaumaturgy 2014-08-17 22:05:21 [FINEST] [Aether II] Sending event FMLServerStoppedEvent to mod Aether II 2014-08-17 22:05:21 [FINEST] [Aether II] Sent event FMLServerStoppedEvent to mod Aether II 2014-08-17 22:05:21 [FINEST] [AnimationAPI] Sending event FMLServerStoppedEvent to mod AnimationAPI 2014-08-17 22:05:21 [FINEST] [AnimationAPI] Sent event FMLServerStoppedEvent to mod AnimationAPI 2014-08-17 22:05:21 [FINEST] [arsmagica2] Sending event FMLServerStoppedEvent to mod arsmagica2 2014-08-17 22:05:21 [FINEST] [arsmagica2] Sent event FMLServerStoppedEvent to mod arsmagica2 2014-08-17 22:05:21 [FINEST] [AppliedEnergistics] Sending event FMLServerStoppedEvent to mod AppliedEnergistics 2014-08-17 22:05:21 [FINEST] [AppliedEnergistics] Sent event FMLServerStoppedEvent to mod AppliedEnergistics 2014-08-17 22:05:21 [FINEST] [ArchimedesShipsMod] Sending event FMLServerStoppedEvent to mod ArchimedesShipsMod 2014-08-17 22:05:21 [FINEST] [ArchimedesShipsMod] Sent event FMLServerStoppedEvent to mod ArchimedesShipsMod 2014-08-17 22:05:21 [FINEST] [biblioCraft] Sending event FMLServerStoppedEvent to mod BiblioCraft 2014-08-17 22:05:21 [FINEST] [biblioCraft] Sent event FMLServerStoppedEvent to mod BiblioCraft 2014-08-17 22:05:21 [FINEST] [Natura] Sending event FMLServerStoppedEvent to mod Natura 2014-08-17 22:05:21 [FINEST] [Natura] Sent event FMLServerStoppedEvent to mod Natura 2014-08-17 22:05:21 [FINEST] [biomesOPlenty] Sending event FMLServerStoppedEvent to mod BiomesOPlenty 2014-08-17 22:05:21 [FINEST] [biomesOPlenty] Sent event FMLServerStoppedEvent to mod BiomesOPlenty 2014-08-17 22:05:21 [FINEST] [AWWayofTime] Sending event FMLServerStoppedEvent to mod AWWayofTime 2014-08-17 22:05:21 [FINEST] [AWWayofTime] Sent event FMLServerStoppedEvent to mod AWWayofTime 2014-08-17 22:05:21 [FINEST] [buildCraft|Builders] Sending event FMLServerStoppedEvent to mod BuildCraft|Builders 2014-08-17 22:05:21 [FINEST] [buildCraft|Builders] Sent event FMLServerStoppedEvent to mod BuildCraft|Builders 2014-08-17 22:05:21 [FINEST] [buildCraft|Factory] Sending event FMLServerStoppedEvent to mod BuildCraft|Factory 2014-08-17 22:05:21 [FINEST] [buildCraft|Factory] Sent event FMLServerStoppedEvent to mod BuildCraft|Factory 2014-08-17 22:05:21 [FINEST] [buildCraft|Transport] Sending event FMLServerStoppedEvent to mod BuildCraft|Transport 2014-08-17 22:05:21 [FINEST] [buildCraft|Transport] Sent event FMLServerStoppedEvent to mod BuildCraft|Transport 2014-08-17 22:05:21 [FINEST] [buildCraft|Silicon] Sending event FMLServerStoppedEvent to mod BuildCraft|Silicon 2014-08-17 22:05:21 [FINEST] [buildCraft|Silicon] Sent event FMLServerStoppedEvent to mod BuildCraft|Silicon 2014-08-17 22:05:21 [FINEST] [CalclaviaCore] Sending event FMLServerStoppedEvent to mod CalclaviaCore 2014-08-17 22:05:21 [FINEST] [CalclaviaCore] Sent event FMLServerStoppedEvent to mod CalclaviaCore 2014-08-17 22:05:21 [FINEST] [CoFHLoot] Sending event FMLServerStoppedEvent to mod CoFHLoot 2014-08-17 22:05:21 [FINEST] [CoFHLoot] Sent event FMLServerStoppedEvent to mod CoFHLoot 2014-08-17 22:05:21 [FINEST] [CoFHMasquerade] Sending event FMLServerStoppedEvent to mod CoFHMasquerade 2014-08-17 22:05:21 [FINEST] [CoFHMasquerade] Sent event FMLServerStoppedEvent to mod CoFHMasquerade 2014-08-17 22:05:21 [FINEST] [CoFHSocial] Sending event FMLServerStoppedEvent to mod CoFHSocial 2014-08-17 22:05:21 [FINEST] [CoFHSocial] Sent event FMLServerStoppedEvent to mod CoFHSocial 2014-08-17 22:05:21 [FINEST] [CoFHWorld] Sending event FMLServerStoppedEvent to mod CoFHWorld 2014-08-17 22:05:21 [FINEST] [CoFHWorld] Sent event FMLServerStoppedEvent to mod CoFHWorld 2014-08-17 22:05:21 [FINEST] [CustomSpawner] Sending event FMLServerStoppedEvent to mod CustomSpawner 2014-08-17 22:05:21 [FINEST] [CustomSpawner] Sent event FMLServerStoppedEvent to mod CustomSpawner 2014-08-17 22:05:21 [FINEST] [EnderStorage] Sending event FMLServerStoppedEvent to mod EnderStorage 2014-08-17 22:05:21 [FINEST] [EnderStorage] Sent event FMLServerStoppedEvent to mod EnderStorage 2014-08-17 22:05:21 [FINEST] [Railcraft] Sending event FMLServerStoppedEvent to mod Railcraft 2014-08-17 22:05:21 [FINEST] [Railcraft] Sent event FMLServerStoppedEvent to mod Railcraft 2014-08-17 22:05:21 [FINEST] [TwilightForest] Sending event FMLServerStoppedEvent to mod TwilightForest 2014-08-17 22:05:21 [FINEST] [TwilightForest] Sent event FMLServerStoppedEvent to mod TwilightForest 2014-08-17 22:05:21 [FINEST] [DartCraft] Sending event FMLServerStoppedEvent to mod DartCraft 2014-08-17 22:05:21 [FINEST] [DartCraft] Sent event FMLServerStoppedEvent to mod DartCraft 2014-08-17 22:05:21 [FINEST] [MoCreatures] Sending event FMLServerStoppedEvent to mod MoCreatures 2014-08-17 22:05:21 [FINEST] [MoCreatures] Sent event FMLServerStoppedEvent to mod MoCreatures 2014-08-17 22:05:21 [FINEST] [Tombenpotter's Electro-Magic Tools] Sending event FMLServerStoppedEvent to mod Tombenpotter's Electro-Magic Tools 2014-08-17 22:05:21 [FINEST] [Tombenpotter's Electro-Magic Tools] Sent event FMLServerStoppedEvent to mod Tombenpotter's Electro-Magic Tools 2014-08-17 22:05:21 [FINEST] [FlansMod] Sending event FMLServerStoppedEvent to mod FlansMod 2014-08-17 22:05:21 [FINEST] [FlansMod] Sent event FMLServerStoppedEvent to mod FlansMod 2014-08-17 22:05:21 [FINEST] [ThaumicTinkerer] Sending event FMLServerStoppedEvent to mod ThaumicTinkerer 2014-08-17 22:05:21 [FINEST] [ThaumicTinkerer] Sent event FMLServerStoppedEvent to mod ThaumicTinkerer 2014-08-17 22:05:21 [FINEST] [ForbiddenMagic] Sending event FMLServerStoppedEvent to mod ForbiddenMagic 2014-08-17 22:05:21 [FINEST] [ForbiddenMagic] Sent event FMLServerStoppedEvent to mod ForbiddenMagic 2014-08-17 22:05:21 [FINEST] [GalacticraftCore] Sending event FMLServerStoppedEvent to mod GalacticraftCore How can i fix it?
  4. Thanks for the tips. This Youtube channel is Portuguese? I'm not American ....
  5. Hello Well, I'm new here in the forum, and I know a little (very little) about creating mods, but only 1.4.7, where I learned (A Youtube channel) stopped making videos and told to" study the codes Minecraft". Not quite understand, you wanted to tell me how I can" study the codes minecraft "because the last time I saw codes Minecraft .... was totally different from what appeared in the codes of my mod. how I wrote, I need someone to tell me how to study game codes.
×
×
  • Create New...

Important Information

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