Jump to content

pop1040

Members
  • Posts

    15
  • Joined

  • Last visited

Posts posted by pop1040

  1. Fixed, The problem is the logger isn't properly initiated in ChickenBones multipart on certain operating systems. added some code that checks ChickenBones multipart's logger is properly initiated and gives it a copy of the default if it isn't initiated. Insistently this means that my mod might fix forge multipart on operating systems which it is normally incompatible with. Added the following code right before the register part function call:

     

    import codechicken.multipart.package$; //Essential imports
    import codechicken.multipart.handler.MultipartProxy$;
    
    
    //Init function in class
    public void init(){
    if(package$.MODULE$.logger()==null){
    	FMLLog.getLogger().warn("NULL LOGGER FOUND IN MULTIPART, FIXING (probably a glitch with your operating system)");
    	MultipartProxy$.MODULE$.logger_$eq(FMLLog.getLogger());
    }
    MultiPartRegistry.registerParts(this, data);
    }
    

  2. So I've been trying to make ChickenBones multipart working for quite some time. I followed an old tutorial made by a guy who goes by whov for setting up the enviroment with code chicken core and ChickenBones multipart. I also followed his tutorial for a simple multipart. The problem is a null pointer exception that happens when I try to register my multiparts in the multipart registry, and since I don't know scala, I can't tell whats wrong. I think it might be my dev envrioment but no bets on that.

     

    Clues/useful tidbits:

    • The tutorial called for CodeChickenCore to be put in the mods folder and linked in eclipse but this prevented the game from launching as two instances of the mod are loaded so I only linked it and this loads the mod fine with the exception of this crash when I use forge multipart
    • The tutorial was old but for 1.7.x
    • Error occurs whether I'm using IPartFactory2 or not
    • Error occurs on MultiPartRegistry.registerParts(this, data);
    • Errored line is logger.debug("Registered multipart: "+s) in MultiPartRegistry (line 127)
    • Before I rebuilt my development environment the first occurrence of the crash caused the built-in minecraft multipart mod to have the same crash regardless of what I did as well
    • I did nothing to the scala installation and installing the scala IDE plugin for eclipse and using the right-click option "configure->add scala nature" since then has not made a differance

     

    Crash report:

    [18:47:51] [main/INFO] [GradleStart]: Extra: []
    [18:47:51] [main/INFO] [GradleStart]: Found and added coremod: codechicken.core.launch.CodeChickenCorePlugin
    [18:47:51] [main/INFO] [GradleStart]: Found and added coremod: codechicken.core.launch.DepLoader
    [18:47:51] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Thomas/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
    [18:47:51] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
    [18:47:51] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
    [18:47:51] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
    [18:47:51] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
    [18:47:51] [main/INFO] [FML]: Forge Mod Loader version 7.99.30.1492 for Minecraft 1.7.10 loading
    [18:47:51] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_25, running on Windows 8:amd64:6.2, installed at C:\Program Files\Java\jre1.8.0_25
    [18:47:51] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
    [18:47:51] [main/INFO] [FML]: Found a command line coremod : codechicken.core.launch.CodeChickenCorePlugin
    [18:47:52] [main/WARN] [FML]: The coremod codechicken.core.launch.CodeChickenCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [18:47:52] [main/INFO] [FML]: Found a command line coremod : codechicken.core.launch.DepLoader
    [18:47:52] [main/WARN] [FML]: The coremod codechicken.core.launch.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [18:47:52] [main/WARN] [FML]: The coremod codechicken.nei.asm.NEICorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [18:47:52] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
    [18:47:52] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin
    [18:47:52] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
    [18:47:52] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.core.asm.MCPDeobfuscationTransformer.LoadPlugin
    [18:47:52] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.core.launch.CodeChickenCorePlugin
    [18:47:52] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.core.launch.DepLoader
    [18:47:52] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.nei.asm.NEICorePlugin
    [18:47:52] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
    [18:47:52] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
    [18:47:52] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
    [18:47:52] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
    [18:47:52] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
    [18:47:52] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
    [18:47:52] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
    [18:47:55] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
    [18:47:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
    [18:47:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
    [18:47:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
    [18:47:56] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
    [18:47:56] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
    [18:47:56] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
    [18:47:57] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
    [18:47:57] [main/INFO] [GradleStart]: Remapping AccessTransformer rules...
    [18:47:57] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker
    [18:47:57] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker
    [18:47:57] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
    [18:48:00] [main/INFO]: Setting user: Player15
    [18:48:05] [Client thread/INFO]: LWJGL Version: 2.9.1
    [18:48:07] [Client thread/INFO] [sTDOUT]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ----
    // Don't do that.
    
    Time: 7/21/15 6:48 PM
    Description: Loading screen debug info
    
    This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR
    
    
    A detailed walkthrough of the error, its code path and all known details is as follows:
    ---------------------------------------------------------------------------------------
    
    -- System Details --
    Details:
    Minecraft Version: 1.7.10
    Operating System: Windows 8 (amd64) version 6.2
    Java Version: 1.8.0_25, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 864935504 bytes (824 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)
    JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
    AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
    FML: 
    GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.2.0' Renderer: 'GeForce GTX 660M/PCIe/SSE2'
    [18:48:08] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization
    [18:48:08] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1492 Initialized
    [18:48:08] [Client thread/INFO] [FML]: Replaced 183 ore recipies
    [18:48:08] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization
    [18:48:08] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
    [18:48:08] [Client thread/INFO] [FML]: Searching C:\Users\Thomas\Desktop\Forge1.7.10 latest\eclipse\mods for mods
    [18:48:08] [Client thread/INFO] [FML]: Also searching C:\Users\Thomas\Desktop\Forge1.7.10 latest\eclipse\mods\1.7.10 for mods
    [18:48:18] [Client thread/WARN] [ForgeMicroblock]: Mod ForgeMicroblock is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.345
    [18:48:18] [Client thread/WARN] [ForgeMultipart]: Mod ForgeMultipart is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.345
    [18:48:18] [Client thread/WARN] [McMultipart]: Mod McMultipart is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.345
    [18:48:18] [Client thread/INFO] [FML]: Forge Mod Loader has identified 11 mods to load
    [18:48:19] [Client thread/INFO] [FML]: FML has found a non-mod file CodeChickenLib-1.7.10-1.1.3.138-dev.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
    [18:48:19] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, CodeChickenCore, NotEnoughItems, advancedcomponents, pop1040gunmod, ForgeMicroblock, ForgeMultipart, McMultipart, Railcraft] at CLIENT
    [18:48:19] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, CodeChickenCore, NotEnoughItems, advancedcomponents, pop1040gunmod, ForgeMicroblock, ForgeMultipart, McMultipart, Railcraft] at SERVER
    [18:48:22] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Not Enough Items, FMLFileResourcePack:Advanced Components, FMLFileResourcePack:Gun Mod, FMLFileResourcePack:Forge Microblocks, FMLFileResourcePack:Forge Multipart, FMLFileResourcePack:Minecraft Multipart Plugin, FMLFileResourcePack:Railcraft
    [18:48:22] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
    [18:48:22] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations
    [18:48:22] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
    [18:48:22] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
    [18:48:22] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
    [18:48:23] [Client thread/INFO] [FML]: registering converter
    [18:48:23] [Client thread/INFO] [FML]: registering parts
    [18:48:29] [Client thread/INFO] [Railcraft]: Module disabled: ModuleIC2, IC2 not detected
    [18:48:29] [Client thread/INFO] [Railcraft]: Module disabled: ModuleThaumcraft, Thaumcraft not detected
    [18:48:33] [Client thread/INFO] [FML]: Applying holder lookups
    [18:48:33] [Client thread/INFO] [FML]: Holder lookups applied
    [18:48:33] [Client thread/INFO] [FML]: Injecting itemstacks
    [18:48:33] [Client thread/INFO] [FML]: Itemstack injection complete
    [18:48:33] [Client thread/ERROR] [FML]: Fatal errors were detected during the transition from PREINITIALIZATION to INITIALIZATION. Loading cannot continue
    [18:48:33] [Client thread/ERROR] [FML]: 
    States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
    UCH	mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) 
    UCH	FML{7.10.99.99} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.4.1492-1.7.10.jar) 
    UCH	Forge{10.13.4.1492} [Minecraft Forge] (forgeSrc-1.7.10-10.13.4.1492-1.7.10.jar) 
    UCH	CodeChickenCore{1.0.7.46} [CodeChicken Core] (minecraft.jar) 
    UCH	NotEnoughItems{1.0.5.111} [Not Enough Items] (NotEnoughItems-1.7.10-1.0.5.111-dev.jar) 
    UCE	advancedcomponents{0.1} [Advanced Components] (bin) 
    UCH	pop1040gunmod{0.1} [pop1040's Gun Mod] (bin) 
    UCH	ForgeMultipart{1.2.0.345} [Forge Multipart] (ForgeMultipart-1.7.10-1.2.0.345-dev.jar) 
    UCH	McMultipart{1.2.0.345} [Minecraft Multipart Plugin] (ForgeMultipart-1.7.10-1.2.0.345-dev.jar) 
    UCH	Railcraft{9.6.1.0} [Railcraft] (Railcraft_1.7.10-9.6.1.0-dev.jar) 
    UCH	ForgeMicroblock{1.2.0.345} [Forge Microblocks] (ForgeMultipart-1.7.10-1.2.0.345-dev.jar) 
    [18:48:33] [Client thread/ERROR] [FML]: The following problems were captured during this phase
    [18:48:33] [Client thread/ERROR] [FML]: Caught exception from advancedcomponents
    java.lang.NullPointerException
    at codechicken.multipart.MultiPartRegistry$$anonfun$registerParts$2.apply(MultiPartRegistry.scala:127) ~[ForgeMultipart-1.7.10-1.2.0.345-dev.jar:?]
    at codechicken.multipart.MultiPartRegistry$$anonfun$registerParts$2.apply(MultiPartRegistry.scala:123) ~[ForgeMultipart-1.7.10-1.2.0.345-dev.jar:?]
    at scala.collection.IndexedSeqOptimized$class.foreach(IndexedSeqOptimized.scala:33) ~[scala-library-2.11.1.jar:?]
    at scala.collection.mutable.WrappedArray.foreach(WrappedArray.scala:35) ~[scala-library-2.11.1.jar:?]
    at codechicken.multipart.MultiPartRegistry$.registerParts(MultiPartRegistry.scala:123) ~[ForgeMultipart-1.7.10-1.2.0.345-dev.jar:?]
    at codechicken.multipart.MultiPartRegistry$.registerParts(MultiPartRegistry.scala:108) ~[ForgeMultipart-1.7.10-1.2.0.345-dev.jar:?]
    at codechicken.multipart.MultiPartRegistry.registerParts(MultiPartRegistry.scala) ~[ForgeMultipart-1.7.10-1.2.0.345-dev.jar:?]
    at net.pop1040.advancedcomponents.microblock.PartFactory.init(PartFactory.java:32) ~[bin/:?]
    at net.pop1040.advancedcomponents.AdvancedComponents.preInit(AdvancedComponents.java:290) ~[bin/:?]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_25]
    at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:532) ~[forgeSrc-1.7.10-10.13.4.1492-1.7.10.jar:?]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_25]
    at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?]
    at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?]
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?]
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?]
    at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?]
    at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:212) ~[forgeSrc-1.7.10-10.13.4.1492-1.7.10.jar:?]
    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:190) ~[forgeSrc-1.7.10-10.13.4.1492-1.7.10.jar:?]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_25]
    at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?]
    at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?]
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?]
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?]
    at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?]
    at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119) [LoadController.class:?]
    at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:556) [Loader.class:?]
    at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:243) [FMLClientHandler.class:?]
    at net.minecraft.client.Minecraft.startGame(Minecraft.java:522) [Minecraft.class:?]
    at net.minecraft.client.Minecraft.run(Minecraft.java:942) [Minecraft.class:?]
    at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_25]
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
    at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
    at GradleStart.main(Unknown Source) [start/:?]
    [18:48:33] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ----
    // Shall we play a game?
    
    Time: 7/21/15 6:48 PM
    Description: Initializing game
    
    java.lang.NullPointerException: Initializing game
    at codechicken.multipart.MultiPartRegistry$$anonfun$registerParts$2.apply(MultiPartRegistry.scala:127)
    at codechicken.multipart.MultiPartRegistry$$anonfun$registerParts$2.apply(MultiPartRegistry.scala:123)
    at scala.collection.IndexedSeqOptimized$class.foreach(IndexedSeqOptimized.scala:33)
    at scala.collection.mutable.WrappedArray.foreach(WrappedArray.scala:35)
    at codechicken.multipart.MultiPartRegistry$.registerParts(MultiPartRegistry.scala:123)
    at codechicken.multipart.MultiPartRegistry$.registerParts(MultiPartRegistry.scala:108)
    at codechicken.multipart.MultiPartRegistry.registerParts(MultiPartRegistry.scala)
    at net.pop1040.advancedcomponents.microblock.PartFactory.init(PartFactory.java:32)
    at net.pop1040.advancedcomponents.AdvancedComponents.preInit(AdvancedComponents.java:290)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:532)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)
    at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
    at com.google.common.eventbus.EventBus.post(EventBus.java:275)
    at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:212)
    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:190)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)
    at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
    at com.google.common.eventbus.EventBus.post(EventBus.java:275)
    at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119)
    at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:556)
    at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:243)
    at net.minecraft.client.Minecraft.startGame(Minecraft.java:522)
    at net.minecraft.client.Minecraft.run(Minecraft.java:942)
    at net.minecraft.client.main.Main.main(Main.java:164)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
    at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
    at GradleStart.main(Unknown Source)
    
    
    A detailed walkthrough of the error, its code path and all known details is as follows:
    ---------------------------------------------------------------------------------------
    
    -- Head --
    Stacktrace:
    at codechicken.multipart.MultiPartRegistry$$anonfun$registerParts$2.apply(MultiPartRegistry.scala:127)
    at codechicken.multipart.MultiPartRegistry$$anonfun$registerParts$2.apply(MultiPartRegistry.scala:123)
    at scala.collection.IndexedSeqOptimized$class.foreach(IndexedSeqOptimized.scala:33)
    at scala.collection.mutable.WrappedArray.foreach(WrappedArray.scala:35)
    at codechicken.multipart.MultiPartRegistry$.registerParts(MultiPartRegistry.scala:123)
    at codechicken.multipart.MultiPartRegistry$.registerParts(MultiPartRegistry.scala:108)
    at codechicken.multipart.MultiPartRegistry.registerParts(MultiPartRegistry.scala)
    at net.pop1040.advancedcomponents.microblock.PartFactory.init(PartFactory.java:32)
    at net.pop1040.advancedcomponents.AdvancedComponents.preInit(AdvancedComponents.java:290)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:532)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)
    at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
    at com.google.common.eventbus.EventBus.post(EventBus.java:275)
    at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:212)
    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:190)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)
    at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
    at com.google.common.eventbus.EventBus.post(EventBus.java:275)
    at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119)
    at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:556)
    at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:243)
    at net.minecraft.client.Minecraft.startGame(Minecraft.java:522)
    
    -- Initialization --
    Details:
    Stacktrace:
    at net.minecraft.client.Minecraft.run(Minecraft.java:942)
    at net.minecraft.client.main.Main.main(Main.java:164)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
    at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
    at GradleStart.main(Unknown Source)
    
    -- System Details --
    Details:
    Minecraft Version: 1.7.10
    Operating System: Windows 8 (amd64) version 6.2
    Java Version: 1.8.0_25, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 742665120 bytes (708 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)
    JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
    AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
    FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1492 11 mods loaded, 11 mods active
    States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
    UCH	mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) 
    UCH	FML{7.10.99.99} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.4.1492-1.7.10.jar) 
    UCH	Forge{10.13.4.1492} [Minecraft Forge] (forgeSrc-1.7.10-10.13.4.1492-1.7.10.jar) 
    UCH	CodeChickenCore{1.0.7.46} [CodeChicken Core] (minecraft.jar) 
    UCH	NotEnoughItems{1.0.5.111} [Not Enough Items] (NotEnoughItems-1.7.10-1.0.5.111-dev.jar) 
    UCE	advancedcomponents{0.1} [Advanced Components] (bin) 
    UCH	pop1040gunmod{0.1} [pop1040's Gun Mod] (bin) 
    UCH	ForgeMultipart{1.2.0.345} [Forge Multipart] (ForgeMultipart-1.7.10-1.2.0.345-dev.jar) 
    UCH	McMultipart{1.2.0.345} [Minecraft Multipart Plugin] (ForgeMultipart-1.7.10-1.2.0.345-dev.jar) 
    UCH	Railcraft{9.6.1.0} [Railcraft] (Railcraft_1.7.10-9.6.1.0-dev.jar) 
    UCH	ForgeMicroblock{1.2.0.345} [Forge Microblocks] (ForgeMultipart-1.7.10-1.2.0.345-dev.jar) 
    GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.2.0' Renderer: 'GeForce GTX 660M/PCIe/SSE2'
    Launched Version: 1.7.10
    LWJGL: 2.9.1
    OpenGL: GeForce GTX 660M/PCIe/SSE2 GL version 4.2.0, NVIDIA Corporation
    GL Caps: Using GL 1.3 multitexturing.
    Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
    Anisotropic filtering is supported and maximum anisotropy is 16.
    Shaders are available because OpenGL 2.1 is supported.
    
    Is Modded: Definitely; Client brand changed to 'fml,forge'
    Type: Client (map_client.txt)
    Resource Packs: []
    Current Language: English (US)
    Profiler Position: N/A (disabled)
    Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    Anisotropic Filtering: Off (1)
    [18:48:34] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Thomas\Desktop\Forge1.7.10 latest\eclipse\.\crash-reports\crash-2015-07-21_18.48.33-client.txt
    Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release
    

     

    Part Factory:

    package net.pop1040.advancedcomponents.microblock;
    
    import java.util.Arrays;
    
    import net.minecraft.block.Block;
    import net.minecraft.init.Blocks;
    import net.minecraft.nbt.NBTTagCompound;
    import net.minecraft.world.World;
    import net.pop1040.advancedcomponents.AdvancedComponents;
    import codechicken.lib.data.MCDataInput;
    import codechicken.lib.vec.BlockCoord;
    import codechicken.multipart.MultiPartRegistry;
    import codechicken.multipart.MultiPartRegistry.IPartConverter;
    import codechicken.multipart.MultiPartRegistry.IPartFactory;
    import codechicken.multipart.MultiPartRegistry.IPartFactory2;
    import codechicken.multipart.TMultiPart;
    import cpw.mods.fml.common.FMLLog;
    
    public class PartFactory implements IPartFactory2, IPartConverter {
    
    public PartFactory() {
    
    }
    
    public PartFactory init(){
    	FMLLog.getLogger().info("registering converter");
    	MultiPartRegistry.registerConverter(this);
    	FMLLog.getLogger().info("registering parts");
    	String[] data = new String[1];
    	data[0]="ac_conduit";
    
    	//MultiPartRegistry.registerParts(this, new String[]{"ac_conduit"}); //Apparently not an array issue
    	//this made it load but crash/not work when I attemted to use the multipart I added
    	//try{
    		MultiPartRegistry.registerParts(this, data);
    	//}catch(NullPointerException e){
    	//	e.printStackTrace();
    	//	FMLLog.getLogger().error("Caused by");
    	//	if(e.getCause()!=null)e.getCause().printStackTrace();
    	//}
    	//MultiPartRegistry.partList.
    	return this;
    }
    
    @Override
    public Iterable<Block> blockTypes() {
    	return Arrays.asList(AdvancedComponents.conduit);
    }
    
    @Override
    public TMultiPart convert(World world, BlockCoord pos) {
    	Block b = world.getBlock(pos.x, pos.y, pos.z);
    	int meta = world.getBlockMetadata(pos.x, pos.y, pos.z);
    	FMLLog.getLogger().info("convert request at " + pos.x + " " + pos.y + " " + pos.z + " meta " + meta + " block " + b);
    	if(b == AdvancedComponents.conduit)return new ConduitPart(meta);
    	return null;
    }
    
    public TMultiPart createPart(String name) {
    	FMLLog.getLogger().info("create part request (name " + name + ")");
    	if(name.equals("ac_conduit"))return new ConduitPart();
    	return null;
    }
    
    @Override
    public TMultiPart createPart(String arg0, NBTTagCompound arg1) {
    	return createPart(arg0);
    }
    
    @Override
    public TMultiPart createPart(String arg0, MCDataInput arg1) {
    	return createPart(arg0);
    }
    
    }
    

  3. sure, I'll do it that way but I should have asked for this back in 1.6 when I started my mod (I didn't because forge for 1.6 was not being updated due to 1.7 being out). Would it be possible to have this in forge for 1.8? FOV got one and its in the same boat.

  4. One of the items in my mod allows the user to zoom in at a location which I did using the FOV hook. However, I have noticed that there is no hook for the mouse sensitivity. It is simply hard coded to directly use the value of the sensitivity slider and I can't override that without changing the value of the slider (which is not optimal), overriding the whole entityRendere class, overriding the gameSettings class, or using ASM. Note; I am using minecraft 1.7.10, this would be of no use to me in forge for 1.8. The troublesome code where it would be nice to have a hook added:

     

    net.minecraft.client.renderer.EntityRenderer.java

            this.mc.mcProfiler.startSection("mouse");
    
            if (this.mc.inGameHasFocus && flag)
            {
                this.mc.mouseHelper.mouseXYChange();
                float f1 = this.mc.gameSettings.mouseSensitivity * 0.6F + 0.2F; //Right here. Note the direct access to the variable
                float f2 = f1 * f1 * f1 * 8.0F;
                float f3 = (float)this.mc.mouseHelper.deltaX * f2;
                float f4 = (float)this.mc.mouseHelper.deltaY * f2;
                byte b0 = 1;
    
                if (this.mc.gameSettings.invertMouse)
                {
                    b0 = -1;
                }
    
                if (this.mc.gameSettings.smoothCamera)
                {
                    this.smoothCamYaw += f3;
                    this.smoothCamPitch += f4;
                    float f5 = p_78480_1_ - this.smoothCamPartialTicks;
                    this.smoothCamPartialTicks = p_78480_1_;
                    f3 = this.smoothCamFilterX * f5;
                    f4 = this.smoothCamFilterY * f5;
                    this.mc.thePlayer.setAngles(f3, f4 * (float)b0);
                }
                else
                {
                    this.mc.thePlayer.setAngles(f3, f4 * (float)b0);
                }
            }
    
            this.mc.mcProfiler.endSection();

     

    BTW: If anyone knows a good way to do this without a new code or ASM, I would be happy to here it. I should mention I did try overriding the instance of the mouseHelper class with my own that undid the math of the sensitivity code and used my own modifications but the use of integers rendered it a useless change due to it being impossible to move the perspective below certain mouse speeds.

  5. So I've been trying to add forge multipart to my development environment but I haven't had the best of luck. I have a dev environment running with code chicken core, code chicken lib and NEI loaded in the mods folder (the "<Dev enviroment>\eclipse\mods\" one, code chicken lib was in the 1.7.10 subfolder) and linked in eclipse with sources (apart from code chicken lib which I don't have a source for). When I tried to add forge multipart however, it crashed and I have no idea why (I should mention that I do have the scalla jars installed, I'm pretty sure it isn't that). Error code:

     

    [19:52:11] [main/INFO] [GradleStart]: Extra: []

    [19:52:11] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Thomas/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker]

    [19:52:11] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker

    [19:52:11] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker

    [19:52:11] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker

    [19:52:11] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker

    [19:52:11] [main/INFO] [FML]: Forge Mod Loader version 7.10.85.1277 for Minecraft 1.7.10 loading

    [19:52:11] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.8.0_25, running on Windows 8:amd64:6.2, installed at C:\Program Files\Java\jre1.8.0_25

    [19:52:11] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation

    [19:52:12] [main/WARN] [FML]: The coremod codechicken.core.launch.CodeChickenCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft

    [19:52:12] [main/WARN] [FML]: The coremod codechicken.core.launch.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft

    [19:52:12] [main/WARN] [FML]: The coremod codechicken.nei.asm.NEICorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft

    [19:52:12] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker

    [19:52:12] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin

    [19:52:12] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin

    [19:52:12] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.core.asm.MCPDeobfuscationTransformer.LoadPlugin

    [19:52:12] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.core.launch.CodeChickenCorePlugin

    [19:52:12] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.core.launch.DepLoader

    [19:52:12] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.nei.asm.NEICorePlugin

    [19:52:12] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

    [19:52:12] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker

    [19:52:12] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

    [19:52:12] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

    [19:52:12] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

    [19:52:12] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!

    [19:52:15] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing

    [19:52:15] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

    [19:52:15] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

    [19:52:15] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

    [19:52:15] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

    [19:52:15] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

    [19:52:15] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker

    [19:52:16] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker

    [19:52:16] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker

    [19:52:16] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}

    [19:52:21] [main/INFO]: Setting user: Player421

    [19:52:26] [Client thread/INFO]: LWJGL Version: 2.9.1

    [19:52:28] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization

    [19:52:28] [Client thread/INFO] [FML]: MinecraftForge v10.13.2.1277 Initialized

    [19:52:28] [Client thread/INFO] [FML]: Replaced 183 ore recipies

    [19:52:29] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization

    [19:52:29] [Client thread/INFO] [FML]: Searching C:\Users\Thomas\Desktop\Forge1.7.10 dev\eclipse\mods for mods

    [19:52:29] [Client thread/INFO] [FML]: Also searching C:\Users\Thomas\Desktop\Forge1.7.10 dev\eclipse\mods\1.7.10 for mods

    [19:52:33] [Client thread/WARN] [ForgeMicroblock]: Mod ForgeMicroblock is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.1.1.320

    [19:52:33] [Client thread/WARN] [ForgeMultipart]: Mod ForgeMultipart is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.1.1.320

    [19:52:33] [Client thread/WARN] [McMultipart]: Mod McMultipart is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.1.1.320

    [19:52:33] [Client thread/INFO] [FML]: Forge Mod Loader has identified 11 mods to load

    [19:52:33] [Client thread/INFO] [FML]: FML has found a non-mod file CodeChickenLib-1.7.10-1.1.1.99-dev.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.

    [19:52:34] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, CodeChickenCore, NotEnoughItems, advancedcomponents, pop1040gunmod, UniversalElectricity, ForgeMicroblock, ForgeMultipart, McMultipart] at CLIENT

    [19:52:34] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, CodeChickenCore, NotEnoughItems, advancedcomponents, pop1040gunmod, UniversalElectricity, ForgeMicroblock, ForgeMultipart, McMultipart] at SERVER

    [19:52:35] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Not Enough Items, FMLFileResourcePack:Advanced Components, FMLFileResourcePack:Gun Mod, FMLFileResourcePack:Universal Electricity, FMLFileResourcePack:Forge Microblocks, FMLFileResourcePack:Forge Multipart, FMLFileResourcePack:Minecraft Multipart Plugin

    [19:52:35] [Client thread/INFO] [FML]: Processing ObjectHolder annotations

    [19:52:35] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations

    [19:52:35] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0

    [19:52:36] [Client thread/ERROR] [ForgeMicroblock]: Skipping event FMLPreInitializationEvent and marking errored mod ForgeMicroblock since required dependency ForgeMultipart has errored

    [19:52:36] [Client thread/INFO] [FML]: Applying holder lookups

    [19:52:36] [Client thread/INFO] [FML]: Holder lookups applied

    [19:52:36] [Client thread/ERROR] [FML]: Fatal errors were detected during the transition from PREINITIALIZATION to INITIALIZATION. Loading cannot continue

    [19:52:36] [Client thread/ERROR] [FML]:

    mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized

    FML{7.10.85.1277} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1277.jar) Unloaded->Constructed->Pre-initialized

    Forge{10.13.2.1277} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1277.jar) Unloaded->Constructed->Pre-initialized

    CodeChickenCore{1.0.4.29} [CodeChicken Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized

    NotEnoughItems{1.0.3.74} [Not Enough Items] (NotEnoughItems-1.7.10-1.0.3.74-dev.jar) Unloaded->Constructed->Pre-initialized

    advancedcomponents{0.1} [Advanced Components] (bin) Unloaded->Constructed->Pre-initialized

    pop1040gunmod{0.1} [pop1040's Gun Mod] (bin) Unloaded->Constructed->Pre-initialized

    UniversalElectricity{@MAJOR@.@MINOR@.@REVIS@} [universal Electricity] (universal-electricity-4.0.0.88-dev.jar) Unloaded->Constructed->Pre-initialized

    ForgeMultipart{1.1.1.320} [Forge Multipart] (ForgeMultipart-1.7.10-1.1.1.320-dev.jar) Unloaded->Constructed->Errored

    McMultipart{1.1.1.320} [Minecraft Multipart Plugin] (ForgeMultipart-1.7.10-1.1.1.320-dev.jar) Unloaded->Constructed->Pre-initialized

    ForgeMicroblock{1.1.1.320} [Forge Microblocks] (ForgeMultipart-1.7.10-1.1.1.320-dev.jar) Unloaded->Constructed->Errored

    [19:52:36] [Client thread/ERROR] [FML]: The following problems were captured during this phase

    [19:52:36] [Client thread/ERROR] [FML]: Caught exception from ForgeMultipart

    java.lang.NoClassDefFoundError: codechicken/multipart/TileMultipart

    at codechicken.multipart.handler.MultipartProxy_serverImpl.preInit(proxies.scala:35) ~[ForgeMultipart-1.7.10-1.1.1.320-dev.jar:?]

    at codechicken.multipart.handler.MultipartMod$.preInit(MultipartMod.scala:16) ~[ForgeMultipart-1.7.10-1.1.1.320-dev.jar:?]

    at codechicken.multipart.handler.MultipartMod.preInit(MultipartMod.scala) ~[ForgeMultipart-1.7.10-1.1.1.320-dev.jar:?]

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25]

    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25]

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25]

    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_25]

    at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:513) ~[forgeSrc-1.7.10-10.13.2.1277.jar:?]

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25]

    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25]

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25]

    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_25]

    at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?]

    at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?]

    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?]

    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?]

    at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?]

    at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) ~[forgeSrc-1.7.10-10.13.2.1277.jar:?]

    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:187) ~[forgeSrc-1.7.10-10.13.2.1277.jar:?]

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25]

    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25]

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25]

    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_25]

    at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?]

    at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?]

    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?]

    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?]

    at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?]

    at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:118) [LoadController.class:?]

    at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:513) [Loader.class:?]

    at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:239) [FMLClientHandler.class:?]

    at net.minecraft.client.Minecraft.startGame(Minecraft.java:522) [Minecraft.class:?]

    at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?]

    at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25]

    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25]

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25]

    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_25]

    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]

    at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]

    at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]

    at GradleStart.main(GradleStart.java:45) [start/:?]

    Caused by: java.lang.ClassNotFoundException: codechicken.multipart.TileMultipart

    at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191) ~[launchwrapper-1.11.jar:?]

    at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25]

    at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25]

    ... 42 more

    Caused by: java.lang.NoClassDefFoundError: codechicken/lib/world/IChunkLoadTile

    at java.lang.ClassLoader.defineClass1(Native Method) ~[?:1.8.0_25]

    at java.lang.ClassLoader.defineClass(Unknown Source) ~[?:1.8.0_25]

    at java.security.SecureClassLoader.defineClass(Unknown Source) ~[?:1.8.0_25]

    at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182) ~[launchwrapper-1.11.jar:?]

    at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25]

    at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25]

    ... 42 more

    Caused by: java.lang.ClassNotFoundException: codechicken.lib.world.IChunkLoadTile

    at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:101) ~[launchwrapper-1.11.jar:?]

    at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25]

    at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25]

    at java.lang.ClassLoader.defineClass1(Native Method) ~[?:1.8.0_25]

    at java.lang.ClassLoader.defineClass(Unknown Source) ~[?:1.8.0_25]

    at java.security.SecureClassLoader.defineClass(Unknown Source) ~[?:1.8.0_25]

    at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182) ~[launchwrapper-1.11.jar:?]

    at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25]

    at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25]

    ... 42 more

    [19:52:37] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ----

    // My bad.

     

    Time: 1/24/15 7:52 PM

    Description: There was a severe problem during mod loading that has caused the game to fail

     

    cpw.mods.fml.common.LoaderException: java.lang.NoClassDefFoundError: codechicken/multipart/TileMultipart

    at cpw.mods.fml.common.LoadController.transition(LoadController.java:162)

    at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:515)

    at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:239)

    at net.minecraft.client.Minecraft.startGame(Minecraft.java:522)

    at net.minecraft.client.Minecraft.run(Minecraft.java:931)

    at net.minecraft.client.main.Main.main(Main.java:164)

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

    at java.lang.reflect.Method.invoke(Unknown Source)

    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

    at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78)

    at GradleStart.main(GradleStart.java:45)

    Caused by: java.lang.NoClassDefFoundError: codechicken/multipart/TileMultipart

    at codechicken.multipart.handler.MultipartProxy_serverImpl.preInit(proxies.scala:35)

    at codechicken.multipart.handler.MultipartMod$.preInit(MultipartMod.scala:16)

    at codechicken.multipart.handler.MultipartMod.preInit(MultipartMod.scala)

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

    at java.lang.reflect.Method.invoke(Unknown Source)

    at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:513)

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

    at java.lang.reflect.Method.invoke(Unknown Source)

    at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)

    at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)

    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)

    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)

    at com.google.common.eventbus.EventBus.post(EventBus.java:275)

    at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:208)

    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:187)

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

    at java.lang.reflect.Method.invoke(Unknown Source)

    at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)

    at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)

    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)

    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)

    at com.google.common.eventbus.EventBus.post(EventBus.java:275)

    at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:118)

    at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:513)

    ... 12 more

    Caused by: java.lang.ClassNotFoundException: codechicken.multipart.TileMultipart

    at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191)

    at java.lang.ClassLoader.loadClass(Unknown Source)

    at java.lang.ClassLoader.loadClass(Unknown Source)

    ... 42 more

    Caused by: java.lang.NoClassDefFoundError: codechicken/lib/world/IChunkLoadTile

    at java.lang.ClassLoader.defineClass1(Native Method)

    at java.lang.ClassLoader.defineClass(Unknown Source)

    at java.security.SecureClassLoader.defineClass(Unknown Source)

    at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182)

    ... 44 more

    Caused by: java.lang.ClassNotFoundException: codechicken.lib.world.IChunkLoadTile

    at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:101)

    at java.lang.ClassLoader.loadClass(Unknown Source)

    at java.lang.ClassLoader.loadClass(Unknown Source)

    ... 48 more

     

     

    A detailed walkthrough of the error, its code path and all known details is as follows:

    ---------------------------------------------------------------------------------------

     

    -- System Details --

    Details:

    Minecraft Version: 1.7.10

    Operating System: Windows 8 (amd64) version 6.2

    Java Version: 1.8.0_25, Oracle Corporation

    Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

    Memory: 828665264 bytes (790 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)

    JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M

    AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used

    IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0

    FML: MCP v9.05 FML v7.10.85.1277 Minecraft Forge 10.13.2.1277 11 mods loaded, 11 mods active

    mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized

    FML{7.10.85.1277} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1277.jar) Unloaded->Constructed->Pre-initialized

    Forge{10.13.2.1277} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1277.jar) Unloaded->Constructed->Pre-initialized

    CodeChickenCore{1.0.4.29} [CodeChicken Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized

    NotEnoughItems{1.0.3.74} [Not Enough Items] (NotEnoughItems-1.7.10-1.0.3.74-dev.jar) Unloaded->Constructed->Pre-initialized

    advancedcomponents{0.1} [Advanced Components] (bin) Unloaded->Constructed->Pre-initialized

    pop1040gunmod{0.1} [pop1040's Gun Mod] (bin) Unloaded->Constructed->Pre-initialized

    UniversalElectricity{@MAJOR@.@MINOR@.@REVIS@} [universal Electricity] (universal-electricity-4.0.0.88-dev.jar) Unloaded->Constructed->Pre-initialized

    ForgeMultipart{1.1.1.320} [Forge Multipart] (ForgeMultipart-1.7.10-1.1.1.320-dev.jar) Unloaded->Constructed->Errored

    McMultipart{1.1.1.320} [Minecraft Multipart Plugin] (ForgeMultipart-1.7.10-1.1.1.320-dev.jar) Unloaded->Constructed->Pre-initialized

    ForgeMicroblock{1.1.1.320} [Forge Microblocks] (ForgeMultipart-1.7.10-1.1.1.320-dev.jar) Unloaded->Constructed->Errored

    [19:52:37] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Thomas\Desktop\Forge1.7.10 dev\eclipse\.\crash-reports\crash-2015-01-24_19.52.37-client.txt

    Java HotSpot 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release

     

    EDIT:

    found the answer, for some reason my copy of code chicken lib was missing the chickenbones.lib.world.IChunkLoadTile class as well as many others. Just manually downloaded it and didn't attach a source (not sure if that was part of the problem and since it worked, no point messing with it)

     

  6. In my mod, I have an item that has a custom model which I have managed to get to render when held and in 3'd person. My issue is that I can't seem to get it to render the model in my inventory or when the item is thrown. I know it can be done as the rocket launcher from ICBM renders in full 3D and so does some items from mine factory reloaded. Does anyone know how to do this/has done this before?

  7. you could always take a quick look into the code with a java decompiler and see what he did although from the one time I looked in the ICBM jar for some texture information, I think he has it obfuscated. I suppose one could always try and ask him how he did it.

  8. Thanks for trying anyways. I think there might be a way since there is a switch statement which has the option for rendering in an inventory.

    @Override
    public boolean handleRenderType(ItemStack item, ItemRenderType type) {
    	switch(type){
    	case EQUIPPED:
    		return true;
    	case ENTITY:
    		return false;
    	case FIRST_PERSON_MAP:
    		break;
    	case INVENTORY:
    		return false;
    	default:
    		return false;
    	}
    	return false;
    }
    

    trouble is it always crashes when I set it to true and add the same render code into the second switch statement for inventory. I wonder if you could trick it into thinking its a block for rendering and use the block code for a custom model. Anyone have any ideas? Thanks.

  9. In my mod I have an item that has a full 3D model which renders when held with a custom model and in third person with a custom model. For some reason, I can't seem to get it to use that model when viewing the item in an inventory or when the item is thrown. Anyone know a good way to make this work?

  10. since redpower doesn't have a crash report place, I'll post this here (at least I think its redpower and not forge but it could be ether)

     

    The game crashed when a seed entered a in-line sort-machine.  The sorting machine was in manual redstone control mode and the color code mode where unknown items where colored a specific color.  This only happend when a stack of flax seeds entered it (they where not sorted inside it, could happen when other unsorted items are put through).  I think its a render bug with colored flax seeds in pnematic tubes, probably wrong.

     

     

    ------crash report------

    2013-01-14 15:39:40 [iNFO] [ForgeModLoader] Forge Mod Loader version 4.6.12.511 for Minecraft 1.4.6 loading

    2013-01-14 15:39:40 [FINEST] [ForgeModLoader] All core mods are successfully located

    2013-01-14 15:39:40 [FINEST] [ForgeModLoader] Discovering coremods

    2013-01-14 15:39:40 [FINEST] [ForgeModLoader] Found a candidate coremod CodeChickenCore 0.7.0.0.jar

    2013-01-14 15:39:40 [FINEST] [ForgeModLoader] Loading coremod CodeChickenCore 0.7.0.0.jar

    2013-01-14 15:39:40 [FINEST] [ForgeModLoader] Loaded coremod CodeChickenCore 0.7.0.0.jar

    2013-01-14 15:39:40 [FINEST] [ForgeModLoader] Found a candidate coremod NotEnoughItems 1.4.4.0.jar

    2013-01-14 15:39:40 [FINEST] [ForgeModLoader] Loading coremod NotEnoughItems 1.4.4.0.jar

    2013-01-14 15:39:40 [FINEST] [ForgeModLoader] Loaded coremod NotEnoughItems 1.4.4.0.jar

    2013-01-14 15:39:40 [FINEST] [ForgeModLoader] Found library file argo-2.25.jar present and correct in lib dir

    2013-01-14 15:39:41 [FINEST] [ForgeModLoader] Found library file guava-12.0.1.jar present and correct in lib dir

    2013-01-14 15:39:41 [FINEST] [ForgeModLoader] Found library file asm-all-4.0.jar present and correct in lib dir

    2013-01-14 15:39:41 [FINEST] [ForgeModLoader] Found library file bcprov-jdk15on-147.jar present and correct in lib dir

    2013-01-14 15:39:41 [FINEST] [ForgeModLoader] Running coremod plugins

    2013-01-14 15:39:41 [FINEST] [ForgeModLoader] Running coremod plugin FMLCorePlugin

    2013-01-14 15:39:41 [iNFO] [ForgeModLoader] Found valid fingerprint for Minecraft Forge. Certificate fingerprint de4cf8a3f3bc15635810044c39240bf96804ea7d

    2013-01-14 15:39:41 [FINEST] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully

    2013-01-14 15:39:41 [FINEST] [ForgeModLoader] Running coremod plugin FMLForgePlugin

    2013-01-14 15:39:41 [FINEST] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully

    2013-01-14 15:39:41 [FINEST] [ForgeModLoader] Running coremod plugin CodeChickenCorePlugin

    2013-01-14 15:39:41 [iNFO] [sTDOUT] Adding Accesstransformer map: codechickencore_at.cfg

    2013-01-14 15:39:41 [iNFO] [sTDOUT] Adding AccessTransformer: chickenchunks_at.cfg

    2013-01-14 15:39:41 [iNFO] [sTDOUT] Adding Accesstransformer map: temp.dat

    2013-01-14 15:39:41 [FINEST] [ForgeModLoader] Coremod plugin CodeChickenCorePlugin run successfully

    2013-01-14 15:39:41 [FINEST] [ForgeModLoader] Running coremod plugin NEICorePlugin

    2013-01-14 15:39:41 [iNFO] [sTDOUT] Adding Accesstransformer map: nei_at.cfg

    2013-01-14 15:39:41 [FINEST] [ForgeModLoader] Coremod plugin NEICorePlugin run successfully

    2013-01-14 15:39:41 [FINEST] [ForgeModLoader] Validating minecraft

    2013-01-14 15:39:42 [FINEST] [ForgeModLoader] Minecraft validated, launching...

    2013-01-14 15:39:42 [iNFO] [sTDOUT] Inserted super call into avz.c

    2013-01-14 15:39:42 [iNFO] [sTDOUT] avf was overriden from NotEnoughItems 1.4.4.0.jar

    2013-01-14 15:39:43 [iNFO] [sTDOUT] Generated BlockMobSpawner helper method.

    2013-01-14 15:39:43 [iNFO] [sTDOUT] Inserted GameData hook

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vj(256) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uy(257) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item un(258) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uj(259) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uk(260) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item tb(261) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(262) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item tg(263) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(264) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(265) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(266) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vu(267) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vu(268) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vj(269) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uy(270) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item un(271) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vu(272) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vj(273) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uy(274) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item un(275) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vu(276) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vj(277) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uy(278) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item un(279) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(280) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(281) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item tc(282) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vu(283) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vj(284) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uy(285) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item un(286) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vr(287) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(288) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(289) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uo(290) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uo(291) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uo(292) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uo(293) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uo(294) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vh(295) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(296) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uk(297) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item su(298) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item su(299) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item su(300) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item su(301) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item su(302) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item su(303) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item su(304) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item su(305) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item su(306) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item su(307) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item su(308) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item su(309) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item su(310) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item su(311) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item su(312) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item su(313) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item su(314) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item su(315) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item su(316) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item su(317) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(318) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uk(319) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uk(320) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item um(321) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item ul(322) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vk(323) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item tx(324) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item td(325) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item td(326) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item td(327) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uv(328) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item ve(329) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item tx(330) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vd(331) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vn(332) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item sy(333) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(334) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uu(335) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(336) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(337) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vr(338) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(339) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item sz(340) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(341) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uv(342) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uv(343) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item tz(344) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(345) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item ui(346) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(347) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(348) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uk(349) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uk(350) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item ty(351) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(352) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(353) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vr(354) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item sx(355) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vr(356) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uk(357) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item ut(358) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vi(359) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uk(360) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vh(361) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vh(362) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uk(363) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uk(364) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uk(365) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uk(366) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uk(367) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item ud(368) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(369) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(370) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(371) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vh(372) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item va(373) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item ta(374) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uk(375) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(376) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(377) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(378) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vr(379) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vr(380) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uc(381) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(382) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uw(383) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item ue(384) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uf(385) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vv(386) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vw(387) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item up(388) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item um(389) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vr(390) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vg(391) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vg(392) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uk(393) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uk(394) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item ua(395) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uk(396) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vm(397) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item te(398) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vl(399) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uk(400) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uh(401) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item ug(402) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item ub(403) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vc(2256) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vc(2257) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vc(2258) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vc(2259) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vc(2260) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vc(2261) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vc(2262) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vc(2263) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vc(2264) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vc(2265) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vc(2266) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vc(2267) owned by Minecraft

    2013-01-14 15:39:44 [iNFO] [sTDOUT] 27 achievements

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item tf(35) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item ux(17) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item ux(5) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item ux(97) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item ux(98) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item ux(24) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vp(44) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vp(43) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vp(126) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vp(125) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item ux(6) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item us(18) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item th(106) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item th(31) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vt(111) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uz(33) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item uz(29) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item ux(139) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item st(145) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(1) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(2) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(3) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(4) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(7) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(8) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(9) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(10) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(11) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(12) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(13) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(14) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(15) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(16) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(19) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(20) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(21) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(22) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(23) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(25) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(26) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(27) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(28) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(30) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(32) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(34) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(36) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(37) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(38) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(39) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(40) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(41) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(42) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(45) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(46) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(47) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(48) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(49) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(50) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(51) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(52) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(53) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(54) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(55) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(56) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(57) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(58) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(59) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(60) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(61) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(62) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(63) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(64) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(65) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(66) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(67) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(68) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(69) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(70) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(71) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(72) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(73) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(74) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(75) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(76) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(77) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(78) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(79) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(80) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(81) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(82) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(83) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(84) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(85) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(86) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(87) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(88) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(89) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(90) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(91) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(92) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(93) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(94) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(95) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(96) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(99) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(100) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(101) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(102) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(103) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(104) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(105) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(107) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(108) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(109) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(110) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(112) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(113) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(114) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(115) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(116) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(117) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(118) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(119) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(120) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(121) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(122) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(123) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(124) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(127) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(128) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(129) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(130) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(131) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(132) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(133) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(134) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(135) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(136) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(137) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(138) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(140) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(141) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(142) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(143) owned by Minecraft

    2013-01-14 15:39:44 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(144) owned by Minecraft

    2013-01-14 15:39:44 [iNFO] [sTDOUT] 210 recipes

    2013-01-14 15:39:44 [iNFO] [sTDOUT] Setting user: pop1040, 2635565488098590789

    2013-01-14 15:39:44 [iNFO] [sTDOUT] LWJGL Version: 2.4.2

    2013-01-14 15:39:46 [iNFO] [ForgeModLoader] Attempting early MinecraftForge initialization

    2013-01-14 15:39:46 [iNFO] [sTDOUT] MinecraftForge v6.5.0.473 Initialized

    2013-01-14 15:39:46 [iNFO] [ForgeModLoader] MinecraftForge v6.5.0.473 Initialized

    2013-01-14 15:39:46 [iNFO] [sTDOUT] Replaced 84 ore recipies

    2013-01-14 15:39:46 [iNFO] [ForgeModLoader] Completed early MinecraftForge initialization

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer, codechicken.core.asm.CodeChickenCoreModContainer, codechicken.nei.asm.NEIModContainer]

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\bin\minecraft.jar, examining for mod candidates

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\bin\lwjgl.jar

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\bin\lwjgl_util.jar

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\bin\jinput.jar

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\coremods\CodeChickenCore 0.7.0.0.jar, examining for mod candidates

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\coremods\NotEnoughItems 1.4.4.0.jar, examining for mod candidates

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\lib\argo-2.25.jar

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\lib\guava-12.0.1.jar

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\lib\asm-all-4.0.jar

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\lib\bcprov-jdk15on-147.jar

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully

    2013-01-14 15:39:46 [iNFO] [ForgeModLoader] Searching C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods for mods

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Found a candidate zip or jar file Audiotori_r3__1_4_6.zip

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Found a candidate zip or jar file buildcraft-A-3.3.0.jar

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Found a candidate zip or jar file ChickenChunks 1.2.1.0.jar

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Found a candidate zip or jar file compactsolars-universal-1.4.6-3.2.0.21.zip

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Found a candidate zip or jar file ComputerCraft1.48.zip

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Found a candidate zip or jar file ExtrabiomesXL-universal-1.4.6-3.7.0.jar

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Found a candidate zip or jar file forestry-A-1.6.4.1.jar

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Found a candidate zip or jar file IC2NuclearControl-1.4.5.zip

    2013-01-14 15:39:46 [FINE] [ForgeModLoader] Found a candidate zip or jar file industrialcraft-2_1.112.170-lf.jar

    2013-01-14 15:39:47 [FINE] [ForgeModLoader] Found a candidate zip or jar file ironchest-universal-1.4.6-4.5.1.199.zip

    2013-01-14 15:39:47 [FINE] [ForgeModLoader] Found a candidate zip or jar file miscperipherals-2.2.zip

    2013-01-14 15:39:47 [FINE] [ForgeModLoader] Found a candidate zip or jar file ModularForceFieldSystemV2.2.8.2.13.zip

    2013-01-14 15:39:47 [FINE] [ForgeModLoader] Found a candidate zip or jar file NEI_RedPowerPlugin 1.4.3.jar

    2013-01-14 15:39:47 [FINE] [ForgeModLoader] Found a candidate zip or jar file NEIPlugins-1.0.4.1.jar

    2013-01-14 15:39:47 [FINE] [ForgeModLoader] Found a candidate zip or jar file obsidiplates-universal-1.2.0.3.zip

    2013-01-14 15:39:47 [FINE] [ForgeModLoader] Found a candidate zip or jar file Railcraft_1.4.6-6.12.0.0.zip

    2013-01-14 15:39:47 [FINE] [ForgeModLoader] Found a candidate zip or jar file RedPowerCompat-2.0pr6.zip

    2013-01-14 15:39:47 [FINE] [ForgeModLoader] Found a candidate zip or jar file RedPowerCore-2.0pr6.zip

    2013-01-14 15:39:47 [FINE] [ForgeModLoader] Found a candidate zip or jar file RedPowerDigital-2.0pr6.zip

    2013-01-14 15:39:47 [FINE] [ForgeModLoader] Found a candidate zip or jar file RedPowerMechanical-2.0pr6.zip

    2013-01-14 15:39:47 [FINE] [ForgeModLoader] Found a candidate zip or jar file Smart Moving Client for ModLoader.zip

    2013-01-14 15:39:47 [FINE] [ForgeModLoader] Found a candidate zip or jar file SoulShards-v1.14-universal.zip

    2013-01-14 15:39:47 [FINE] [ForgeModLoader] Found a candidate zip or jar file StevesCarts2.0.0.a40.zip

    2013-01-14 15:39:47 [FINE] [ForgeModLoader] Examining file minecraft.jar for potential mods

    2013-01-14 15:39:47 [FINE] [ForgeModLoader] The mod container minecraft.jar appears to be missing an mcmod.info file

    2013-01-14 15:39:47 [FINE] [ForgeModLoader] Examining file CodeChickenCore 0.7.0.0.jar for potential mods

    2013-01-14 15:39:47 [FINE] [ForgeModLoader] The mod container CodeChickenCore 0.7.0.0.jar appears to be missing an mcmod.info file

    2013-01-14 15:39:47 [FINE] [ForgeModLoader] Examining file NotEnoughItems 1.4.4.0.jar for potential mods

    2013-01-14 15:39:47 [FINE] [ForgeModLoader] The mod container NotEnoughItems 1.4.4.0.jar appears to be missing an mcmod.info file

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Examining file Audiotori_r3__1_4_6.zip for potential mods

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] The mod container Audiotori_r3__1_4_6.zip appears to be missing an mcmod.info file

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Identified a class mod_Audiotori following modloader naming convention but not directly a BaseMod or currently seen subclass

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Found a basemod HaddonBridgeModLoader of non-standard naming format

    2013-01-14 15:39:48 [iNFO] [ForgeModLoader] Attempting to reparse the mod container Audiotori_r3__1_4_6.zip

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Examining file Audiotori_r3__1_4_6.zip for potential mods

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] The mod container Audiotori_r3__1_4_6.zip appears to be missing an mcmod.info file

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Identified a BaseMod type mod mod_Audiotori

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Found a basemod HaddonBridgeModLoader of non-standard naming format

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Examining file buildcraft-A-3.3.0.jar for potential mods

    2013-01-14 15:39:48 [FINER] [ForgeModLoader] Located mcmod.info file in file buildcraft-A-3.3.0.jar

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftBuilders

    2013-01-14 15:39:48 [FINEST] [ForgeModLoader] Parsed dependency info : [buildCraft|[email protected]] [buildCraft|[email protected]] []

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftCore

    2013-01-14 15:39:48 [FINEST] [ForgeModLoader] Parsed dependency info : [Forge@[6.3.0.0,)] [Forge@[6.3.0.0,)] []

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftEnergy

    2013-01-14 15:39:48 [FINEST] [ForgeModLoader] Parsed dependency info : [buildCraft|[email protected]] [buildCraft|[email protected]] []

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftFactory

    2013-01-14 15:39:48 [FINEST] [ForgeModLoader] Parsed dependency info : [buildCraft|[email protected]] [buildCraft|[email protected]] []

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftSilicon

    2013-01-14 15:39:48 [FINEST] [ForgeModLoader] Parsed dependency info : [buildCraft|[email protected]] [buildCraft|[email protected]] []

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftTransport

    2013-01-14 15:39:48 [FINEST] [ForgeModLoader] Parsed dependency info : [buildCraft|[email protected]] [buildCraft|[email protected]] []

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Examining file ChickenChunks 1.2.1.0.jar for potential mods

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] The mod container ChickenChunks 1.2.1.0.jar appears to be missing an mcmod.info file

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Identified an FMLMod type mod codechicken.chunkloader.ChickenChunks

    2013-01-14 15:39:48 [FINEST] [ForgeModLoader] Parsed dependency info : [Forge@[6.4.1.413,)] [Forge@[6.4.1.413,)] []

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Examining file compactsolars-universal-1.4.6-3.2.0.21.zip for potential mods

    2013-01-14 15:39:48 [FINER] [ForgeModLoader] Located mcmod.info file in file compactsolars-universal-1.4.6-3.2.0.21.zip

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Identified an FMLMod type mod cpw.mods.compactsolars.CompactSolars

    2013-01-14 15:39:48 [FINEST] [ForgeModLoader] Using mcmod dependency info : [FML@[3.1.15,), Forge@[4.1,), IC2@[1.106,)] [iC2@[1.106,)] []

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Attempting to load the file version.properties from compactsolars-universal-1.4.6-3.2.0.21.zip to locate a version number for CompactSolars

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Found version 3.2.0.21 for mod CompactSolars in version.properties, using

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Examining file ComputerCraft1.48.zip for potential mods

    2013-01-14 15:39:48 [FINER] [ForgeModLoader] Located mcmod.info file in file ComputerCraft1.48.zip

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Identified an FMLMod type mod dan200.CCTurtle

    2013-01-14 15:39:48 [FINEST] [ForgeModLoader] Parsed dependency info : [] [ComputerCraft] []

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Identified an FMLMod type mod dan200.ComputerCraft

    2013-01-14 15:39:48 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Examining file ExtrabiomesXL-universal-1.4.6-3.7.0.jar for potential mods

    2013-01-14 15:39:48 [FINER] [ForgeModLoader] Located mcmod.info file in file ExtrabiomesXL-universal-1.4.6-3.7.0.jar

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Identified an FMLMod type mod extrabiomes.Extrabiomes

    2013-01-14 15:39:48 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Examining file forestry-A-1.6.4.1.jar for potential mods

    2013-01-14 15:39:48 [FINER] [ForgeModLoader] Located mcmod.info file in file forestry-A-1.6.4.1.jar

    2013-01-14 15:39:48 [FINE] [ForgeModLoader] Identified an FMLMod type mod forestry.Forestry

    2013-01-14 15:39:48 [FINEST] [ForgeModLoader] Parsed dependency info : [] [ExtrabiomesXL] []

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Examining file IC2NuclearControl-1.4.5.zip for potential mods

    2013-01-14 15:39:49 [FINER] [ForgeModLoader] Located mcmod.info file in file IC2NuclearControl-1.4.5.zip

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Identified an FMLMod type mod shedar.mods.ic2.nuclearcontrol.IC2NuclearControl

    2013-01-14 15:39:49 [FINEST] [ForgeModLoader] Parsed dependency info : [] [iC2] []

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Examining file industrialcraft-2_1.112.170-lf.jar for potential mods

    2013-01-14 15:39:49 [FINER] [ForgeModLoader] Located mcmod.info file in file industrialcraft-2_1.112.170-lf.jar

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Identified an FMLMod type mod ic2.core.IC2

    2013-01-14 15:39:49 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Examining file ironchest-universal-1.4.6-4.5.1.199.zip for potential mods

    2013-01-14 15:39:49 [FINER] [ForgeModLoader] Located mcmod.info file in file ironchest-universal-1.4.6-4.5.1.199.zip

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Identified an FMLMod type mod cpw.mods.ironchest.IronChest

    2013-01-14 15:39:49 [FINEST] [ForgeModLoader] Parsed dependency info : [Forge@[6.5,)] [Forge@[6.5,)] []

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Attempting to load the file version.properties from ironchest-universal-1.4.6-4.5.1.199.zip to locate a version number for IronChest

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Found version 4.5.1.199 for mod IronChest in version.properties, using

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Examining file miscperipherals-2.2.zip for potential mods

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] The mod container miscperipherals-2.2.zip appears to be missing an mcmod.info file

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Identified an FMLMod type mod miscperipherals.core.MiscPeripherals

    2013-01-14 15:39:49 [FINEST] [ForgeModLoader] Parsed dependency info : [ComputerCraft, CCTurtle] [ComputerCraft, CCTurtle, GregTech_Addon] []

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Examining file ModularForceFieldSystemV2.2.8.2.13.zip for potential mods

    2013-01-14 15:39:49 [FINER] [ForgeModLoader] Located mcmod.info file in file ModularForceFieldSystemV2.2.8.2.13.zip

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Identified an FMLMod type mod chb.mods.mffs.common.ModularForceFieldSystem

    2013-01-14 15:39:49 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Examining file NEI_RedPowerPlugin 1.4.3.jar for potential mods

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] The mod container NEI_RedPowerPlugin 1.4.3.jar appears to be missing an mcmod.info file

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Examining file NEIPlugins-1.0.4.1.jar for potential mods

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] The mod container NEIPlugins-1.0.4.1.jar appears to be missing an mcmod.info file

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Identified an FMLMod type mod mistaqur.nei.NEIPlugins

    2013-01-14 15:39:49 [FINEST] [ForgeModLoader] Parsed dependency info : [mod_NotEnoughItems] [mod_NotEnoughItems] []

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Examining file obsidiplates-universal-1.2.0.3.zip for potential mods

    2013-01-14 15:39:49 [FINER] [ForgeModLoader] Located mcmod.info file in file obsidiplates-universal-1.2.0.3.zip

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Identified an FMLMod type mod myrathi.obsidiplates.e

    2013-01-14 15:39:49 [FINEST] [ForgeModLoader] Using mcmod dependency info : [FML@[4.6,), Forge@[6.5.0,)] [] []

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Examining file Railcraft_1.4.6-6.12.0.0.zip for potential mods

    2013-01-14 15:39:49 [FINER] [ForgeModLoader] Located mcmod.info file in file Railcraft_1.4.6-6.12.0.0.zip

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Identified an FMLMod type mod railcraft.common.core.Railcraft

    2013-01-14 15:39:49 [FINEST] [ForgeModLoader] Parsed dependency info : [Forge@[6.5.0.472,)] [Forge@[6.5.0.472,), BuildCraft|Core, BuildCraft|Energy, BuildCraft|Builders, BuildCraft|Factory, Forestry, IC2] []

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Examining file RedPowerCompat-2.0pr6.zip for potential mods

    2013-01-14 15:39:49 [FINER] [ForgeModLoader] Located mcmod.info file in file RedPowerCompat-2.0pr6.zip

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Identified an FMLMod type mod com.eloraam.redpower.RedPowerCompat

    2013-01-14 15:39:49 [FINEST] [ForgeModLoader] Parsed dependency info : [RedPowerMachine, RedPowerBase] [RedPowerBase, RedPowerMachine, BuildCraftBase] []

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Examining file RedPowerCore-2.0pr6.zip for potential mods

    2013-01-14 15:39:49 [FINER] [ForgeModLoader] Located mcmod.info file in file RedPowerCore-2.0pr6.zip

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Identified an FMLMod type mod com.eloraam.redpower.RedPowerCore

    2013-01-14 15:39:49 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Identified an FMLMod type mod com.eloraam.redpower.RedPowerBase

    2013-01-14 15:39:49 [FINEST] [ForgeModLoader] Parsed dependency info : [RedPowerCore] [RedPowerCore] []

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Examining file RedPowerDigital-2.0pr6.zip for potential mods

    2013-01-14 15:39:49 [FINER] [ForgeModLoader] Located mcmod.info file in file RedPowerDigital-2.0pr6.zip

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Identified an FMLMod type mod com.eloraam.redpower.RedPowerWiring

    2013-01-14 15:39:49 [FINEST] [ForgeModLoader] Parsed dependency info : [RedPowerBase] [RedPowerBase] []

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Identified an FMLMod type mod com.eloraam.redpower.RedPowerLogic

    2013-01-14 15:39:49 [FINEST] [ForgeModLoader] Parsed dependency info : [RedPowerBase] [RedPowerBase] []

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Identified an FMLMod type mod com.eloraam.redpower.RedPowerLighting

    2013-01-14 15:39:49 [FINEST] [ForgeModLoader] Parsed dependency info : [RedPowerBase] [RedPowerBase] []

    2013-01-14 15:39:49 [FINE] [ForgeModLoader] Examining file RedPowerMechanical-2.0pr6.zip for potential mods

    2013-01-14 15:39:50 [FINER] [ForgeModLoader] Located mcmod.info file in file RedPowerMechanical-2.0pr6.zip

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Identified an FMLMod type mod com.eloraam.redpower.RedPowerWorld

    2013-01-14 15:39:50 [FINEST] [ForgeModLoader] Parsed dependency info : [RedPowerBase] [RedPowerBase] []

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Identified an FMLMod type mod com.eloraam.redpower.RedPowerMachine

    2013-01-14 15:39:50 [FINEST] [ForgeModLoader] Parsed dependency info : [RedPowerBase] [RedPowerBase] []

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Identified an FMLMod type mod com.eloraam.redpower.RedPowerControl

    2013-01-14 15:39:50 [FINEST] [ForgeModLoader] Parsed dependency info : [RedPowerBase] [RedPowerBase] []

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Examining file Smart Moving Client for ModLoader.zip for potential mods

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] The mod container Smart Moving Client for ModLoader.zip appears to be missing an mcmod.info file

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Identified a BaseMod type mod mod_SmartMoving

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Identified a BaseMod type mod mod_SmartRender

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Examining file SoulShards-v1.14-universal.zip for potential mods

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] The mod container SoulShards-v1.14-universal.zip appears to be missing an mcmod.info file

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Identified an FMLMod type mod com.shadwdrgn.soulshards.SoulShards

    2013-01-14 15:39:50 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Examining file StevesCarts2.0.0.a40.zip for potential mods

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] The mod container StevesCarts2.0.0.a40.zip appears to be missing an mcmod.info file

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Identified an FMLMod type mod vswe.stevescarts.StevesCarts

    2013-01-14 15:39:50 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []

    2013-01-14 15:39:50 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 39 mods to load

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Received a system property request ''

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] System property request managing the state of 0 mods

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] After merging, found state information for 0 mods

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod mcp

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod FML

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod Forge

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod mod_CodeChickenCore

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod mod_NotEnoughItems

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod mod_Audiotori

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod mod_Audiotori

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod BuildCraft|Builders

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod BuildCraft|Builders

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod BuildCraft|Core

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod BuildCraft|Core

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod BuildCraft|Energy

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod BuildCraft|Energy

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod BuildCraft|Factory

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod BuildCraft|Factory

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod BuildCraft|Silicon

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod BuildCraft|Silicon

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod BuildCraft|Transport

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod BuildCraft|Transport

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod ChickenChunks

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod ChickenChunks

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod CompactSolars

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod CompactSolars

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod CCTurtle

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod CCTurtle

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod ComputerCraft

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod ComputerCraft

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod ExtrabiomesXL

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod ExtrabiomesXL

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod Forestry

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod Forestry

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod IC2NuclearControl

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod IC2NuclearControl

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod IC2

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod IC2

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod IronChest

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod IronChest

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod MiscPeripherals

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod MiscPeripherals

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod ModularForceFieldSystem

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod ModularForceFieldSystem

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod NEIPlugins

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod NEIPlugins

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod ObsidiPlates

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod ObsidiPlates

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod Railcraft

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod Railcraft

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod RedPowerCompat

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod RedPowerCompat

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod RedPowerCore

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod RedPowerCore

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod RedPowerBase

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod RedPowerBase

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod RedPowerWiring

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod RedPowerWiring

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod RedPowerLogic

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod RedPowerLogic

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod RedPowerLighting

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod RedPowerLighting

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod RedPowerWorld

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod RedPowerWorld

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod RedPowerMachine

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod RedPowerMachine

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod RedPowerControl

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod RedPowerControl

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod mod_SmartMoving

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod mod_SmartMoving

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod mod_SmartRender

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod mod_SmartRender

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod SoulShards

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod SoulShards

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Enabling mod StevesCarts

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Activating mod StevesCarts

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Verifying mod requirements are satisfied

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] All mod requirements are satisfied

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Sorting mods into an ordered list

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Mod sorting completed successfully

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Mod sorting data:

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] mod_Audiotori(mod_Audiotori:Not available): Audiotori_r3__1_4_6.zip ()

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] BuildCraft|Core(BuildCraft:3.3.0): buildcraft-A-3.3.0.jar (required-after:Forge@[6.3.0.0,))

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] BuildCraft|Builders(BC Builders:3.3.0): buildcraft-A-3.3.0.jar (required-after:BuildCraft|[email protected])

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] BuildCraft|Energy(BC Energy:3.3.0): buildcraft-A-3.3.0.jar (required-after:BuildCraft|[email protected])

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] BuildCraft|Factory(BC Factory:3.3.0): buildcraft-A-3.3.0.jar (required-after:BuildCraft|[email protected])

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] BuildCraft|Transport(BC Transport:3.3.0): buildcraft-A-3.3.0.jar (required-after:BuildCraft|[email protected])

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] BuildCraft|Silicon(BC Silicon:3.3.0): buildcraft-A-3.3.0.jar (required-after:BuildCraft|[email protected])

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] ChickenChunks(ChickenChunks:1.2.1.0): ChickenChunks 1.2.1.0.jar (required-after:Forge@[6.4.1.413,))

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] IC2(IndustrialCraft 2:1.112.170-lf): industrialcraft-2_1.112.170-lf.jar ()

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] CompactSolars(Compact Solar Arrays:3.2.0.21): compactsolars-universal-1.4.6-3.2.0.21.zip ()

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] ComputerCraft(ComputerCraft:1.48): ComputerCraft1.48.zip ()

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] CCTurtle(ComputerCraft Turtles:1.48): ComputerCraft1.48.zip (after:ComputerCraft)

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] ExtrabiomesXL(ExtrabiomesXL:3.7.0): ExtrabiomesXL-universal-1.4.6-3.7.0.jar ()

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Forestry(Forestry for Minecraft:1.6.4.1): forestry-A-1.6.4.1.jar (after:ExtrabiomesXL)

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] IC2NuclearControl(Nuclear Control:1.4.5): IC2NuclearControl-1.4.5.zip (after:IC2)

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] IronChest(Iron Chest:4.5.1.199): ironchest-universal-1.4.6-4.5.1.199.zip (required-after:Forge@[6.5,))

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] MiscPeripherals(MiscPeripherals:2.2): miscperipherals-2.2.zip (required-after:ComputerCraft;required-after:CCTurtle;after:GregTech_Addon)

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] ModularForceFieldSystem(Modular ForceField System V2:2.2.8.2.13): ModularForceFieldSystemV2.2.8.2.13.zip ()

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] NEIPlugins(NEI Plugins:1.0.4.1): NEIPlugins-1.0.4.1.jar (required-after:mod_NotEnoughItems)

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] ObsidiPlates(Obsidian Pressure Plates:1.2.0): obsidiplates-universal-1.2.0.3.zip ()

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Railcraft(Railcraft:6.12.0.0): Railcraft_1.4.6-6.12.0.0.zip (required-after:Forge@[6.5.0.472,);after:BuildCraft|Core;after:BuildCraft|Energy;after:BuildCraft|Builders;after:BuildCraft|Factory;after:Forestry;after:IC2)

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] RedPowerCore(RedPower:2.0pr6): RedPowerCore-2.0pr6.zip ()

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] RedPowerBase(RP Base:2.0pr6): RedPowerCore-2.0pr6.zip (required-after:RedPowerCore)

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] RedPowerMachine(RP Machine:2.0pr6): RedPowerMechanical-2.0pr6.zip (required-after:RedPowerBase)

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] RedPowerCompat(RP Compat:2.0pr6): RedPowerCompat-2.0pr6.zip (required-after:RedPowerBase;required-after:RedPowerMachine;after:BuildCraftBase)

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] RedPowerWiring(RP Wiring:2.0pr6): RedPowerDigital-2.0pr6.zip (required-after:RedPowerBase)

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] RedPowerLogic(RP Logic:2.0pr6): RedPowerDigital-2.0pr6.zip (required-after:RedPowerBase)

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] RedPowerLighting(RP Lighting:2.0pr6): RedPowerDigital-2.0pr6.zip (required-after:RedPowerBase)

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] RedPowerWorld(RP World:2.0pr6): RedPowerMechanical-2.0pr6.zip (required-after:RedPowerBase)

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] RedPowerControl(RP Control:2.0pr6): RedPowerMechanical-2.0pr6.zip (required-after:RedPowerBase)

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] mod_SmartMoving(mod_SmartMoving:Not available): Smart Moving Client for ModLoader.zip ()

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] mod_SmartRender(mod_SmartRender:Not available): Smart Moving Client for ModLoader.zip ()

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] SoulShards(Soul Shards:1.14): SoulShards-v1.14-universal.zip ()

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] StevesCarts(Steve's Carts:2.0.0.a40): StevesCarts2.0.0.a40.zip ()

    2013-01-14 15:39:50 [iNFO] [ForgeModLoader] FML has found a non-mod file NEI_RedPowerPlugin 1.4.3.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.

    2013-01-14 15:39:50 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod mcp

    2013-01-14 15:39:50 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod mcp

    2013-01-14 15:39:50 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod FML

    2013-01-14 15:39:50 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod FML

    2013-01-14 15:39:50 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod Forge

    2013-01-14 15:39:50 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod Forge

    2013-01-14 15:39:50 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod mod_CodeChickenCore

    2013-01-14 15:39:50 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod mod_CodeChickenCore

    2013-01-14 15:39:50 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod mod_NotEnoughItems

    2013-01-14 15:39:50 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod mod_NotEnoughItems

    2013-01-14 15:39:50 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod mod_Audiotori

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] No MLProp configuration for mod_Audiotori found or required. No file written

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Injecting dummy network mod handler for BaseMod mod_Audiotori

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into mod_Audiotori

    2013-01-14 15:39:50 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod mod_Audiotori

    2013-01-14 15:39:50 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod BuildCraft|Core

    2013-01-14 15:39:50 [sEVERE] [ForgeModLoader] The mod BuildCraft|Core is expecting signature null for source buildcraft-A-3.3.0.jar, however there is no signature matching that description

    2013-01-14 15:39:50 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Core to verify it accepts its own version in a remote connection

    2013-01-14 15:39:50 [FINEST] [ForgeModLoader] The mod BuildCraft|Core accepts its own version (3.3.0)

    2013-01-14 15:39:50 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Core

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod BuildCraft|Core

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod BuildCraft|Builders

    2013-01-14 15:39:51 [sEVERE] [ForgeModLoader] The mod BuildCraft|Builders is expecting signature null for source buildcraft-A-3.3.0.jar, however there is no signature matching that description

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Builders to verify it accepts its own version in a remote connection

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] The mod BuildCraft|Builders accepts its own version (3.3.0)

    2013-01-14 15:39:51 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Builders

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod BuildCraft|Builders

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod BuildCraft|Energy

    2013-01-14 15:39:51 [sEVERE] [ForgeModLoader] The mod BuildCraft|Energy is expecting signature null for source buildcraft-A-3.3.0.jar, however there is no signature matching that description

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Energy to verify it accepts its own version in a remote connection

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] The mod BuildCraft|Energy accepts its own version (3.3.0)

    2013-01-14 15:39:51 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Energy

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod BuildCraft|Energy

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod BuildCraft|Factory

    2013-01-14 15:39:51 [sEVERE] [ForgeModLoader] The mod BuildCraft|Factory is expecting signature null for source buildcraft-A-3.3.0.jar, however there is no signature matching that description

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Factory to verify it accepts its own version in a remote connection

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] The mod BuildCraft|Factory accepts its own version (3.3.0)

    2013-01-14 15:39:51 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Factory

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod BuildCraft|Factory

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod BuildCraft|Transport

    2013-01-14 15:39:51 [sEVERE] [ForgeModLoader] The mod BuildCraft|Transport is expecting signature null for source buildcraft-A-3.3.0.jar, however there is no signature matching that description

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Transport to verify it accepts its own version in a remote connection

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] The mod BuildCraft|Transport accepts its own version (3.3.0)

    2013-01-14 15:39:51 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Transport

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod BuildCraft|Transport

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod BuildCraft|Silicon

    2013-01-14 15:39:51 [sEVERE] [ForgeModLoader] The mod BuildCraft|Silicon is expecting signature null for source buildcraft-A-3.3.0.jar, however there is no signature matching that description

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Silicon to verify it accepts its own version in a remote connection

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] The mod BuildCraft|Silicon accepts its own version (3.3.0)

    2013-01-14 15:39:51 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Silicon

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod BuildCraft|Silicon

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod ChickenChunks

    2013-01-14 15:39:51 [sEVERE] [ForgeModLoader] The mod ChickenChunks is expecting signature null for source ChickenChunks 1.2.1.0.jar, however there is no signature matching that description

    2013-01-14 15:39:51 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ChickenChunks

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod ChickenChunks

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod IC2

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] Testing mod IC2 to verify it accepts its own version in a remote connection

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] The mod IC2 accepts its own version (1.112.170-lf)

    2013-01-14 15:39:51 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into IC2

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod IC2

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod CompactSolars

    2013-01-14 15:39:51 [sEVERE] [ForgeModLoader] The mod CompactSolars is expecting signature null for source compactsolars-universal-1.4.6-3.2.0.21.zip, however there is no signature matching that description

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] Testing mod CompactSolars to verify it accepts its own version in a remote connection

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] The mod CompactSolars accepts its own version (3.2.0.21)

    2013-01-14 15:39:51 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into CompactSolars

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod CompactSolars

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod ComputerCraft

    2013-01-14 15:39:51 [sEVERE] [ForgeModLoader] The mod ComputerCraft is expecting signature null for source ComputerCraft1.48.zip, however there is no signature matching that description

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] Testing mod ComputerCraft to verify it accepts its own version in a remote connection

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] The mod ComputerCraft accepts its own version (1.48)

    2013-01-14 15:39:51 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ComputerCraft

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod ComputerCraft

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod CCTurtle

    2013-01-14 15:39:51 [sEVERE] [ForgeModLoader] The mod CCTurtle is expecting signature null for source ComputerCraft1.48.zip, however there is no signature matching that description

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] Testing mod CCTurtle to verify it accepts its own version in a remote connection

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] The mod CCTurtle accepts its own version (1.48)

    2013-01-14 15:39:51 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into CCTurtle

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod CCTurtle

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod ExtrabiomesXL

    2013-01-14 15:39:51 [sEVERE] [ForgeModLoader] The mod ExtrabiomesXL is expecting signature null for source ExtrabiomesXL-universal-1.4.6-3.7.0.jar, however there is no signature matching that description

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] Testing mod ExtrabiomesXL to verify it accepts its own version in a remote connection

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] The mod ExtrabiomesXL accepts its own version (3.7.0)

    2013-01-14 15:39:51 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ExtrabiomesXL

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod ExtrabiomesXL

    2013-01-14 15:39:51 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod Forestry

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] Testing mod Forestry to verify it accepts its own version in a remote connection

    2013-01-14 15:39:51 [FINEST] [ForgeModLoader] The mod Forestry accepts its own version (1.6.4.1)

    2013-01-14 15:39:51 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into Forestry

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod Forestry

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod IC2NuclearControl

    2013-01-14 15:39:52 [sEVERE] [ForgeModLoader] The mod IC2NuclearControl is expecting signature null for source IC2NuclearControl-1.4.5.zip, however there is no signature matching that description

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] Testing mod IC2NuclearControl to verify it accepts its own version in a remote connection

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] The mod IC2NuclearControl accepts its own version (1.4.5)

    2013-01-14 15:39:52 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into IC2NuclearControl

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod IC2NuclearControl

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod IronChest

    2013-01-14 15:39:52 [sEVERE] [ForgeModLoader] The mod IronChest is expecting signature null for source ironchest-universal-1.4.6-4.5.1.199.zip, however there is no signature matching that description

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] Testing mod IronChest to verify it accepts its own version in a remote connection

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] The mod IronChest accepts its own version (4.5.1.199)

    2013-01-14 15:39:52 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into IronChest

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod IronChest

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod MiscPeripherals

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] Testing mod MiscPeripherals to verify it accepts its own version in a remote connection

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] The mod MiscPeripherals accepts its own version (2.2)

    2013-01-14 15:39:52 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MiscPeripherals

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod MiscPeripherals

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod ModularForceFieldSystem

    2013-01-14 15:39:52 [sEVERE] [ForgeModLoader] The mod ModularForceFieldSystem is expecting signature null for source ModularForceFieldSystemV2.2.8.2.13.zip, however there is no signature matching that description

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] Testing mod ModularForceFieldSystem to verify it accepts its own version in a remote connection

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] The mod ModularForceFieldSystem accepts its own version (2.2.8.2.13)

    2013-01-14 15:39:52 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ModularForceFieldSystem

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod ModularForceFieldSystem

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod NEIPlugins

    2013-01-14 15:39:52 [sEVERE] [ForgeModLoader] The mod NEIPlugins is expecting signature null for source NEIPlugins-1.0.4.1.jar, however there is no signature matching that description

    2013-01-14 15:39:52 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into NEIPlugins

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod NEIPlugins

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod ObsidiPlates

    2013-01-14 15:39:52 [sEVERE] [ForgeModLoader] The mod ObsidiPlates is expecting signature null for source obsidiplates-universal-1.2.0.3.zip, however there is no signature matching that description

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] Testing mod ObsidiPlates to verify it accepts its own version in a remote connection

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] The mod ObsidiPlates accepts its own version (1.2.0)

    2013-01-14 15:39:52 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ObsidiPlates

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod ObsidiPlates

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod Railcraft

    2013-01-14 15:39:52 [sEVERE] [ForgeModLoader] The mod Railcraft is expecting signature null for source Railcraft_1.4.6-6.12.0.0.zip, however there is no signature matching that description

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] Testing mod Railcraft to verify it accepts its own version in a remote connection

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] The mod Railcraft accepts its own version (6.12.0.0)

    2013-01-14 15:39:52 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into Railcraft

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod Railcraft

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod RedPowerCore

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] Testing mod RedPowerCore to verify it accepts its own version in a remote connection

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] The mod RedPowerCore accepts its own version (2.0pr6)

    2013-01-14 15:39:52 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into RedPowerCore

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod RedPowerCore

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod RedPowerBase

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] Testing mod RedPowerBase to verify it accepts its own version in a remote connection

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] The mod RedPowerBase accepts its own version (2.0pr6)

    2013-01-14 15:39:52 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into RedPowerBase

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod RedPowerBase

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod RedPowerMachine

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] Testing mod RedPowerMachine to verify it accepts its own version in a remote connection

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] The mod RedPowerMachine accepts its own version (2.0pr6)

    2013-01-14 15:39:52 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into RedPowerMachine

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod RedPowerMachine

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod RedPowerCompat

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] Testing mod RedPowerCompat to verify it accepts its own version in a remote connection

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] The mod RedPowerCompat accepts its own version (2.0pr6)

    2013-01-14 15:39:52 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into RedPowerCompat

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod RedPowerCompat

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod RedPowerWiring

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] Testing mod RedPowerWiring to verify it accepts its own version in a remote connection

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] The mod RedPowerWiring accepts its own version (2.0pr6)

    2013-01-14 15:39:52 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into RedPowerWiring

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod RedPowerWiring

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod RedPowerLogic

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] Testing mod RedPowerLogic to verify it accepts its own version in a remote connection

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] The mod RedPowerLogic accepts its own version (2.0pr6)

    2013-01-14 15:39:52 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into RedPowerLogic

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod RedPowerLogic

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod RedPowerLighting

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] Testing mod RedPowerLighting to verify it accepts its own version in a remote connection

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] The mod RedPowerLighting accepts its own version (2.0pr6)

    2013-01-14 15:39:52 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into RedPowerLighting

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod RedPowerLighting

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod RedPowerWorld

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] Testing mod RedPowerWorld to verify it accepts its own version in a remote connection

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] The mod RedPowerWorld accepts its own version (2.0pr6)

    2013-01-14 15:39:52 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into RedPowerWorld

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod RedPowerWorld

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod RedPowerControl

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] Testing mod RedPowerControl to verify it accepts its own version in a remote connection

    2013-01-14 15:39:52 [FINEST] [ForgeModLoader] The mod RedPowerControl accepts its own version (2.0pr6)

    2013-01-14 15:39:52 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into RedPowerControl

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod RedPowerControl

    2013-01-14 15:39:52 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod mod_SmartMoving

    2013-01-14 15:39:52 [FINE] [ForgeModLoader] No MLProp configuration for mod_SmartMoving found or required. No file written

    2013-01-14 15:39:52 [FINE] [ForgeModLoader] Injecting dummy network mod handler for BaseMod mod_SmartMoving

    2013-01-14 15:39:53 [iNFO] [sTDOUT] PlayerAPI 1.1 Created

    2013-01-14 15:39:53 [iNFO] [sTDOUT] PlayerAPI: registered Smart Moving

    2013-01-14 15:39:53 [iNFO] [sTDOUT] ServerPlayerAPI 1.1 Created

    2013-01-14 15:39:53 [iNFO] [sTDOUT] ServerPlayerAPI: registered Smart Moving

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into mod_SmartMoving

    2013-01-14 15:39:53 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod mod_SmartMoving

    2013-01-14 15:39:53 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod mod_SmartRender

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] No MLProp configuration for mod_SmartRender found or required. No file written

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] Injecting dummy network mod handler for BaseMod mod_SmartRender

    2013-01-14 15:39:53 [iNFO] [sTDOUT] PlayerAPI: registered Smart Render

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into mod_SmartRender

    2013-01-14 15:39:53 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod mod_SmartRender

    2013-01-14 15:39:53 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod SoulShards

    2013-01-14 15:39:53 [sEVERE] [ForgeModLoader] The mod SoulShards is expecting signature null for source SoulShards-v1.14-universal.zip, however there is no signature matching that description

    2013-01-14 15:39:53 [FINEST] [ForgeModLoader] Testing mod SoulShards to verify it accepts its own version in a remote connection

    2013-01-14 15:39:53 [FINEST] [ForgeModLoader] The mod SoulShards accepts its own version (1.14)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into SoulShards

    2013-01-14 15:39:53 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod SoulShards

    2013-01-14 15:39:53 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod StevesCarts

    2013-01-14 15:39:53 [sEVERE] [ForgeModLoader] The mod StevesCarts is expecting signature null for source StevesCarts2.0.0.a40.zip, however there is no signature matching that description

    2013-01-14 15:39:53 [FINEST] [ForgeModLoader] Testing mod StevesCarts to verify it accepts its own version in a remote connection

    2013-01-14 15:39:53 [FINEST] [ForgeModLoader] The mod StevesCarts accepts its own version (2.0.0.a40)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into StevesCarts

    2013-01-14 15:39:53 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod StevesCarts

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] Mod signature data:

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] mcp(Minecraft Coder Pack:7.25): minecraft.jar (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] FML(Forge Mod Loader:4.6.12.511): coremods (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] Forge(Minecraft Forge:6.5.0.473): coremods (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] mod_CodeChickenCore(CodeChicken Core:0.7.0.0): coremods (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] mod_NotEnoughItems(Not Enough Items:1.4.4.0): coremods (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] mod_Audiotori(mod_Audiotori:r3 for 1.4.6): Audiotori_r3__1_4_6.zip (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] BuildCraft|Core(BuildCraft:3.3.0): buildcraft-A-3.3.0.jar (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] BuildCraft|Builders(BC Builders:3.3.0): buildcraft-A-3.3.0.jar (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] BuildCraft|Energy(BC Energy:3.3.0): buildcraft-A-3.3.0.jar (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] BuildCraft|Factory(BC Factory:3.3.0): buildcraft-A-3.3.0.jar (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] BuildCraft|Transport(BC Transport:3.3.0): buildcraft-A-3.3.0.jar (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] BuildCraft|Silicon(BC Silicon:3.3.0): buildcraft-A-3.3.0.jar (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] ChickenChunks(ChickenChunks:1.2.1.0): ChickenChunks 1.2.1.0.jar (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] IC2(IndustrialCraft 2:1.112.170-lf): industrialcraft-2_1.112.170-lf.jar (de041f9f6187debbc77034a344134053277aa3b0)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] CompactSolars(Compact Solar Arrays:3.2.0.21): compactsolars-universal-1.4.6-3.2.0.21.zip (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] ComputerCraft(ComputerCraft:1.48): ComputerCraft1.48.zip (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] CCTurtle(ComputerCraft Turtles:1.48): ComputerCraft1.48.zip (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] ExtrabiomesXL(ExtrabiomesXL:3.7.0): ExtrabiomesXL-universal-1.4.6-3.7.0.jar (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] Forestry(Forestry for Minecraft:1.6.4.1): forestry-A-1.6.4.1.jar (862700d0712182f612efd419ad296f9ed482ec1d)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] IC2NuclearControl(Nuclear Control:1.4.5): IC2NuclearControl-1.4.5.zip (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] IronChest(Iron Chest:4.5.1.199): ironchest-universal-1.4.6-4.5.1.199.zip (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] MiscPeripherals(MiscPeripherals:2.2): miscperipherals-2.2.zip (ffd5cabbd067245b7d76d99178c8b2e06c4c0ca2)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] ModularForceFieldSystem(Modular ForceField System V2:2.2.8.2.13): ModularForceFieldSystemV2.2.8.2.13.zip (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] NEIPlugins(NEI Plugins:1.0.4.1): NEIPlugins-1.0.4.1.jar (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] ObsidiPlates(Obsidian Pressure Plates:1.2.0): obsidiplates-universal-1.2.0.3.zip (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] Railcraft(Railcraft:6.12.0.0): Railcraft_1.4.6-6.12.0.0.zip (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] RedPowerCore(RedPower:2.0pr6): RedPowerCore-2.0pr6.zip (28f7f8a775e597088f3a418ea29290b6a1d23c7b)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] RedPowerBase(RP Base:2.0pr6): RedPowerCore-2.0pr6.zip (28f7f8a775e597088f3a418ea29290b6a1d23c7b)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] RedPowerMachine(RP Machine:2.0pr6): RedPowerMechanical-2.0pr6.zip (28f7f8a775e597088f3a418ea29290b6a1d23c7b)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] RedPowerCompat(RP Compat:2.0pr6): RedPowerCompat-2.0pr6.zip (28f7f8a775e597088f3a418ea29290b6a1d23c7b)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] RedPowerWiring(RP Wiring:2.0pr6): RedPowerDigital-2.0pr6.zip (28f7f8a775e597088f3a418ea29290b6a1d23c7b)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] RedPowerLogic(RP Logic:2.0pr6): RedPowerDigital-2.0pr6.zip (28f7f8a775e597088f3a418ea29290b6a1d23c7b)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] RedPowerLighting(RP Lighting:2.0pr6): RedPowerDigital-2.0pr6.zip (28f7f8a775e597088f3a418ea29290b6a1d23c7b)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] RedPowerWorld(RP World:2.0pr6): RedPowerMechanical-2.0pr6.zip (28f7f8a775e597088f3a418ea29290b6a1d23c7b)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] RedPowerControl(RP Control:2.0pr6): RedPowerMechanical-2.0pr6.zip (28f7f8a775e597088f3a418ea29290b6a1d23c7b)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] mod_SmartMoving(Smart Moving:11.11): Smart Moving Client for ModLoader.zip (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] mod_SmartRender(Smart Render:1.0): Smart Moving Client for ModLoader.zip (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] SoulShards(Soul Shards:1.14): SoulShards-v1.14-universal.zip (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINE] [ForgeModLoader] StevesCarts(Steve's Carts:2.0.0.a40): StevesCarts2.0.0.a40.zip (NO VALID CERTIFICATE FOUND)

    2013-01-14 15:39:53 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod mcp

    2013-01-14 15:39:53 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod mcp

    2013-01-14 15:39:53 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod FML

    2013-01-14 15:39:53 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod FML

    2013-01-14 15:39:53 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod Forge

    2013-01-14 15:39:53 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0

    2013-01-14 15:39:53 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod Forge

    2013-01-14 15:39:53 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod mod_CodeChickenCore

    2013-01-14 15:39:53 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod mod_CodeChickenCore

    2013-01-14 15:39:53 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod mod_NotEnoughItems

    2013-01-14 15:39:53 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod mod_NotEnoughItems

    2013-01-14 15:39:53 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod mod_Audiotori

    2013-01-14 15:39:53 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod mod_Audiotori

    2013-01-14 15:39:53 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod BuildCraft|Core

    2013-01-14 15:39:55 [FINER] [ForgeModLoader] BuildCraft: Using the latest version [3.3.0 (:10)] for Minecraft 1.4.6

    2013-01-14 15:39:55 [iNFO] [buildcraft] Starting BuildCraft 3.3.0 (:10)

    2013-01-14 15:39:55 [iNFO] [buildcraft] Copyright © SpaceToad, 2011

    2013-01-14 15:39:55 [iNFO] [buildcraft] http://www.mod-buildcraft.com

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemWrench(19362) owned by BuildCraft|Core

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBuildCraft(19356) owned by BuildCraft|Core

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBuildCraft(19357) owned by BuildCraft|Core

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBuildCraft(19358) owned by BuildCraft|Core

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBuildCraft(19359) owned by BuildCraft|Core

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBuildCraft(19360) owned by BuildCraft|Core

    2013-01-14 15:39:55 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod BuildCraft|Core

    2013-01-14 15:39:55 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod BuildCraft|Builders

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.builders.ItemBptTemplate(19361) owned by BuildCraft|Builders

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.builders.ItemBptBluePrint(19374) owned by BuildCraft|Builders

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1504) owned by BuildCraft|Builders

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1518) owned by BuildCraft|Builders

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1505) owned by BuildCraft|Builders

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1507) owned by BuildCraft|Builders

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1508) owned by BuildCraft|Builders

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1515) owned by BuildCraft|Builders

    2013-01-14 15:39:55 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod BuildCraft|Builders

    2013-01-14 15:39:55 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod BuildCraft|Energy

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.energy.ItemEngine(1510) owned by BuildCraft|Energy

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1521) owned by BuildCraft|Energy

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1520) owned by BuildCraft|Energy

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBuildCraft(19364) owned by BuildCraft|Energy

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.energy.ItemBucketOil(19363) owned by BuildCraft|Energy

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBuildCraft(19366) owned by BuildCraft|Energy

    2013-01-14 15:39:55 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod BuildCraft|Energy

    2013-01-14 15:39:55 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod BuildCraft|Factory

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1500) owned by BuildCraft|Factory

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1501) owned by BuildCraft|Factory

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1502) owned by BuildCraft|Factory

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1509) owned by BuildCraft|Factory

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1503) owned by BuildCraft|Factory

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1512) owned by BuildCraft|Factory

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1511) owned by BuildCraft|Factory

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1514) owned by BuildCraft|Factory

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1519) owned by BuildCraft|Factory

    2013-01-14 15:39:55 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod BuildCraft|Factory

    2013-01-14 15:39:55 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBuildCraft(19365) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(1513) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(19416) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(19417) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(19418) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(19419) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(19420) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(19421) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(19422) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(19436) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(19437) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(19438) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(19439) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(19440) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(19456) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(19458) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(19460) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(19480) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(19476) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(19477) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(19478) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(19479) owned by BuildCraft|Transport

    2013-01-14 15:39:55 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod BuildCraft|Transport

    2013-01-14 15:39:55 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod BuildCraft|Silicon

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1516) owned by BuildCraft|Silicon

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.silicon.ItemAssemblyTable(1517) owned by BuildCraft|Silicon

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemRedstoneChipset(19373) owned by BuildCraft|Silicon

    2013-01-14 15:39:55 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod BuildCraft|Silicon

    2013-01-14 15:39:55 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod ChickenChunks

    2013-01-14 15:39:55 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod ChickenChunks

    2013-01-14 15:39:55 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod IC2

    2013-01-14 15:39:55 [iNFO] [iC2] Config loaded from C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\config\IC2.cfg

    2013-01-14 15:39:55 [iNFO] [iC2] Using 32 audio sources.

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(4095) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(4094) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(4093) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockRare(4092) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemRubLeaves(4091) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockRare(4090) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockRare(4088) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockRare(4087) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(4086) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(4085) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(4084) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockRare(4083) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockRare(4082) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockRare(4081) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockRare(4080) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockMetal(4079) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockRare(4078) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemGenerator(4077) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockRare(4076) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemElectricBlock(4075) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemMachine(4074) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemMachine2(4073) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockRare(4072) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockRare(4071) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockRare(4070) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockRare(4069) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemPersonalBlock(4068) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockRare(4067) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockRare(4066) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockRare(4065) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockRare(4064) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockRare(4063) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBlockRare(4062) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemResin(30217) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30216) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30243) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30251) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30133) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30256) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30253) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30254) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30255) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30130) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30250) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30252) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30226) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30249) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30248) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30247) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30246) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30245) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30244) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30191) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30190) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30187) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30152) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30151) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30150) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30188) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30128) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30147) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30084) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemTreetap(30212) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemIC2Pickaxe(30200) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemIC2Axe(30199) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemIC2Sword(30198) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemIC2Spade(30197) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemIC2Hoe(30196) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolWrench(30183) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolCutter(30153) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemSprayer(30131) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemToolbox(30117) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemElectricToolDrill(30235) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemElectricToolDDrill(30234) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemElectricToolChainsaw(30233) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolWrenchElectric(30140) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemTreetapElectric(30124) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolMiningLaser(30208) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolMeter(30182) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemScanner(30220) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemScannerAdv(30219) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemFrequencyTransmitter(30134) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemNanoSaber(30148) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemNanoSaber(30149) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorHazmat(30082) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorHazmat(30081) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorHazmat(30080) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorHazmat(30211) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorIC2(30195) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorIC2(30194) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorIC2(30193) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorIC2(30192) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorIC2(30179) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorNanoSuit(30178) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorNanoSuit(30177) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorNanoSuit(30176) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorNanoSuit(30175) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorQuantumSuit(30174) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorQuantumSuit(30173) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorQuantumSuit(30172) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorQuantumSuit(30171) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorJetpack(30210) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorJetpackElectric(30209) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorBatpack(30180) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorLappack(30127) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorCFPack(30129) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorSolarHelmet(30116) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorStaticBoots(30115) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.armor.ItemArmorNightvisionGoggles(30078) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemBatteryDischarged(30239) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemBattery(30242) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemBattery(30241) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemBattery(30240) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemBatterySU(30238) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemCable(30184) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemCell(30237) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30236) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30230) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30229) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30228) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30227) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30218) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30181) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemFuelCanEmpty(30231) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemFuelCanFilled(30232) owned by IC2

    2013-01-14 15:39:55 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30222) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemTinCan(30221) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30079) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorUranium(30207) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorUranium(30102) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorUranium(30101) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorHeatStorage(30206) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorHeatStorage(30100) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorHeatStorage(30099) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorPlating(30205) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorPlating(30098) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorPlating(30097) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorHeatSwitch(30204) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorHeatSwitch(30096) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorHeatSwitch(30095) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorHeatSwitch(30094) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorVent(30093) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorVent(30092) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorVent(30091) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorVentSpread(30090) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorVent(30089) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorDepletedUranium(30203) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30202) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30201) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorHeatpack(30088) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorReflector(30087) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorReflector(30086) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorCondensator(30085) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.reactor.ItemReactorCondensator(30083) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30146) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tfbp.ItemTFBPCultivation(30145) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tfbp.ItemTFBPIrrigation(30144) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tfbp.ItemTFBPChilling(30143) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tfbp.ItemTFBPDesertification(30142) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tfbp.ItemTFBPFlatification(30141) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tfbp.ItemTFBPMushroom(30118) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30138) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30137) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30136) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30135) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30189) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemScrapbox(30139) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30225) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30224) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30223) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30170) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30169) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30168) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30167) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30166) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30165) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30164) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30163) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30162) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30161) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30160) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30159) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30158) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30157) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30156) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30155) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemToolPainter(30154) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemDynamite(30215) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemDynamite(30214) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemRemote(30213) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemUpgradeModule(30125) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30186) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemIC2Door(30185) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30132) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30106) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemDebug(30104) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30103) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemCropSeed(30126) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemCropnalyzer(30122) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemFertilizer(30121) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemGradual(30120) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.tool.ItemElectricToolHoe(30119) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemTerraWart(30114) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30105) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemMug(30111) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30113) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30112) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemMugCoffee(30110) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemIC2(30109) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.block.ItemBarrel(30108) owned by IC2

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] [itemTracker] Adding item ic2.core.item.ItemBooze(30107) owned by IC2

    2013-01-14 15:39:56 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity MiningLaser as IC2.MiningLaser

    2013-01-14 15:39:56 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity Dynamite as IC2.Dynamite

    2013-01-14 15:39:56 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity StickyDynamite as IC2.StickyDynamite

    2013-01-14 15:39:56 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity Itnt as IC2.Itnt

    2013-01-14 15:39:56 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity Nuke as IC2.Nuke

    2013-01-14 15:39:56 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod IC2

    2013-01-14 15:39:56 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod CompactSolars

    2013-01-14 15:39:56 [FINE] [ForgeModLoader] Attempting to load the file version.properties from compactsolars-universal-1.4.6-3.2.0.21.zip to locate a version number for CompactSolars

    2013-01-14 15:39:56 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod CompactSolars

    2013-01-14 15:39:56 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod ComputerCraft

    2013-01-14 15:39:56 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod ComputerCraft

    2013-01-14 15:39:56 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod CCTurtle

    2013-01-14 15:39:56 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod CCTurtle

    2013-01-14 15:39:56 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod ExtrabiomesXL

    2013-01-14 15:39:56 [iNFO] [ExtrabiomesXL]

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] [itemTracker] Adding item extrabiomes.items.ItemCustomLeaves(2200) owned by ExtrabiomesXL

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] [itemTracker] Adding item extrabiomes.items.ItemCatTail(2201) owned by ExtrabiomesXL

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(255) owned by ExtrabiomesXL

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] [itemTracker] Adding item extrabiomes.items.ItemFlower(2202) owned by ExtrabiomesXL

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] [itemTracker] Adding item extrabiomes.items.ItemGrass(2203) owned by ExtrabiomesXL

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] [itemTracker] Adding item extrabiomes.items.ItemCustomGreenLeaves(2204) owned by ExtrabiomesXL

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(2205) owned by ExtrabiomesXL

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] [itemTracker] Adding item extrabiomes.items.ItemRedRock(254) owned by ExtrabiomesXL

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] [itemTracker] Adding item extrabiomes.items.ItemSapling(2207) owned by ExtrabiomesXL

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] [itemTracker] Adding item extrabiomes.utility.MultiItemBlock(2208) owned by ExtrabiomesXL

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] [itemTracker] Adding item extrabiomes.utility.MultiItemBlock(2209) owned by ExtrabiomesXL

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] [itemTracker] Adding item extrabiomes.utility.MultiItemBlock(2211) owned by ExtrabiomesXL

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] [itemTracker] Adding item extrabiomes.utility.MultiItemBlock(2212) owned by ExtrabiomesXL

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] [itemTracker] Adding item extrabiomes.utility.MultiItemBlock(2213) owned by ExtrabiomesXL

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] [itemTracker] Adding item extrabiomes.items.LogTurner(13126) owned by ExtrabiomesXL

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome alpine.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome autumnwoods.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome birchforest.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome extremejungle.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome forestedhills.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome forestedisland.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome glacier.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome greenhills.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome greenswamp.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome icewasteland.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome marsh.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome meadow.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome minijungle.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome mountaindesert.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome mountainridge.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome mountaintaiga.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome pineforest.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome rainforest.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome redwoodforest.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome redwoodlush.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome savanna.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome shrubland.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome snowyforest.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome snowyrainforest.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome temporaterainforest.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome tundra.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome wasteland.

    2013-01-14 15:39:57 [FINE] [ExtrabiomesXL] Village spawning enabled for custom biome woodlands.

    2013-01-14 15:39:57 [iNFO] [ExtrabiomesXL] Module CAUTIA is enabled.

    2013-01-14 15:39:57 [iNFO] [ExtrabiomesXL] Module FABRICA is enabled.

    2013-01-14 15:39:57 [iNFO] [ExtrabiomesXL] Module AMICA is enabled.

    2013-01-14 15:39:57 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod ExtrabiomesXL

    2013-01-14 15:39:57 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod Forestry

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] Found plugin for BuildCraft3

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] Found plugin for EquivalentExchange

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] Found plugin for Apiculture

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] Found plugin for Arboriculture

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] Found plugin for Core

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] Found plugin for Cultivation

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] Found plugin for Energy

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] Found plugin for Factory

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] Found plugin for Farming

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] Found plugin for Food

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] Found plugin for Mail

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] Found plugin for Storage

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] Found plugin for IndustrialCraft2

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] Found plugin for Apiarist's Pipe for BC3

    2013-01-14 15:39:57 [FINE] [ForgeModLoader] Found plugin for TwilightForest

    2013-01-14 15:39:58 [WARNING] [ForgeModLoader] Forestry: Using outdated version [1.6.4.1 (build:77)] for Minecraft 1.4.6. Consider updating.

    2013-01-14 15:39:58 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod Forestry

    2013-01-14 15:39:58 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod IC2NuclearControl

    2013-01-14 15:39:58 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod IC2NuclearControl

    2013-01-14 15:39:58 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod IronChest

    2013-01-14 15:39:58 [FINE] [ForgeModLoader] Attempting to load the file version.properties from ironchest-universal-1.4.6-4.5.1.199.zip to locate a version number for IronChest

    2013-01-14 15:39:58 [FINE] [ForgeModLoader] [itemTracker] Adding item cpw.mods.ironchest.ItemChestChanger(19757) owned by IronChest

    2013-01-14 15:39:58 [FINE] [ForgeModLoader] [itemTracker] Adding item cpw.mods.ironchest.ItemChestChanger(19758) owned by IronChest

    2013-01-14 15:39:58 [FINE] [ForgeModLoader] [itemTracker] Adding item cpw.mods.ironchest.ItemChestChanger(19759) owned by IronChest

    2013-01-14 15:39:58 [FINE] [ForgeModLoader] [itemTracker] Adding item cpw.mods.ironchest.ItemChestChanger(19760) owned by IronChest

    2013-01-14 15:39:58 [FINE] [ForgeModLoader] [itemTracker] Adding item cpw.mods.ironchest.ItemChestChanger(19761) owned by IronChest

    2013-01-14 15:39:58 [FINE] [ForgeModLoader] [itemTracker] Adding item cpw.mods.ironchest.ItemChestChanger(19762) owned by IronChest

    2013-01-14 15:39:58 [FINE] [ForgeModLoader] [itemTracker] Adding item cpw.mods.ironchest.ItemChestChanger(19763) owned by IronChest

    2013-01-14 15:39:58 [FINE] [ForgeModLoader] [itemTracker] Adding item cpw.mods.ironchest.ItemChestChanger(19764) owned by IronChest

    2013-01-14 15:39:58 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod IronChest

    2013-01-14 15:39:58 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod MiscPeripherals

    2013-01-14 15:39:58 [FINE] [ForgeModLoader] [itemTracker] Adding item miscperipherals.block.ItemBlockMultiTile(2671) owned by MiscPeripherals

    2013-01-14 15:39:58 [FINE] [ForgeModLoader] [itemTracker] Adding item miscperipherals.item.ItemMulti(26710) owned by MiscPeripherals

    2013-01-14 15:39:58 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod MiscPeripherals

    2013-01-14 15:39:58 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod ModularForceFieldSystem

    2013-01-14 15:39:58 [iNFO] [sTDOUT] [ModularForceFieldSystem] Loading module for IC2

    2013-01-14 15:39:58 [iNFO] [sTDOUT] [ModularForceFieldSystem] Loading module for Universal Electricity

    2013-01-14 15:39:58 [iNFO] [sTDOUT] [ModularForceFieldSystem] Module not loaded: Universal Electricity not found

    2013-01-14 15:39:58 [iNFO] [sTDOUT] [ModularForceFieldSystem] Loading module for Buildcraft

    2013-01-14 15:39:58 [iNFO] [sTDOUT] [ModularForceFieldSystem] Loading module for EE3

    2013-01-14 15:39:58 [iNFO] [sTDOUT] [ModularForceFieldSystem] Module not loaded: EE3 not found

    2013-01-14 15:39:58 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.ItemProjectorFieldModulatorDistance(11387) owned by ModularForceFieldSystem

    2013-01-14 15:39:58 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.ItemProjectorFieldModulatorStrength(11388) owned by ModularForceFieldSystem

    2013-01-14 15:39:58 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.ItemProjectorFocusMatrix(11389) owned by ModularForceFieldSystem

    2013-01-14 15:39:58 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.ItemForcePowerCrystal(11401) owned by ModularForceFieldSystem

    2013-01-14 15:39:58 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.ItemForcicium(11400) owned by ModularForceFieldSystem

    2013-01-14 15:39:58 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.ItemForcicumCell(11402) owned by ModularForceFieldSystem

    2013-01-14 15:39:58 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.modules.ItemProjectorModulediagonallyWall(11369) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.modules.ItemProjectorModuleSphere(11377) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.modules.ItemProjectorModuleCube(11378) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.modules.ItemProjectorModuleWall(11380) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.modules.ItemProjectorModuleDeflector(11381) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.modules.ItemProjectorModuleTube(11382) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.modules.ItemProjectorModuleContainment(11396) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.modules.ItemProjectorModuleAdvCube(11398) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.options.ItemProjectorOptionTouchDamage(11383) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.options.ItemProjectorOptionSponge(11384) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.options.ItemProjectorOptionFieldManipulator(11385) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.options.ItemProjectorOptionBlockBreaker(11386) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.options.ItemProjectorOptionDefenseStation(11393) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.options.ItemProjectorOptionMobDefence(11394) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.options.ItemProjectorOptionForceFieldJammer(11395) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.options.ItemProjectorOptionCamoflage(11397) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.options.ItemProjectorOptionFieldFusion(11399) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.ItemCardEmpty(11371) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.ItemCardPowerLink(11372) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.ItemCardPersonalID(11390) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.ItemCardSecurityLink(11391) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.ItemCardPower(11403) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.ItemAccessCard(11370) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.multitool.ItemWrench(11363) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.multitool.ItemSwitch(11364) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.multitool.ItemFieldtransporter(11365) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.multitool.ItemPersonalIDWriter(11366) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.multitool.ItemDebugger(11367) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.multitool.ItemManuelBook(11368) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.ItemExtractorUpgradeBooster(11374) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.ItemCapacitorUpgradeRange(11375) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item chb.mods.mffs.common.ItemCapacitorUpgradeCapacity(11376) owned by ModularForceFieldSystem

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod ModularForceFieldSystem

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod NEIPlugins

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod NEIPlugins

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod ObsidiPlates

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] Attempting to load the file version.properties from obsidiplates-universal-1.2.0.3.zip to locate a version number for ObsidiPlates

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(1555) owned by ObsidiPlates

    2013-01-14 15:39:59 [iNFO] [ObsidiPlates] Config loaded from: C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\config\ObsidiPlates.cfg

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod ObsidiPlates

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod Railcraft

    2013-01-14 15:39:59 [FINE] [Railcraft] Pre-Init Phase

    2013-01-14 15:39:59 [FINER] [Railcraft] Pre-Init Start: ModuleCore

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.liquids.ItemLiquid(7780) owned by Railcraft

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.liquids.ItemLiquid(7783) owned by Railcraft

    2013-01-14 15:39:59 [FINER] [Railcraft] Pre-Init Complete: ModuleCore

    2013-01-14 15:39:59 [FINER] [Railcraft] Pre-Init Start: ModuleAutomation

    2013-01-14 15:39:59 [FINER] [Railcraft] Pre-Init Complete: ModuleAutomation

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod Railcraft

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod RedPowerCore

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod RedPowerCore

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod RedPowerBase

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod RedPowerBase

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod RedPowerMachine

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod RedPowerMachine

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod RedPowerCompat

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod RedPowerCompat

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod RedPowerWiring

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod RedPowerWiring

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod RedPowerLogic

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod RedPowerLogic

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod RedPowerLighting

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod RedPowerLighting

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod RedPowerWorld

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod RedPowerWorld

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod RedPowerControl

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod RedPowerControl

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod mod_SmartMoving

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod mod_SmartMoving

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod mod_SmartRender

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod mod_SmartRender

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod SoulShards

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod SoulShards

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod StevesCarts

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item vswe.stevescarts.Items.ItemCarts(31999) owned by StevesCarts

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item vswe.stevescarts.Items.ItemCartComponent(31998) owned by StevesCarts

    2013-01-14 15:39:59 [FINE] [ForgeModLoader] [itemTracker] Adding item vswe.stevescarts.Items.ItemCartModule(31997) owned by StevesCarts

    2013-01-14 15:39:59 [iNFO] [Railcraft] An updated version of Railcraft is available: 6.14.0.0

    2013-01-14 15:39:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod StevesCarts

    2013-01-14 15:40:00 [iNFO] [sTDOUT] Starting up SoundSystem...

    2013-01-14 15:40:00 [iNFO] [sTDOUT] Initializing LWJGL OpenAL

    2013-01-14 15:40:00 [iNFO] [sTDOUT]    (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

    2013-01-14 15:40:00 [iNFO] [sTDOUT] OpenAL initialized.

    2013-01-14 15:40:00 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod mcp

    2013-01-14 15:40:00 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod mcp

    2013-01-14 15:40:00 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod FML

    2013-01-14 15:40:00 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod FML

    2013-01-14 15:40:00 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod Forge

    2013-01-14 15:40:00 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod Forge

    2013-01-14 15:40:00 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod mod_CodeChickenCore

    2013-01-14 15:40:00 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod mod_CodeChickenCore

    2013-01-14 15:40:00 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod mod_NotEnoughItems

    2013-01-14 15:40:00 [iNFO] [sTDOUT] Removing TMI Uninstaller

    2013-01-14 15:40:00 [iNFO] [sTDOUT] Deleting Dir: C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\bin\TMIUninstaller

    2013-01-14 15:40:00 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod mod_NotEnoughItems

    2013-01-14 15:40:00 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod mod_Audiotori

    2013-01-14 15:40:00 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod mod_Audiotori

    2013-01-14 15:40:00 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod BuildCraft|Core

    2013-01-14 15:40:00 [FINEST] [ForgeModLoader] Automatically registered mod BuildCraft|Core entity bcRobot as BuildCraft|Core.bcRobot

    2013-01-14 15:40:00 [FINEST] [ForgeModLoader] Automatically registered mod BuildCraft|Core entity bcLaser as BuildCraft|Core.bcLaser

    2013-01-14 15:40:00 [FINEST] [ForgeModLoader] Automatically registered mod BuildCraft|Core entity bcEnergyLaser as BuildCraft|Core.bcEnergyLaser

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod BuildCraft|Core

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod BuildCraft|Builders

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod BuildCraft|Builders

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod BuildCraft|Energy

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod BuildCraft|Energy

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod BuildCraft|Factory

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod BuildCraft|Factory

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod BuildCraft|Transport

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBuildCraft(19369) owned by BuildCraft|Transport

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBuildCraft(19370) owned by BuildCraft|Transport

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBuildCraft(19371) owned by BuildCraft|Transport

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.core.ItemBuildCraft(19372) owned by BuildCraft|Transport

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemGate(19367) owned by BuildCraft|Transport

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemGate(19396) owned by BuildCraft|Transport

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemFacade(19397) owned by BuildCraft|Transport

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod BuildCraft|Transport

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod BuildCraft|Silicon

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod BuildCraft|Silicon

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod ChickenChunks

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item codechicken.chunkloader.ItemChunkLoader(243) owned by ChickenChunks

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod ChickenChunks

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod IC2

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod IC2

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod CompactSolars

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item cpw.mods.compactsolars.ItemCompactSolar(650) owned by CompactSolars

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod CompactSolars

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod ComputerCraft

    2013-01-14 15:40:01 [iNFO] [sTDOUT] Loading ComputerCraft v1.48 (rev 832)

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item dan200.computer.shared.ItemComputer(4061) owned by ComputerCraft

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item dan200.computer.shared.ItemPeripheral(4060) owned by ComputerCraft

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item dan200.computer.shared.ItemDisk(4256) owned by ComputerCraft

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item dan200.computer.shared.ItemDiskExpanded(4257) owned by ComputerCraft

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item dan200.computer.shared.ItemPrintout(4258) owned by ComputerCraft

    2013-01-14 15:40:01 [iNFO] [sTDOUT] ComputerCraft: Searching for RedPowerLib...

    2013-01-14 15:40:01 [iNFO] [sTDOUT] ComputerCraft: RedPowerLib and methods located.

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod ComputerCraft

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod CCTurtle

    2013-01-14 15:40:01 [iNFO] [sTDOUT] Loading CCTurtle v1.48 (rev 832)

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item dan200.turtle.shared.ItemTurtle(4059) owned by CCTurtle

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item dan200.turtle.shared.ItemTurtleExpanded(4058) owned by CCTurtle

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod CCTurtle

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod ExtrabiomesXL

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(2214) owned by ExtrabiomesXL

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item extrabiomes.utility.MultiItemBlock(2215) owned by ExtrabiomesXL

    2013-01-14 15:40:01 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: plankWood, id=2215 meta=-1

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item extrabiomes.module.fabrica.block.ItemWoodSlab(2216) owned by ExtrabiomesXL

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item extrabiomes.module.fabrica.block.ItemWoodSlab(2217) owned by ExtrabiomesXL

    2013-01-14 15:40:01 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: slabWood, id=2216 meta=-1

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(2218) owned by ExtrabiomesXL

    2013-01-14 15:40:01 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: stairWood, id=2218 meta=0

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(2219) owned by ExtrabiomesXL

    2013-01-14 15:40:01 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: stairWood, id=2219 meta=0

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(2220) owned by ExtrabiomesXL

    2013-01-14 15:40:01 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: stairWood, id=2220 meta=0

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item extrabiomes.module.fabrica.block.ItemRedRockSlab(2206) owned by ExtrabiomesXL

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item extrabiomes.module.fabrica.block.ItemRedRockSlab(2222) owned by ExtrabiomesXL

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(2223) owned by ExtrabiomesXL

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(2221) owned by ExtrabiomesXL

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item extrabiomes.utility.MultiItemBlock(2210) owned by ExtrabiomesXL

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item extrabiomes.module.fabrica.scarecrow.ItemScarecrow(13127) owned by ExtrabiomesXL

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] Skipping automatic mod ExtrabiomesXL entity registration for already registered class extrabiomes.module.fabrica.scarecrow.EntityScarecrow

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item up(13128) owned by ExtrabiomesXL

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod ExtrabiomesXL

    2013-01-14 15:40:01 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestryBlock(4057) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestryBlock(4056) owned by Forestry

    2013-01-14 15:40:01 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreApatite, id=4056 meta=0

    2013-01-14 15:40:01 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreCopper, id=4056 meta=1

    2013-01-14 15:40:01 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreTin, id=4056 meta=2

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestryBlock(4053) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] Skipped plugin class forestry.plugins.PluginEE because preconditions were not met.

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.apiculture.items.ItemBeeGE(13339) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.apiculture.items.ItemBeeGE(13340) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.apiculture.items.ItemBeeGE(13341) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.apiculture.items.ItemBeealyzer(13342) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.apiculture.items.ItemHabitatLocator(13361) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.apiculture.items.ItemImprinter(13366) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.apiculture.items.ItemHiveFrame(13381) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.apiculture.items.ItemHiveFrame(13382) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.apiculture.items.ItemHiveFrame(13383) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.apiculture.items.ItemScoop(13284) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemOverlay(13283) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemOverlay(13286) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemOverlay(13287) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(13289) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(13288) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.apiculture.items.ItemWaxCast(13379) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.apiculture.items.ItemHoneycomb(13360) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.apiculture.items.ItemArmorApiarist(13356) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.apiculture.items.ItemArmorApiarist(13357) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.apiculture.items.ItemArmorApiarist(13358) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.apiculture.items.ItemArmorApiarist(13359) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestryBlock(4052) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestryBlock(1379) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestryBlock(1378) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestryBlock(1382) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestryBlock(1383) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestryBlock(1384) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestryBlock(1385) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.arboriculture.items.ItemGermlingGE(13384) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.arboriculture.items.ItemTreealyzer(13385) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.arboriculture.items.ItemWoodBlock(1388) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.arboriculture.items.ItemWoodBlock(1389) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.arboriculture.items.ItemWoodBlock(1390) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.arboriculture.items.ItemWoodBlock(1391) owned by Forestry

    2013-01-14 15:40:01 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: logWood, id=1388 meta=-1

    2013-01-14 15:40:01 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: logWood, id=1389 meta=-1

    2013-01-14 15:40:01 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: logWood, id=1390 meta=-1

    2013-01-14 15:40:01 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: logWood, id=1391 meta=-1

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.arboriculture.items.ItemWoodBlock(1380) owned by Forestry

    2013-01-14 15:40:01 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: plankWood, id=1380 meta=-1

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.arboriculture.items.ItemWoodBlock(1386) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.arboriculture.items.ItemWoodBlock(1387) owned by Forestry

    2013-01-14 15:40:01 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: slabWood, id=1386 meta=-1

    2013-01-14 15:40:01 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: slabWood, id=1387 meta=-1

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.arboriculture.items.ItemWoodBlock(1394) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestryBlock(1392) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestryBlock(1393) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(5256) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(5257) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(5258) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(5259) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(5260) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(5261) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemWrench(5263) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemPipette(13367) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(5266) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(5281) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(13380) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemMisc(13354) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(5268) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(5273) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(5274) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(13297) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(5264) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(5275) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(5280) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.circuits.ItemCircuitBoard(13368) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.circuits.ItemSolderingIron(13369) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemOverlay(13370) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(13256) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(13257) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(13258) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(13259) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(13262) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(13265) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestryPickaxe(13261) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestryShovel(13264) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemAssemblyKit(13263) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemAssemblyKit(13260) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(13276) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(13277) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(13278) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(5282) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(13324) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(13285) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(13325) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13290) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(5277) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13326) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(5265) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestry(5271) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13294) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13295) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13296) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13298) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13299) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13321) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13322) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13323) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13377) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(5276) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(5278) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(5279) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13300) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13301) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13302) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13318) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13319) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13320) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13376) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13331) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13332) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13333) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13334) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13335) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13327) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13336) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13337) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13338) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquidContainer(13378) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquids(5272) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquids(5269) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquids(5270) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquids(13313) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquids(13314) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquids(13315) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquids(13365) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquids(13371) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemLiquids(13375) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13756) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13757) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13758) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13759) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13760) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13761) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13762) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13763) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13764) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13765) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13766) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13767) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13768) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13769) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13770) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13771) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13772) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13773) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13774) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13775) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13776) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13777) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13778) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13779) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13780) owned by Forestry

    2013-01-14 15:40:01 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13781) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13782) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13790) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13791) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13792) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13793) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13794) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13795) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13796) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13797) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13798) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13799) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13800) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13806) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13807) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13808) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13809) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13810) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13811) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13812) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] Skipped plugin class forestry.plugins.PluginForestryFarming because preconditions were not met.

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.food.items.ItemForestryFood(13291) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.food.items.ItemBeverage(13292) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.food.items.ItemAmbrosia(13293) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.food.items.ItemForestryFood(13312) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.food.items.ItemInfuser(13364) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.mail.items.ItemStamps(13372) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.mail.items.ItemLetter(13373) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.storage.items.ItemApiaristBackpack(13304) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.storage.items.ItemBackpackMiner(13305) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.storage.items.ItemBackpackDigger(13306) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.storage.items.ItemBackpackForester(13307) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.storage.items.ItemBackpackHunter(13308) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.storage.items.ItemBackpackAdventurer(13352) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.storage.items.ItemBackpackBuilder(13362) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.storage.items.ItemBackpackMiner(13344) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.storage.items.ItemBackpackDigger(13345) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.storage.items.ItemBackpackForester(13346) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.storage.items.ItemBackpackHunter(13347) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.storage.items.ItemBackpackAdventurer(13353) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.storage.items.ItemBackpackBuilder(13363) owned by Forestry

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] Skipped plugin class forestry.plugins.PluginTwilightForest because preconditions were not met.

    2013-01-14 15:40:02 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod Forestry

    2013-01-14 15:40:02 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod IC2NuclearControl

    2013-01-14 15:40:02 [iNFO] [ForgeModLoader] [Modstats] Config loaded. allowUpdates: true,  betaNotification: false, strict: false

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item shedar.mods.ic2.nuclearcontrol.ItemToolThermometer(31256) owned by IC2NuclearControl

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item shedar.mods.ic2.nuclearcontrol.ItemToolDigitalThermometer(31257) owned by IC2NuclearControl

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item shedar.mods.ic2.nuclearcontrol.ItemCardReactorSensorLocation(31259) owned by IC2NuclearControl

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item shedar.mods.ic2.nuclearcontrol.ItemUpgrade(31260) owned by IC2NuclearControl

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item shedar.mods.ic2.nuclearcontrol.ItemTimeCard(31261) owned by IC2NuclearControl

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item shedar.mods.ic2.nuclearcontrol.ItemCardText(31267) owned by IC2NuclearControl

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item shedar.mods.ic2.nuclearcontrol.ItemCardEnergySensorLocation(31263) owned by IC2NuclearControl

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item shedar.mods.ic2.nuclearcontrol.ItemCardEnergyArrayLocation(31264) owned by IC2NuclearControl

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item shedar.mods.ic2.nuclearcontrol.ItemCardMultipleSensorLocation(31266) owned by IC2NuclearControl

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item shedar.mods.ic2.nuclearcontrol.ItemKitMultipleSensor(31265) owned by IC2NuclearControl

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item shedar.mods.ic2.nuclearcontrol.ItemKitEnergySensor(31262) owned by IC2NuclearControl

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item shedar.mods.ic2.nuclearcontrol.ItemKitReactorSensor(31258) owned by IC2NuclearControl

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item shedar.mods.ic2.nuclearcontrol.ItemNuclearControlMain(4047) owned by IC2NuclearControl

    2013-01-14 15:40:02 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod IC2NuclearControl

    2013-01-14 15:40:02 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod IronChest

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item cpw.mods.ironchest.ItemIronChest(975) owned by IronChest

    2013-01-14 15:40:02 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod IronChest

    2013-01-14 15:40:02 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod MiscPeripherals

    2013-01-14 15:40:02 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod MiscPeripherals

    2013-01-14 15:40:02 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod ModularForceFieldSystem

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(688) owned by ModularForceFieldSystem

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(683) owned by ModularForceFieldSystem

    2013-01-14 15:40:02 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: MonazitOre, id=688 meta=0

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(685) owned by ModularForceFieldSystem

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(682) owned by ModularForceFieldSystem

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(680) owned by ModularForceFieldSystem

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(687) owned by ModularForceFieldSystem

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(681) owned by ModularForceFieldSystem

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(686) owned by ModularForceFieldSystem

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(684) owned by ModularForceFieldSystem

    2013-01-14 15:40:02 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod ModularForceFieldSystem

    2013-01-14 15:40:02 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod NEIPlugins

    2013-01-14 15:40:02 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod NEIPlugins

    2013-01-14 15:40:02 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod ObsidiPlates

    2013-01-14 15:40:02 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod ObsidiPlates

    2013-01-14 15:40:02 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod Railcraft

    2013-01-14 15:40:02 [FINE] [Railcraft] Init Phase

    2013-01-14 15:40:02 [FINER] [Railcraft] Init-First Start: ModuleCore

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemCrowbar(7800) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemMagnifyingGlass(7801) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemSteelSword(7807) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemSteelShovel(7806) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemSteelPickaxe(7805) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemSteelAxe(7803) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemSteelHoe(7804) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemSteelArmor(7758) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemSteelArmor(7760) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemSteelArmor(7759) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemSteelArmor(7757) owned by Railcraft

    2013-01-14 15:40:02 [iNFO] [ForgeModLoader] [itemTracker] The mod Railcraft is overwriting existing item at 328 (uv from Minecraft) with railcraft.common.carts.ItemCartVanilla

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.carts.ItemCartVanilla(328) owned by Railcraft

    2013-01-14 15:40:02 [iNFO] [ForgeModLoader] [itemTracker] The mod Railcraft is overwriting existing item at 342 (uv from Minecraft) with railcraft.common.carts.ItemCartVanilla

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.carts.ItemCartVanilla(342) owned by Railcraft

    2013-01-14 15:40:02 [iNFO] [ForgeModLoader] [itemTracker] The mod Railcraft is overwriting existing item at 343 (uv from Minecraft) with railcraft.common.carts.ItemCartVanilla

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.carts.ItemCartVanilla(343) owned by Railcraft

    2013-01-14 15:40:02 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.basic as Railcraft.cart.basic

    2013-01-14 15:40:02 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.chest as Railcraft.cart.chest

    2013-01-14 15:40:02 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.furnace as Railcraft.cart.furnace

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemRail(7789) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemTie(7793) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.liquids.ItemLiquidContainer(7778) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.liquids.ItemLiquidContainer(7777) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.liquids.ItemLiquidContainer(7779) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.liquids.ItemLiquidContainer(7782) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.liquids.ItemLiquidContainer(7781) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemRailcraft(7791) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemRailbed(7790) owned by Railcraft

    2013-01-14 15:40:02 [FINER] [Railcraft] Init-First Complete: ModuleCore

    2013-01-14 15:40:02 [FINER] [Railcraft] Init-First Start: ModuleFactory

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.blocks.machine.ItemMachine(451) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.blocks.cube.ItemCube(457) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemRailcraft(7762) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemRailcraft(7787) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.blocks.ore.ItemDust(7761) owned by Railcraft

    2013-01-14 15:40:02 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockSteel, id=457 meta=2

    2013-01-14 15:40:02 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity FallingCube as Railcraft.FallingCube

    2013-01-14 15:40:02 [FINER] [Railcraft] Init-First Complete: ModuleFactory

    2013-01-14 15:40:02 [FINER] [Railcraft] Init-First Start: ModuleExtras

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.blocks.tracks.ItemTrack(454) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(455) owned by Railcraft

    2013-01-14 15:40:02 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.tnt as Railcraft.cart.tnt

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.carts.ItemCart(7773) owned by Railcraft

    2013-01-14 15:40:02 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.work as Railcraft.cart.work

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.carts.ItemCart(7776) owned by Railcraft

    2013-01-14 15:40:02 [FINER] [Railcraft] Init-First Complete: ModuleExtras

    2013-01-14 15:40:02 [FINER] [Railcraft] Init-First Start: ModuleTrack

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemPlate(7788) owned by Railcraft

    2013-01-14 15:40:02 [FINER] [Railcraft] Init-First Complete: ModuleTrack

    2013-01-14 15:40:02 [FINER] [Railcraft] Init-First Start: ModuleTracksHighSpeed

    2013-01-14 15:40:02 [FINER] [Railcraft] Init-First Complete: ModuleTracksHighSpeed

    2013-01-14 15:40:02 [FINER] [Railcraft] Init-First Start: ModuleTracksWood

    2013-01-14 15:40:02 [FINER] [Railcraft] Init-First Complete: ModuleTracksWood

    2013-01-14 15:40:02 [FINER] [Railcraft] Init-First Start: ModuleTracksReinforced

    2013-01-14 15:40:02 [FINER] [Railcraft] Init-First Complete: ModuleTracksReinforced

    2013-01-14 15:40:02 [FINER] [Railcraft] Init-First Start: ModuleTrain

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.blocks.detector.ItemDetector(450) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.blocks.machine.ItemMachine(453) owned by Railcraft

    2013-01-14 15:40:02 [FINER] [Railcraft] Init-First Complete: ModuleTrain

    2013-01-14 15:40:02 [FINER] [Railcraft] Init-First Start: ModuleSignals

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.blocks.signals.ItemSignal(456) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemRailcraft(7792) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemRailcraft(7784) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemRailcraft(7785) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.blocks.signals.ItemSignalBlockSurveyor(7808) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.blocks.signals.ItemSignalTuner(7802) owned by Railcraft

    2013-01-14 15:40:02 [FINER] [Railcraft] Init-First Complete: ModuleSignals

    2013-01-14 15:40:02 [FINER] [Railcraft] Init-First Start: ModuleStructures

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.blocks.post.ItemPost(459) owned by Railcraft

    2013-01-14 15:40:02 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.blocks.post.ItemPostMetal(460) owned by Railcraft

    2013-01-14 15:40:03 [FINER] [Railcraft] Init-First Complete: ModuleStructures

    2013-01-14 15:40:03 [FINER] [Railcraft] Init-First Start: ModuleAutomation

    2013-01-14 15:40:03 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.bore as Railcraft.cart.bore

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.carts.ItemTunnelBore(7766) owned by Railcraft

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.carts.ItemBoreHeadDiamond(7797) owned by Railcraft

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.carts.ItemBoreHeadSteel(7799) owned by Railcraft

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.carts.ItemBoreHeadIron(7798) owned by Railcraft

    2013-01-14 15:40:03 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.track.relayer as Railcraft.cart.track.relayer

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.carts.ItemCart(7774) owned by Railcraft

    2013-01-14 15:40:03 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.undercutter as Railcraft.cart.undercutter

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.carts.ItemCart(7775) owned by Railcraft

    2013-01-14 15:40:03 [FINER] [Railcraft] Init-First Complete: ModuleAutomation

    2013-01-14 15:40:03 [FINER] [Railcraft] Init-First Start: ModuleTransport

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.blocks.machine.ItemMachine(452) owned by Railcraft

    2013-01-14 15:40:03 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.tank as Railcraft.cart.tank

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.carts.ItemCart(7772) owned by Railcraft

    2013-01-14 15:40:03 [FINER] [Railcraft] Init-First Complete: ModuleTransport

    2013-01-14 15:40:03 [FINER] [Railcraft] Init-First Start: ModuleIC2

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemRailcraft(7763) owned by Railcraft

    2013-01-14 15:40:03 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.energy as Railcraft.cart.energy

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.carts.ItemCart(7765) owned by Railcraft

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.carts.ItemCart(7769) owned by Railcraft

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.carts.ItemCart(7770) owned by Railcraft

    2013-01-14 15:40:03 [FINER] [Railcraft] Init-First Complete: ModuleIC2

    2013-01-14 15:40:03 [FINER] [Railcraft] Init-First Start: ModuleEnergy

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemGear(7786) owned by Railcraft

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemRailcraft(7796) owned by Railcraft

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemRailcraft(7795) owned by Railcraft

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemRailcraft(7794) owned by Railcraft

    2013-01-14 15:40:03 [FINER] [Railcraft] Init-First Complete: ModuleEnergy

    2013-01-14 15:40:03 [FINER] [Railcraft] Init-First Start: ModuleWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.blocks.ore.ItemOre(458) owned by Railcraft

    2013-01-14 15:40:03 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreSulfur, id=458 meta=0

    2013-01-14 15:40:03 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreSaltpeter, id=458 meta=1

    2013-01-14 15:40:03 [FINER] [Railcraft] Init-First Complete: ModuleWorld

    2013-01-14 15:40:03 [FINER] [Railcraft] Init-First Start: ModuleChunkLoading

    2013-01-14 15:40:03 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.anchor as Railcraft.cart.anchor

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.carts.ItemCartAnchor(7764) owned by Railcraft

    2013-01-14 15:40:03 [FINER] [Railcraft] Init-First Complete: ModuleChunkLoading

    2013-01-14 15:40:03 [FINER] [Railcraft] Init-First Start: ModuleSeasonal

    2013-01-14 15:40:03 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.pumpkin as Railcraft.cart.pumpkin

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.carts.ItemCart(7771) owned by Railcraft

    2013-01-14 15:40:03 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.gift as Railcraft.cart.gift

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.carts.ItemCart(7767) owned by Railcraft

    2013-01-14 15:40:03 [iNFO] [Railcraft] Activating Christmas Seasonal Pack

    2013-01-14 15:40:03 [FINER] [Railcraft] Init-First Complete: ModuleSeasonal

    2013-01-14 15:40:03 [FINER] [Railcraft] Init-Second Start: ModuleCore

    2013-01-14 15:40:03 [FINER] [Railcraft] Init-Second Complete: ModuleCore

    2013-01-14 15:40:03 [FINER] [Railcraft] Init-Second Start: ModuleFactory

    2013-01-14 15:40:03 [FINER] [Railcraft] Init-Second Complete: ModuleFactory

    2013-01-14 15:40:03 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod Railcraft

    2013-01-14 15:40:03 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod RedPowerCore

    2013-01-14 15:40:03 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod RedPowerCore

    2013-01-14 15:40:03 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod RedPowerBase

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.core.ItemParts(9257) owned by RedPowerBase

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.core.ItemParts(9258) owned by RedPowerBase

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.core.ItemParts(9259) owned by RedPowerBase

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.core.ItemParts(9265) owned by RedPowerBase

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.base.ItemDrawplate(9264) owned by RedPowerBase

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.base.ItemBag(9268) owned by RedPowerBase

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.base.ItemDyeIndigo(9260) owned by RedPowerBase

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.core.ItemTextured(9266) owned by RedPowerBase

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.base.ItemPlan(9267) owned by RedPowerBase

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.base.ItemMicro(750) owned by RedPowerBase

    2013-01-14 15:40:03 [iNFO] [sTDOUT] Fluid registration: Oil

    2013-01-14 15:40:03 [iNFO] [sTDOUT] Fluid registration: coolant

    2013-01-14 15:40:03 [iNFO] [sTDOUT] Fluid registration: Steam

    2013-01-14 15:40:03 [iNFO] [sTDOUT] Fluid registration: Fuel

    2013-01-14 15:40:03 [iNFO] [sTDOUT] Fluid registration: Creosote Oil

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(752) owned by RedPowerBase

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.core.ItemExtended(751) owned by RedPowerBase

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.base.ItemHandsaw(9261) owned by RedPowerBase

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.base.ItemHandsaw(9262) owned by RedPowerBase

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.base.ItemScrewdriver(9263) owned by RedPowerBase

    2013-01-14 15:40:03 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod RedPowerBase

    2013-01-14 15:40:03 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod RedPowerMachine

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.machine.ItemVoltmeter(9334) owned by RedPowerMachine

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.core.ItemTextured(9335) owned by RedPowerMachine

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.machine.ItemBattery(9337) owned by RedPowerMachine

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.machine.ItemSonicDriver(9336) owned by RedPowerMachine

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.machine.ItemWindmill(9340) owned by RedPowerMachine

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.machine.ItemWindmill(9341) owned by RedPowerMachine

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.core.ItemParts(9339) owned by RedPowerMachine

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.core.ItemExtended(763) owned by RedPowerMachine

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.core.ItemExtended(766) owned by RedPowerMachine

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.machine.ItemMachinePanel(764) owned by RedPowerMachine

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.core.ItemExtended(765) owned by RedPowerMachine

    2013-01-14 15:40:03 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod RedPowerMachine

    2013-01-14 15:40:03 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod RedPowerCompat

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.compat.ItemMachineCompat(767) owned by RedPowerCompat

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.core.ItemParts(9343) owned by RedPowerCompat

    2013-01-14 15:40:03 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod RedPowerCompat

    2013-01-14 15:40:03 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod RedPowerWiring

    2013-01-14 15:40:03 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod RedPowerWiring

    2013-01-14 15:40:03 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod RedPowerLogic

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.core.ItemParts(9269) owned by RedPowerLogic

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.logic.ItemLogic(753) owned by RedPowerLogic

    2013-01-14 15:40:03 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod RedPowerLogic

    2013-01-14 15:40:03 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod RedPowerLighting

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(756) owned by RedPowerLighting

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.lighting.ItemLamp(757) owned by RedPowerLighting

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.lighting.ItemLamp(758) owned by RedPowerLighting

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(759) owned by RedPowerLighting

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.lighting.ItemShapedLamp(768) owned by RedPowerLighting

    2013-01-14 15:40:03 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod RedPowerLighting

    2013-01-14 15:40:03 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemCustomStone(244) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemCustomOre(242) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreRuby, id=242 meta=0

    2013-01-14 15:40:03 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreGreenSapphire, id=242 meta=1

    2013-01-14 15:40:03 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreSapphire, id=242 meta=2

    2013-01-14 15:40:03 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreSilver, id=242 meta=3

    2013-01-14 15:40:03 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreTin, id=242 meta=4

    2013-01-14 15:40:03 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreCopper, id=242 meta=5

    2013-01-14 15:40:03 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreTungsten, id=242 meta=6

    2013-01-14 15:40:03 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreNikolite, id=242 meta=7

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemStorage(754) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemCustomFlower(241) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemCustomSeeds(9296) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(253) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(245) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: woodRubber, id=245 meta=0

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemCustomPickaxe(9287) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemCustomPickaxe(9288) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemCustomPickaxe(9289) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemCustomShovel(9284) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemCustomShovel(9285) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemCustomShovel(9286) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemCustomAxe(9290) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemCustomAxe(9291) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemCustomAxe(9292) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemCustomSword(9281) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemCustomSword(9282) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemCustomSword(9283) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemAthame(9297) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemCustomHoe(9293) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemCustomHoe(9294) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemCustomHoe(9295) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemSickle(9273) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemSickle(9274) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemSickle(9275) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemSickle(9276) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemSickle(9277) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemSickle(9278) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemSickle(9279) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemSickle(9280) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.base.ItemHandsaw(9270) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.base.ItemHandsaw(9271) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.base.ItemHandsaw(9272) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemWoolCard(9298) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.core.ItemTextured(9317) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.core.ItemTextured(9300) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintCan(9301) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintBrush(9318) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintCan(9302) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintBrush(9319) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintCan(9303) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintBrush(9320) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintCan(9304) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintBrush(9321) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintCan(9305) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintBrush(9322) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintCan(9306) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintBrush(9323) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintCan(9307) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintBrush(9324) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintCan(9308) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintBrush(9325) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintCan(9309) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintBrush(9326) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintCan(9310) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintBrush(9327) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintCan(9311) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintBrush(9328) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintCan(9312) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintBrush(9329) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintCan(9313) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintBrush(9330) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintCan(9314) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintBrush(9331) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintCan(9315) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintBrush(9332) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintCan(9316) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemPaintBrush(9333) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.world.ItemSeedBag(9299) owned by RedPowerWorld

    2013-01-14 15:40:03 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod RedPowerWorld

    2013-01-14 15:40:03 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod RedPowerControl

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.control.ItemBackplane(760) owned by RedPowerControl

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.core.ItemExtended(761) owned by RedPowerControl

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.core.ItemExtended(762) owned by RedPowerControl

    2013-01-14 15:40:03 [FINE] [ForgeModLoader] [itemTracker] Adding item com.eloraam.redpower.control.ItemDisk(9342) owned by RedPowerControl

    2013-01-14 15:40:03 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod RedPowerControl

    2013-01-14 15:40:03 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod mod_SmartMoving

    2013-01-14 15:40:04 [iNFO] [sTDOUT] Smart Moving uses communication protocol 2.2

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] Smart Moving uses communication protocol 2.2

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod mod_SmartMoving

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod mod_SmartRender

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod mod_SmartRender

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod SoulShards

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item com.shadwdrgn.soulshards.ItemVileDust(8333) owned by SoulShards

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item com.shadwdrgn.soulshards.ItemCorruptedEssence(8334) owned by SoulShards

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item com.shadwdrgn.soulshards.ItemBlankShard(8332) owned by SoulShards

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item com.shadwdrgn.soulshards.ItemShard(8331) owned by SoulShards

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item com.shadwdrgn.soulshards.ItemCorruptedFragment(8335) owned by SoulShards

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item com.shadwdrgn.soulshards.ItemCorruptedIngot(8336) owned by SoulShards

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item com.shadwdrgn.soulshards.ItemCorruptedSword(8337) owned by SoulShards

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(1475) owned by SoulShards

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(1476) owned by SoulShards

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(1478) owned by SoulShards

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod SoulShards

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod StevesCarts

    2013-01-14 15:40:04 [FINEST] [ForgeModLoader] Automatically registered mod StevesCarts entity Minecart.Vswe.0 as StevesCarts.Minecart.Vswe.0

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(541) owned by StevesCarts

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(542) owned by StevesCarts

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(543) owned by StevesCarts

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(544) owned by StevesCarts

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(545) owned by StevesCarts

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(546) owned by StevesCarts

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item vq(547) owned by StevesCarts

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod StevesCarts

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod mcp

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod mcp

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod FML

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod FML

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod Forge

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod Forge

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod mod_CodeChickenCore

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod mod_CodeChickenCore

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod mod_NotEnoughItems

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod mod_NotEnoughItems

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod mod_Audiotori

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod mod_Audiotori

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod BuildCraft|Core

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod BuildCraft|Core

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod BuildCraft|Builders

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod BuildCraft|Builders

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod BuildCraft|Energy

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod BuildCraft|Energy

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod BuildCraft|Factory

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod BuildCraft|Factory

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod BuildCraft|Transport

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod BuildCraft|Transport

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod BuildCraft|Silicon

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod BuildCraft|Silicon

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod ChickenChunks

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod ChickenChunks

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod IC2

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod IC2

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod CompactSolars

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod CompactSolars

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod ComputerCraft

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod ComputerCraft

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod CCTurtle

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod CCTurtle

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod ExtrabiomesXL

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod ExtrabiomesXL

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod Forestry

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod Forestry

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod IC2NuclearControl

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod IC2NuclearControl

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod IronChest

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod IronChest

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod MiscPeripherals

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod MiscPeripherals

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod ModularForceFieldSystem

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod ModularForceFieldSystem

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod NEIPlugins

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod NEIPlugins

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod ObsidiPlates

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod ObsidiPlates

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod Railcraft

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod Railcraft

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod RedPowerCore

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod RedPowerCore

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod RedPowerBase

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod RedPowerBase

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod RedPowerMachine

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod RedPowerMachine

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod RedPowerCompat

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod RedPowerCompat

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod RedPowerWiring

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod RedPowerWiring

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod RedPowerLogic

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod RedPowerLogic

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod RedPowerLighting

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod RedPowerLighting

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod RedPowerWorld

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod RedPowerWorld

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod RedPowerControl

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod RedPowerControl

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod mod_SmartMoving

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod mod_SmartMoving

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod mod_SmartRender

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod mod_SmartRender

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod SoulShards

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod SoulShards

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event IMCEvent to mod StevesCarts

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event IMCEvent to mod StevesCarts

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod mcp

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod mcp

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod FML

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod FML

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod Forge

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod Forge

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod mod_CodeChickenCore

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod mod_CodeChickenCore

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod mod_NotEnoughItems

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod mod_NotEnoughItems

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod mod_Audiotori

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod mod_Audiotori

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod BuildCraft|Core

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod BuildCraft|Core

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod BuildCraft|Builders

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod BuildCraft|Builders

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod BuildCraft|Energy

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod BuildCraft|Energy

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod BuildCraft|Factory

    2013-01-14 15:40:04 [FINE] [buildcraft] NEI not detected.

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod BuildCraft|Factory

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod BuildCraft|Transport

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod BuildCraft|Transport

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod BuildCraft|Silicon

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod BuildCraft|Silicon

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod ChickenChunks

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod ChickenChunks

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod IC2

    2013-01-14 15:40:04 [iNFO] [iC2] Loading IC2 submodule: bcIntegration32x

    2013-01-14 15:40:04 [iNFO] [iC2] BuildCraft integration: Railcraft integration loaded

    2013-01-14 15:40:04 [iNFO] [iC2] BuildCraft 3.2 integration module loaded

    2013-01-14 15:40:04 [iNFO] [iC2] Loaded minor compatibility modules: none

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod IC2

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod CompactSolars

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod CompactSolars

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod ComputerCraft

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod ComputerCraft

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod CCTurtle

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod CCTurtle

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod ExtrabiomesXL

    2013-01-14 15:40:04 [FINE] [ExtrabiomesXL] Initializing Buildcraft plugin.

    2013-01-14 15:40:04 [FINE] [ExtrabiomesXL] Initializing Forestry plugin.

    2013-01-14 15:40:04 [FINE] [ExtrabiomesXL] Initializing IndustrialCraft 2 plugin.

    2013-01-14 15:40:04 [iNFO] [ExtrabiomesXL] Successfully Loaded.

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod ExtrabiomesXL

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod Forestry

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13784) owned by Forestry

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13785) owned by Forestry

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13786) owned by Forestry

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13787) owned by Forestry

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13788) owned by Forestry

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13783) owned by Forestry

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13789) owned by Forestry

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13801) owned by Forestry

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13802) owned by Forestry

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13803) owned by Forestry

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13804) owned by Forestry

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemCrated(13805) owned by Forestry

    2013-01-14 15:40:04 [iNFO] [sTDOUT] Fluid registration: milk

    2013-01-14 15:40:04 [iNFO] [sTDOUT] Fluid registration: biomass

    2013-01-14 15:40:04 [iNFO] [sTDOUT] Fluid registration: biofuel

    2013-01-14 15:40:04 [iNFO] [sTDOUT] Fluid registration: seedoil

    2013-01-14 15:40:04 [iNFO] [sTDOUT] Fluid registration: honey

    2013-01-14 15:40:04 [iNFO] [sTDOUT] Fluid registration: juice

    2013-01-14 15:40:04 [iNFO] [sTDOUT] Fluid registration: ice

    2013-01-14 15:40:04 [FINE] [ForgeModLoader] Using buildcraft.energy.PneumaticPowerFramework as framework.

    2013-01-14 15:40:04 [FINEST] [ForgeModLoader] Registering boiler package: Apiary (Meta: 7)

    2013-01-14 15:40:04 [FINEST] [ForgeModLoader] Registering mill package: Apiarist's Chest (Meta: 3)

    2013-01-14 15:40:04 [FINEST] [ForgeModLoader] Registering mill package: Analyzer (Meta: 4)

    2013-01-14 15:40:04 [FINER] [ForgeModLoader] Beekeeping mode read from config: NORMAL

    2013-01-14 15:40:04 [FINEST] [ForgeModLoader] Registering planter package: Arboretum (Meta: 0)

    2013-01-14 15:40:04 [FINEST] [ForgeModLoader] Registering planter package: Farm (Meta: 1)

    2013-01-14 15:40:04 [FINEST] [ForgeModLoader] Registering planter package: Rubber Plantation (Meta: 2)

    2013-01-14 15:40:04 [FINEST] [ForgeModLoader] Registering planter package: Pumpkin Farm (Meta: 3)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering planter package: Peat Bog (Meta: 4)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering planter package: Mushroom Farm (Meta: 5)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering planter package: Netherwart Farm (Meta: 6)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering harvester package: Logger (Meta: 0)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering harvester package: Combine (Meta: 1)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering harvester package: Rubber Harvester (Meta: 2)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering harvester package: Pumpkin Harvester (Meta: 3)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering harvester package: Turbary (Meta: 4)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering harvester package: Cacti Harvester (Meta: 5)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering harvester package: Mushroom Picker (Meta: 6)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering harvester package: Sugar Cane Harvester (Meta: 7)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering harvester package: Infernal Combine (Meta: 8)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering mill package: Forester (Meta: 0)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering mill package: Treetap (Meta: 2)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering engine package: Biogas Engine (Meta: 0)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering engine package: Peat-Fired Engine (Meta: 1)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering engine package: Electrical Engine (Meta: 2)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering boiler package: Bio Power Generator (Meta: 4)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering boiler package: Fermenter (Meta: 0)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering boiler package: Still (Meta: 1)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering boiler package: Bottler (Meta: 2)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering boiler package: Raintank (Meta: 3)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering boiler package: Moistener (Meta: 6)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering boiler package: Carpenter (Meta: 5)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering boiler package: Centrifuge (Meta: 8)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering boiler package: Squeezer (Meta: 9)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering boiler package: Thermionic Fabricator (Meta: 11)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering mill package: Rainmaker (Meta: 1)

    2013-01-14 15:40:05 [iNFO] [sTDOUT] Fluid registration: mead

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering mill package: Mailbox (Meta: 5)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering mill package: Trader (Meta: 6)

    2013-01-14 15:40:05 [FINEST] [ForgeModLoader] Registering mill package: Philatelist (Meta: 7)

    2013-01-14 15:40:05 [FINE] [ForgeModLoader] [itemTracker] Adding item buildcraft.transport.ItemPipe(14256) owned by Forestry

    2013-01-14 15:40:05 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestryBlock(4055) owned by Forestry

    2013-01-14 15:40:05 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestryBlock(4048) owned by Forestry

    2013-01-14 15:40:05 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestryBlock(4049) owned by Forestry

    2013-01-14 15:40:05 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestryBlock(4050) owned by Forestry

    2013-01-14 15:40:05 [FINE] [ForgeModLoader] [itemTracker] Adding item forestry.core.items.ItemForestryBlock(4054) owned by Forestry

    2013-01-14 15:40:05 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod Forestry

    2013-01-14 15:40:05 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod IC2NuclearControl

    2013-01-14 15:40:05 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod IC2NuclearControl

    2013-01-14 15:40:05 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod IronChest

    2013-01-14 15:40:05 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod IronChest

    2013-01-14 15:40:05 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod MiscPeripherals

    2013-01-14 15:40:05 [iNFO] [MiscPeripherals] IC2 integration initialized

    2013-01-14 15:40:05 [iNFO] [MiscPeripherals] Nuclear Control integration initialized

    2013-01-14 15:40:05 [iNFO] [MiscPeripherals] MFFS integration initialized

    2013-01-14 15:40:05 [iNFO] [MiscPeripherals] Forestry integration initialized

    2013-01-14 15:40:05 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: MiscPeripherals$chunkLoader, id=451 meta=0

    2013-01-14 15:40:05 [iNFO] [MiscPeripherals] Railcraft integration initialized

    2013-01-14 15:40:05 [iNFO] [MiscPeripherals] Steve's Carts integration initialized

    2013-01-14 15:40:05 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: MiscPeripherals$chunkLoader, id=243 meta=0

    2013-01-14 15:40:05 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: MiscPeripherals$chunkLoader, id=243 meta=1

    2013-01-14 15:40:05 [iNFO] [MiscPeripherals] ChickenChunks integration initialized

    2013-01-14 15:40:05 [iNFO] [MiscPeripherals] CompactSolars integration initialized

    2013-01-14 15:40:05 [iNFO] [MiscPeripherals] BuildCraft Core integration initialized

    2013-01-14 15:40:05 [iNFO] [MiscPeripherals] BuildCraft Factory integration initialized

    2013-01-14 15:40:05 [iNFO] [MiscPeripherals] BuildCraft Transport integration initialized

    2013-01-14 15:40:05 [iNFO] [MiscPeripherals] BuildCraft Energy integration initialized

    2013-01-14 15:40:05 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: MiscPeripherals$enderChest, id=130 meta=-1

    2013-01-14 15:40:05 [iNFO] [MiscPeripherals] Loaded 9 demo files

    2013-01-14 15:40:05 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod MiscPeripherals

    2013-01-14 15:40:05 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod ModularForceFieldSystem

    2013-01-14 15:40:05 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod ModularForceFieldSystem

    2013-01-14 15:40:05 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod NEIPlugins

    2013-01-14 15:40:05 [FINE] [NEIPlugins] Found NEIPlugins plugin IC2 (1.0.2.7)

    2013-01-14 15:40:05 [FINE] [NEIPlugins] Found NEIPlugins plugin Forestry (1.4.2.0)

    2013-01-14 15:40:05 [FINE] [NEIPlugins] Found NEIPlugins plugin BuildCraft (1.3.2.0)

    2013-01-14 15:40:05 [FINE] [NEIPlugins] Found NEIPlugins plugin Railcraft (1.6.2.0)

    2013-01-14 15:40:05 [FINE] [NEIPlugins] Found NEIPlugins plugin Forge (1.3.1.6)

    2013-01-14 15:40:05 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod NEIPlugins

    2013-01-14 15:40:05 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod ObsidiPlates

    2013-01-14 15:40:05 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod ObsidiPlates

    2013-01-14 15:40:05 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod Railcraft

    2013-01-14 15:40:05 [FINE] [Railcraft] Post-Init Phase

    2013-01-14 15:40:05 [FINER] [Railcraft] Post-Init Start: ModuleCore

    2013-01-14 15:40:05 [FINER] [Railcraft] Registered Forestry BioFuel as a valid fuel source.

    2013-01-14 15:40:05 [FINER] [Railcraft] Registered Buildcraft Fuel as a valid fuel source.

    2013-01-14 15:40:05 [FINE] [ForgeModLoader] [itemTracker] Adding item railcraft.common.items.ItemGoggles(7756) owned by Railcraft

    2013-01-14 15:40:05 [FINER] [Railcraft] Post-Init Complete: ModuleCore

    2013-01-14 15:40:05 [FINER] [Railcraft] Post-Init Start: ModuleFactory

    2013-01-14 15:40:05 [FINER] [Railcraft] Post-Init Complete: ModuleFactory

    2013-01-14 15:40:05 [FINER] [Railcraft] Post-Init Start: ModuleTransport

    2013-01-14 15:40:05 [FINER] [Railcraft] Post-Init Complete: ModuleTransport

    2013-01-14 15:40:05 [FINER] [Railcraft] Post-Init Start: ModuleIC2

    2013-01-14 15:40:05 [FINE] [Railcraft] IC2 Module: IC2 Detected, creating Energy Cart and Energy Loader recipes.

    2013-01-14 15:40:05 [FINER] [Railcraft] Post-Init Complete: ModuleIC2

    2013-01-14 15:40:05 [FINER] [Railcraft] Init Start: Renderer

    2013-01-14 15:40:06 [FINER] [Railcraft] Init Complete: Renderer

    2013-01-14 15:40:06 [FINEST] [Railcraft] Could not register CraftGuide plugin: BlastFurnacePlugin

    2013-01-14 15:40:06 [FINEST] [Railcraft] Could not register CraftGuide plugin: CokeOvenPlugin

    2013-01-14 15:40:06 [FINEST] [Railcraft] Could not register CraftGuide plugin: RockCrusherPlugin

    2013-01-14 15:40:06 [FINEST] [Railcraft] Could not register CraftGuide plugin: RollingMachinePlugin

    2013-01-14 15:40:06 [FINEST] [Railcraft] Could not register CraftGuide plugin: RecipeFilter

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod Railcraft

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod RedPowerCore

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod RedPowerCore

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod RedPowerBase

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod RedPowerBase

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod RedPowerMachine

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod RedPowerMachine

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod RedPowerCompat

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod RedPowerCompat

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod RedPowerWiring

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod RedPowerWiring

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod RedPowerLogic

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod RedPowerLogic

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod RedPowerLighting

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod RedPowerLighting

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod RedPowerWorld

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod RedPowerWorld

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod RedPowerControl

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod RedPowerControl

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod mod_SmartMoving

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod mod_SmartMoving

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod mod_SmartRender

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod mod_SmartRender

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod SoulShards

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod SoulShards

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod StevesCarts

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod StevesCarts

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod mcp

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod mcp

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod FML

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod FML

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod Forge

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod Forge

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod mod_CodeChickenCore

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod mod_CodeChickenCore

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod mod_NotEnoughItems

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod mod_NotEnoughItems

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod mod_Audiotori

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Handling post startup activities for ModLoader mod mod_Audiotori

    2013-01-14 15:40:06 [FINEST] [ForgeModLoader] Requesting renderers from basemod mod_Audiotori

    2013-01-14 15:40:06 [FINEST] [ForgeModLoader] Received 54 renderers from basemod mod_Audiotori

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod mod_Audiotori

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod BuildCraft|Core

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod BuildCraft|Core

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod BuildCraft|Builders

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod BuildCraft|Builders

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod BuildCraft|Energy

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod BuildCraft|Energy

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod BuildCraft|Factory

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod BuildCraft|Factory

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod BuildCraft|Transport

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod BuildCraft|Transport

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod BuildCraft|Silicon

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod BuildCraft|Silicon

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod ChickenChunks

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod ChickenChunks

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod IC2

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod IC2

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod CompactSolars

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod CompactSolars

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod ComputerCraft

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod ComputerCraft

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod CCTurtle

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod CCTurtle

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod ExtrabiomesXL

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod ExtrabiomesXL

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod Forestry

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod Forestry

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod IC2NuclearControl

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod IC2NuclearControl

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod IronChest

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod IronChest

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod MiscPeripherals

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod MiscPeripherals

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod ModularForceFieldSystem

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod ModularForceFieldSystem

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod NEIPlugins

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod NEIPlugins

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod ObsidiPlates

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod ObsidiPlates

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod Railcraft

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod Railcraft

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod RedPowerCore

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod RedPowerCore

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod RedPowerBase

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod RedPowerBase

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod RedPowerMachine

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod RedPowerMachine

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod RedPowerCompat

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod RedPowerCompat

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod RedPowerWiring

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod RedPowerWiring

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod RedPowerLogic

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod RedPowerLogic

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod RedPowerLighting

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod RedPowerLighting

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod RedPowerWorld

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod RedPowerWorld

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod RedPowerControl

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod RedPowerControl

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod mod_SmartMoving

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Handling post startup activities for ModLoader mod mod_SmartMoving

    2013-01-14 15:40:06 [FINEST] [ForgeModLoader] Requesting renderers from basemod mod_SmartMoving

    2013-01-14 15:40:06 [FINEST] [ForgeModLoader] Received 54 renderers from basemod mod_SmartMoving

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod mod_SmartMoving

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod mod_SmartRender

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Handling post startup activities for ModLoader mod mod_SmartRender

    2013-01-14 15:40:06 [FINEST] [ForgeModLoader] Requesting renderers from basemod mod_SmartRender

    2013-01-14 15:40:06 [FINEST] [ForgeModLoader] Received 54 renderers from basemod mod_SmartRender

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod mod_SmartRender

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod SoulShards

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod SoulShards

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod StevesCarts

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod StevesCarts

    2013-01-14 15:40:06 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 39 mods

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Registered texture override 239 (239) on TextureAnimFX (0)

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Registered texture override 255 (255) on TextureAnimFX (0)

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Registered texture override 25 (25) on TextureComputerFX (28)

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Registered texture override 16 (16) on TextureSteamFX (215)

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Registered texture override 0 (0) on TextureCreosoteOilFX (215)

    2013-01-14 15:40:06 [FINER] [ForgeModLoader] Registered texture override 20 (20) on TextureComputerFX (27)

    2013-01-14 15:40:06 [FINE] [NEIPlugins] Latest and current version of NEIPlugins: 1.0.4.1 and 1.0.4.1

    2013-01-14 15:40:29 [iNFO] [sTDOUT] Connecting to 173.45.188.89, 25565

    2013-01-14 15:40:30 [FINE] [ForgeModLoader] The server has compatibility level 2

    2013-01-14 15:40:31 [FINE] [ForgeModLoader] The difference set is equal

    2013-01-14 15:40:31 [iNFO] [sTDOUT] Loading World: remote/173.45.188.89~25565/world23

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\bin\minecraft.jar, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\coremods\CodeChickenCore 0.7.0.0.jar, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\coremods\NotEnoughItems 1.4.4.0.jar, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\NEI_RedPowerPlugin 1.4.3.jar, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\Audiotori_r3__1_4_6.zip, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\buildcraft-A-3.3.0.jar, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\ChickenChunks 1.2.1.0.jar, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\industrialcraft-2_1.112.170-lf.jar, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\compactsolars-universal-1.4.6-3.2.0.21.zip, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\ComputerCraft1.48.zip, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\ExtrabiomesXL-universal-1.4.6-3.7.0.jar, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\forestry-A-1.6.4.1.jar, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\IC2NuclearControl-1.4.5.zip, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\ironchest-universal-1.4.6-4.5.1.199.zip, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\miscperipherals-2.2.zip, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\ModularForceFieldSystemV2.2.8.2.13.zip, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\NEIPlugins-1.0.4.1.jar, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\obsidiplates-universal-1.2.0.3.zip, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\Railcraft_1.4.6-6.12.0.0.zip, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\RedPowerCore-2.0pr6.zip, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\RedPowerMechanical-2.0pr6.zip, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\RedPowerCompat-2.0pr6.zip, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\RedPowerDigital-2.0pr6.zip, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\Smart Moving Client for ModLoader.zip, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\SoulShards-v1.14-universal.zip, examining for codechicken classes

    2013-01-14 15:40:32 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Thomas\Desktop\multiMC\instances\Tecno 1.4.6\minecraft\mods\StevesCarts2.0.0.a40.zip, examining for codechicken classes

    2013-01-14 15:40:32 [iNFO] [sTDOUT] Loaded codechicken.nei.plugins.redpower.NEIRedPowerConfig

    2013-01-14 15:40:32 [iNFO] [sTDOUT] IC2 NEI Submodule initialized

    2013-01-14 15:40:32 [iNFO] [sTDOUT] Loaded ic2.neiIntegration.core.NEIIC2Config

    2013-01-14 15:40:32 [iNFO] [sTDOUT] Loaded chb.mods.mffs.nei.NEI_MFFS_Config

    2013-01-14 15:40:32 [FINE] [NEIPlugins] Failed to detect GUIS from IC2

    2013-01-14 15:40:33 [iNFO] [sTDOUT] Loaded mistaqur.nei.common.NEIPluginsConfig

    2013-01-14 15:40:33 [iNFO] [sTDOUT] (Audiotori) Caching all packs from disk...

    2013-01-14 15:40:33 [iNFO] [sTDOUT] (Audiotori) Recomputed order as minecraft_alpha

    2013-01-14 15:40:33 [iNFO] [sTDOUT] (Audiotori) Applying all packs status...

    2013-01-14 15:40:33 [iNFO] [sTDOUT] (ATSystem) Performing all substitutions: BEGIN

    2013-01-14 15:40:33 [iNFO] [sTDOUT] (ATSystem) Performed 196 substitutions (sound3/).

    2013-01-14 15:40:33 [iNFO] [sTDOUT] (ATSystem) Performed 10 installations (sound3/).

    2013-01-14 15:40:33 [iNFO] [sTDOUT] (ATSystem) Performed 0 substitutions (streaming/).

    2013-01-14 15:40:33 [iNFO] [sTDOUT] (ATSystem) Performed 0 installations (streaming/).

    2013-01-14 15:40:33 [iNFO] [sTDOUT] (ATSystem) Performed 3 cumulations (music/).

    2013-01-14 15:40:33 [iNFO] [sTDOUT] (ATSystem) Stashed 12 original entries.

    2013-01-14 15:40:33 [iNFO] [sTDOUT] (ATSystem) Performing all substitutions: END

    2013-01-14 15:40:33 [iNFO] [sTDOUT] (Audiotori) Counted 445 genuine (original deck) sounds.

    2013-01-14 15:40:34 [iNFO] [sTDOUT] (Audiotori) Update version found: 3

    2013-01-14 15:40:35 [iNFO] [sTDOUT] Inserted super call into avs.c

    2013-01-14 15:40:35 [iNFO] [sTDOUT] ComputerCraft: Searching for RedPowerWorld...

    2013-01-14 15:40:35 [iNFO] [sTDOUT] ComputerCraft: RedPowerWorld and methods located.

    2013-01-14 15:42:04 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 15:42:04 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 15:42:04 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 15:42:04 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 15:42:04 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 15:42:04 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 15:43:39 [iNFO] [sTDOUT] Loading World: remote/173.45.188.89~25565/world23

    2013-01-14 15:46:51 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 15:46:51 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 15:49:30 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 15:49:30 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 15:50:38 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 15:50:38 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 15:50:38 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 15:50:38 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 15:51:23 [iNFO] [sTDOUT] Loading World: remote/173.45.188.89~25565/world23

    2013-01-14 15:52:21 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 15:52:21 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 15:52:41 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 15:52:41 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 15:54:21 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 15:54:21 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 15:56:01 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 15:56:01 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 15:56:18 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 15:56:18 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 15:56:20 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 15:56:20 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:11:13 [iNFO] [sTDOUT] Loading World: remote/173.45.188.89~25565/world23

    2013-01-14 16:15:18 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:15:18 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:15:41 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:15:41 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:15:43 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:15:43 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:15:47 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:15:47 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:15:50 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:15:50 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:16:17 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:16:17 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:17:18 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:17:18 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:18:18 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:18:18 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:19:28 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:19:28 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:19:29 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:19:29 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:21:00 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:21:00 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:22:20 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:22:20 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:22:44 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:22:44 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:22:46 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:22:46 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:22:46 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:22:46 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:22:46 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:22:46 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:32:10 [iNFO] [sTDOUT] Connecting to 173.45.188.89, 25565

    2013-01-14 16:32:11 [FINE] [ForgeModLoader] The server has compatibility level 2

    2013-01-14 16:32:12 [FINE] [ForgeModLoader] The difference set is equal

    2013-01-14 16:32:12 [iNFO] [sTDOUT] Loading World: 173.45.188.89~25565

    2013-01-14 16:32:12 [iNFO] [sTDOUT] Loading World: remote/173.45.188.89~25565/world23

    2013-01-14 16:32:53 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:32:53 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:33:07 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:33:07 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:37:16 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:37:16 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:39:01 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:39:01 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:39:04 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:39:04 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:39:06 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:39:06 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:39:09 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:39:09 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:39:09 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:39:09 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:46:05 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:46:05 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:46:11 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:46:11 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:46:16 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:46:16 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:47:20 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:47:20 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:47:24 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:47:24 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:47:25 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:47:25 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:47:26 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:47:26 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:47:40 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:47:40 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:47:41 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:47:41 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:49:18 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:49:18 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:49:53 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:49:53 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:56:44 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:56:44 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:56:45 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:56:45 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:56:45 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:56:45 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:56:45 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:56:45 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:56:45 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:56:45 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:56:45 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:56:45 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 16:56:45 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 16:56:45 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 17:01:02 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 17:01:02 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 17:01:32 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 17:01:32 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 17:01:33 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 17:01:33 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 17:01:33 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 17:01:33 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 17:02:33 [iNFO] [sTDOUT] Loading World: remote/173.45.188.89~25565/world23

    2013-01-14 17:59:43 [iNFO] [sTDOUT] Connecting to 173.45.188.89, 25565

    2013-01-14 17:59:44 [FINE] [ForgeModLoader] The server has compatibility level 2

    2013-01-14 17:59:44 [FINE] [ForgeModLoader] The difference set is equal

    2013-01-14 17:59:44 [iNFO] [sTDOUT] Loading World: remote/173.45.188.89~25565/world23

    2013-01-14 18:01:14 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:01:14 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:02:41 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:02:41 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:02:43 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:02:43 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:09:26 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:09:26 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:11:44 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:11:44 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:11:44 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:11:44 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:11:44 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:11:44 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:11:44 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:11:44 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:11:44 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:11:44 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:11:44 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:11:44 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:11:44 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:11:44 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:11:44 [iNFO] [sTDOUT] Loading World: remote/173.45.188.89~25565/world23

    2013-01-14 18:16:10 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:16:10 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:21:28 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:21:28 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:22:28 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:22:28 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:24:54 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:24:54 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:25:05 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:25:05 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:36:14 [iNFO] [sTDOUT] Connecting to 173.45.188.89, 25565

    2013-01-14 18:36:14 [FINE] [ForgeModLoader] The server has compatibility level 2

    2013-01-14 18:36:14 [FINE] [ForgeModLoader] The difference set is equal

    2013-01-14 18:36:14 [iNFO] [sTDOUT] Loading World: remote/173.45.188.89~25565/world23

    2013-01-14 18:40:15 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:40:15 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:41:15 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:41:15 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:59:02 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:59:02 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:59:03 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:59:03 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:59:06 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:59:06 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:59:09 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:59:09 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:59:09 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:59:09 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 18:59:29 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 18:59:29 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 19:06:11 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 19:06:11 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 19:06:42 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 19:06:42 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 19:06:42 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 19:06:42 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 19:07:19 [iNFO] [sTDOUT] Loading World: remote/173.45.188.89~25565/world23

    2013-01-14 19:11:57 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 19:11:57 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 19:11:59 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 19:11:59 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 19:11:59 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 19:11:59 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 19:14:49 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 19:14:49 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 19:15:10 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 19:15:10 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 19:16:10 [iNFO] [sTDOUT] Error in class 'SourceLWJGL OpenAL'

    2013-01-14 19:16:10 [iNFO] [sTDOUT]    Channel null in method 'stop'

    2013-01-14 19:19:04 [iNFO] [sTDERR] java.lang.NullPointerException

    2013-01-14 19:19:04 [iNFO] [sTDERR] at forestry.arboriculture.items.ItemGermlingGE.getIconIndex(ItemGermlingGE.java:112)

    2013-01-14 19:19:04 [iNFO] [sTDERR] at bce.a(RenderItem.java:130)

    2013-01-14 19:19:04 [iNFO] [sTDERR] at com.eloraam.redpower.machine.TileTubeRenderer.a(TileTubeRenderer.java:65)

    2013-01-14 19:19:04 [iNFO] [sTDERR] at bdw.a(SourceFile:103)

    2013-01-14 19:19:04 [iNFO] [sTDERR] at bdw.a(SourceFile:96)

    2013-01-14 19:19:04 [iNFO] [sTDERR] at bav.a(RenderGlobal.java:499)

    2013-01-14 19:19:04 [iNFO] [sTDERR] at ban.a(EntityRenderer.java:1131)

    2013-01-14 19:19:04 [iNFO] [sTDERR] at ban.b(EntityRenderer.java:970)

    2013-01-14 19:19:04 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.J(Minecraft.java:882)

    2013-01-14 19:19:04 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:771)

    2013-01-14 19:19:04 [iNFO] [sTDERR] at java.lang.Thread.run(Unknown Source)

    2013-01-14 19:19:15 [iNFO] [sTDOUT] Stopping!

    2013-01-14 19:19:15 [iNFO] [sTDOUT] SoundSystem shutting down...

    2013-01-14 19:19:15 [iNFO] [sTDOUT]    Author: Paul Lamb, www.paulscode.com

     

     

  11. I don't know what mod caused this or if it was even a glitch with a mod and not just forge so I am posting this here

     

    It happened when I broke a auto-crafting table however the crash report had nothing to do with buildcraft and had more to do with chunk loading. 

     

    Should I post this on the buildcraft forums?

     

    Crash report:

    ---- Minecraft Crash Report ----

    // I bet Cylons wouldn't have this problem.

     

    Time: 1/5/13 6:05 PM

    Description: Exception in world tick

     

    java.lang.IndexOutOfBoundsException: Index: 45, Size: 45

    at java.util.ArrayList.rangeCheck(Unknown Source)

    at java.util.ArrayList.get(Unknown Source)

    at rq.a(SourceFile:88)

    at rq.a(SourceFile:277)

    at ayh.a(NetClientHandler.java:1138)

    at df.a(SourceFile:45)

    at cf.b(MemoryConnection.java:80)

    at ayh.d(NetClientHandler.java:240)

    at ayp.b(WorldClient.java:92)

    at net.minecraft.client.Minecraft.l(Minecraft.java:1872)

    at net.minecraft.client.Minecraft.J(Minecraft.java:846)

    at net.minecraft.client.Minecraft.run(Minecraft.java:771)

    at java.lang.Thread.run(Unknown Source)

     

     

    A detailed walkthrough of the error, its code path and all known details is as follows:

    ---------------------------------------------------------------------------------------

     

    -- Head --

    Stacktrace:

    at java.util.ArrayList.rangeCheck(Unknown Source)

    at java.util.ArrayList.get(Unknown Source)

    at rq.a(SourceFile:88)

    at rq.a(SourceFile:277)

    at ayh.a(NetClientHandler.java:1138)

    at df.a(SourceFile:45)

    at cf.b(MemoryConnection.java:80)

    at ayh.d(NetClientHandler.java:240)

     

    -- Affected level --

    Details:

    Level name: MpServer

    All players: 1 total; [ays['pop1040'/18347, l='MpServer', x=344.48, y=58.10, z=-1572.30]]

    Chunk stats: MultiplayerChunkCache: 441

    Level seed: 0

    Level generator: ID 01 - flat, ver 0. Features enabled: false

    Level generator options:

    Level spawn location: World: (385,4,-1498), Chunk: (at 1,0,6 in 24,-94; contains blocks 384,0,-1504 to 399,255,-1489), Region: (0,-3; contains chunks 0,-96 to 31,-65, blocks 0,0,-1536 to 511,255,-1025)

    Level time: 887466 game time, 1780021 day time

    Level dimension: 0

    Level storage version: 0x00000 - Unknown?

    Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)

    Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false

    Forced entities: 2 total; [EntityBlock['unknown'/18553, l='MpServer', x=400.25, y=55.00, z=-1597.75], ays['pop1040'/18347, l='MpServer', x=344.48, y=58.10, z=-1572.30]]

    Retry entities: 0 total; []

    Stacktrace:

    at ayp.a(WorldClient.java:440)

    at net.minecraft.client.Minecraft.l(Minecraft.java:1885)

    at net.minecraft.client.Minecraft.J(Minecraft.java:846)

    at net.minecraft.client.Minecraft.run(Minecraft.java:771)

    at java.lang.Thread.run(Unknown Source)

     

    -- Affected level --

    Details:

    Level name: MpServer

    All players: 1 total; [ays['pop1040'/18347, l='MpServer', x=344.48, y=58.10, z=-1572.30]]

    Chunk stats: MultiplayerChunkCache: 441

    Level seed: 0

    Level generator: ID 01 - flat, ver 0. Features enabled: false

    Level generator options:

    Level spawn location: World: (385,4,-1498), Chunk: (at 1,0,6 in 24,-94; contains blocks 384,0,-1504 to 399,255,-1489), Region: (0,-3; contains chunks 0,-96 to 31,-65, blocks 0,0,-1536 to 511,255,-1025)

    Level time: 887466 game time, 1780021 day time

    Level dimension: 0

    Level storage version: 0x00000 - Unknown?

    Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)

    Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false

    Forced entities: 2 total; [EntityBlock['unknown'/18553, l='MpServer', x=400.25, y=55.00, z=-1597.75], ays['pop1040'/18347, l='MpServer', x=344.48, y=58.10, z=-1572.30]]

    Retry entities: 0 total; []

     

    -- System Details --

    Details:

    Minecraft Version: 1.4.6

    Operating System: Windows 7 (amd64) version 6.1

    Java Version: 1.7.0_07, Oracle Corporation

    Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

    Memory: 220049208 bytes (209 MB) / 688652288 bytes (656 MB) up to 3817799680 bytes (3640 MB)

    JVM Flags: 2 total; -Xms512m -Xmx4096m

    AABB Pool Size: 47 (2632 bytes; 0 MB) allocated, 17 (952 bytes; 0 MB) used

    Suspicious classes: FML and Forge are installed

    IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0

    FML: MCP v7.25 FML v4.6.12.511 Minecraft Forge 6.5.0.473 39 mods loaded, 39 mods active

    mcp [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    FML [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    Forge [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    mod_CodeChickenCore [CodeChicken Core] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    mod_NotEnoughItems [Not Enough Items] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    mod_Audiotori [mod_Audiotori] (Audiotori_r3__1_4_6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    BuildCraft|Core [buildCraft] (buildcraft-A-3.3.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    BuildCraft|Builders [bC Builders] (buildcraft-A-3.3.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    BuildCraft|Energy [bC Energy] (buildcraft-A-3.3.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    BuildCraft|Factory [bC Factory] (buildcraft-A-3.3.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    BuildCraft|Transport [bC Transport] (buildcraft-A-3.3.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    BuildCraft|Silicon [bC Silicon] (buildcraft-A-3.3.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    ChickenChunks [ChickenChunks] (ChickenChunks 1.2.1.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    IC2 [industrialCraft 2] (industrialcraft-2_1.112.170-lf.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    CompactSolars [Compact Solar Arrays] (compactsolars-universal-1.4.6-3.2.0.21.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    ComputerCraft [ComputerCraft] (ComputerCraft1.48.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    CCTurtle [ComputerCraft Turtles] (ComputerCraft1.48.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    ExtrabiomesXL [ExtrabiomesXL] (ExtrabiomesXL-universal-1.4.6-3.7.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    Forestry [Forestry for Minecraft] (forestry-A-1.6.4.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    IC2NuclearControl [Nuclear Control] (IC2NuclearControl-1.4.5.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    IronChest [iron Chest] (ironchest-universal-1.4.6-4.5.1.199.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    MiscPeripherals [MiscPeripherals] (miscperipherals-2.2.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    ModularForceFieldSystem [Modular ForceField System V2] (ModularForceFieldSystemV2.2.8.2.13.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    NEIPlugins [NEI Plugins] (NEIPlugins-1.0.4.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    ObsidiPlates [Obsidian Pressure Plates] (obsidiplates-universal-1.2.0.3.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    Railcraft [Railcraft] (Railcraft_1.4.6-6.12.0.0.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    RedPowerCore [RedPower] (RedPowerCore-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    RedPowerBase [RP Base] (RedPowerCore-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    RedPowerMachine [RP Machine] (RedPowerMechanical-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    RedPowerCompat [RP Compat] (RedPowerCompat-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    RedPowerWiring [RP Wiring] (RedPowerDigital-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    RedPowerLogic [RP Logic] (RedPowerDigital-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    RedPowerLighting [RP Lighting] (RedPowerDigital-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    RedPowerWorld [RP World] (RedPowerMechanical-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    RedPowerControl [RP Control] (RedPowerMechanical-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    mod_SmartMoving [smart Moving] (Smart Moving Client for ModLoader.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    mod_SmartRender [smart Render] (Smart Moving Client for ModLoader.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    SoulShards [soul Shards] (SoulShards-v1.14-universal.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    StevesCarts [steve's Carts] (StevesCarts2.0.0.a40.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available

    LWJGL: 2.4.2

    OpenGL: AMD Radeon HD 7670M GL version 4.2.11411 Compatibility Profile Context, ATI Technologies Inc.

    Is Modded: Definitely; Client brand changed to 'forge,fml'

    Type: Client (map_client.txt)

    Texture Pack: default.zip

    Profiler Position: N/A (disabled)

    Vec3 Pool Size: 110 (6160 bytes; 0 MB) allocated, 21 (1176 bytes; 0 MB) used

×
×
  • Create New...

Important Information

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